Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

This ActionHandler is an expansion of the ProcessVariableSetter. It sets a new variable and fills it with the values passed on it. Additionally, a delimiter may be passed.

...

${CURRENT_USER_NAMEFIRST} ⇒ First name of the current user
${CURRENT_USER_NAMELAST} ⇒ Last name of the current user
${CURRENT_TIME} ⇒ Current time in the format: HH:mm (i.e.: 12:15)
${CURRENT_TASK} ⇒ Name of the current activity

...

Class

Code Block
com.dooris.bpm.actionhandler.TrackProcessHandler

Parameter

Parameter name

Default value

Description

Valid examples

inputText

The value being written to a new variable or attached to an existing variable.

${CURRENT_TASK} completed by: ${CURRENT_USER_NAMEFIRST}, ${CURRENT_USER_NAMELAST} at ${CURRENT_TIME}

processVariable

Name of the new or existing variable.

trackVariable

delimiter

If an existing variable should be added.

i.e.: “-” , “:” , “,” , “[]” or …

Note

Please note that the delimiter must be unique and may not be present in the process variable

...