Steps
Control
If
Based on the condition execute different steps.
If you want to access a value which can be set in one of the valid paths afterwards rename the outputs!
Iterate
This step either iterates through an array or increases a variable. The step has two options to attach next steps:
- Loop: These steps are run for each item / increase
- Done: Once the loop is done continue here
Await
Wait for:
- AppReload
- Selection in a field
- Exactly one selection in a field
Data+ Message
Send a data+ Message to another Data+ object.
User
User Input
Let the user input Data. Can be either a text input or button.
User Choice
Choose from multiple options.
Visual Input
Allow the user to set markers on an image.
Show Notification
Show a toast to the user with the configured message.
Scan
Scan any Qr or barcode and continue if one is found.
Photo
Take a photo and output it as a dataurl.
Signature
Sign in a field and output the signature as a dataurl.
Text Display
Like a User Input without any input elements. Often used for displaying text at the end of the flow.
Play Sound
Play a sound to the user.
Import Data
Import data from excel, csv & more table formats. For excel the first sheet is used. The step shows an overview to map the imported data to keys in a json array.
Calculation
Calculate
Different operations can be performed on numbers, strings or dates. The result can be used in the next steps.
Code
Execute custom json code. The function does not need to be written again. A valid input would be:
return {
"result": "Hello World"
}
The arguments can be passed to the function and can be accessed via the name.
Json
Parse or manipulate a json object.
Mapping Table
Define a mapping table to map values to other values.
String Builder
Create a string from multiple inputs. The inputs can be text, numbers or variables. Therefore place the value names in the input schema like {valueName}
.
Qlik
Read Variable
Read a variable from the Qlik app.
Set Variable
Set a variable in the Qlik app to the string value.
Qlik Expression
Evaluate a Qlik expression and return the result. The Qlik Expression can be interpolated using the variables defined below.
Reload
Reload the qlik app.
Selection
Make a selection in a field.
Search Qlik Data
Search for a value in one field and return the result. You can define other fields to return as well.
Internet
Open Link
Open a link in the user’s browser. Can be used to open data urls.
Db Read
Read data from the database. The result can be used in the next steps. Up to 10000 records can be read.
Db Write
Write a single entry to the database. The keys must be defined in the input schema.
Db Delete
Delete entries by id from the database
Db Bulk Write
Write multiple entries to the database. The keys must be defined in the input schema. You can choose for each field if it should be filled from the supplied array or if it is defined by one value for each entry.
Api Call
Make a call to an external API and return the result.