Variables for accessing data about actions taken by users
This table shows the variables that are available for sending and receiving information about users' actions after the actions have been taken:
Variable | Description |
---|---|
NodeID_users | Contains users who took action on the specified node |
NodeID_actions | Contains actions taken on the specified node |
NodeID_reasons | Contains reasons selected by users who took action on the specified node |
NodeID_messages | Contains messages sent with the specified node |
This table shows the variables that are available for sending and receiving information about users' actions after the actions have been taken and are in last User Action node in a process:
Variable | Description |
---|---|
_users | Contains users who took action on the last node in the process |
_authUsers | Contains users who are authorized to take final action |
_reasons | Contains reasons selected by users who took action on the last node |
_messages | Contains messages sent with the last node |
_tasks | Contains tasks sent with the last node |
Formulating action taken variables in an array
Because multiple users can take action on a specific node, these variables can be used in an array:
-
_users.join(): Joins the elements of an array as a string with elements separated by the separator you specify. By default, the separator is a comma (,).
-
_users[0]: Returns the first user who took an action on the work item.