This is a list of system variables that can be used in PROCE55 apps:

User profile data:

SYS_USER_NAME_FIRST
SYS_USER_NAME_LAST
SYS_USER_PERSON_ID
SYS_USER_ORGANIZATION
SYS_USER_PHONE
SYS_USER_EMAIL

Authentication:

SYS_USER_LOGIN
SYS_USER_PASSWORD

Transaction control:

SYS_TID (transaction ID of the currently processed flow’s action)
SYS_COUNTER (system counter variable which can be incremented by the ‘Increment’ system action)

SYS_RESULT (the decision variable controlling the default/alternative action flow sequence)

Date and time:

SYS_TIME_LOCAL
SYS_TIME_UTC
SYS_TIME_LOCAL_HH:MM
SYS_TIME_UTC_HH:MM

SYS_DATE_SQL
SYS_DATE_US
SYS_DATE_EU

Location services:

SYS_LOC_LATITUDE
SYS_LOC_LONGITUDE

Device and network settings:

SYS_DEVICE_ID

SYS_INTERNET (internet availability 0/1)
SYS_WIFI_SSID (current network SSID name)
SYS_CLIENT_VER

SYS_PROCESS_VERSION
SYS_PROCESS_NAME
SYS_ENGINE_VERSION

 

To read the variable value, use the following syntax:

${variable_name}

For example:

${SYS_USER_NAME_FIRST}

You can also combine several variables with other values to form a complex string:

“Your name is ${SYS_USER_NAME_FIRST} ${SYS_USER_NAME_LAST}”

 

Skip to toolbar