WFActivityHandler - Global
-
- UpdatedJan 30, 2025
- 3 minutes to read
- Yokohama
- API reference
The WFActivityHandler script include is the base class for all workflow activities.
As the base class for all workflow activities, this code always executes as part of an activity.
When developing your own workflow activities, create your script object by deriving from this class and overriding methods as necessary to get the functionality you want. Client code must override method onExecute() to perform meaningful activity processing.
WFActivityHandler - debug(String msg, String args)
Logs a debug message.
Name | Type | Description |
---|---|---|
msg | String | Message to send to the log. |
args | String | String to send to the log |
Type | Description |
---|---|
void |
WFActivityHandler - debug(String msg, Array args)
Logs a debug message.
Name | Type | Description |
---|---|---|
msg | String | Message to send to the log. |
args | Array | Array of values to send to the log |
Type | Description |
---|---|
void |
WFActivityHandler - generate(String activityId, String order, GlideDateTime startAtDspValue, Boolean noCreateFlag)
Generates approvals and tasks before the activity runs for a preview of upcoming work.
Enables generating objects at the start of a workflow in a pending state. For related information, see Generate workflow activity.
Type | Description |
---|---|
Object | Pre-generation object saved in the workflow scratchpad. For example, the object might be an
array of approval IDs. When the activity runs the onExecute
function, it can request the pre-generation object to determine one of the following
conditions:
|
WFActivityHandler - info(String msg, String args)
Logs an information message.
Name | Type | Description |
---|---|---|
msg | String | Message to send to the log. |
args | String | String to send to the log. |
Type | Description |
---|---|
void |
WFActivityHandler - info(String msg, Array args)
Logs an information message.
Name | Type | Description |
---|---|---|
msg | String | Message to send to the log. |
args | Array | Array of values to send to the log |
Type | Description |
---|---|
void |
WFActivityHandler - js(String str)
Evaluates activity variables in the script.
Used to evaluate strings that contain el such as ${some script}
or strings
starting with javascript:
. See almost any existing activity for example
usage.
Name | Type | Description |
---|---|---|
str | String | String that possibly contains embeded el. |
Type | Description |
---|---|
String | The evaluated string. |
WFActivityHandler - onCancel( )
Event handler for cancel event.
The base class for the activity script sets this activity to be cancelled. Derived classes (activities) can override this method if additional processing is required to cancel this activity. Activity Manual Approvals is an example of overriding this method to perform additional processing to cancel this activity.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
void |
WFActivityHandler - onExecute( )
Virtual method. Activity subclasses must override this method to perform work appropriate to the activity.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
void |
WFActivityHandler - runScript(String script)
Enables activities to run a script contained in an activity variable of type script.
Example activities that use this method include If, Wait for condition, and Approval - User.
Name | Type | Description |
---|---|---|
script | String | String containing valid Javascript. |
Type | Description |
---|---|
variable | If the script set the workflow variable answer then this value is returned. If not, then the result of the script execution is returned. |
WFActivityHandler - setActivityOutput( )
Sets the activity output property.
See activity SOAP Message.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
void |
WFActivityHandler - setResultFailed(String reason)
Sets the activity result as failed with an optional reason string.
See Activity SOAP Message.
Name | Type | Description |
---|---|---|
reason | String | (Optional) Description of the reason this activity failed. |
Type | Description |
---|---|
void |
WFActivityHandler - setResultSucceeded( )
Sets the result of this activity as successful.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
void |
WFActivityHandler - warn(String msg, String args)
Logs a warning message.
Name | Type | Description |
---|---|---|
msg | String | Message to send to the log. |
args | String | String to send to the log |
Type | Description |
---|---|
void |
WFActivityHandler - warn(String msg, Array args)
Logs a warning message.
Name | Type | Description |
---|---|---|
msg | String | Message to send to the log. |
args | Array | Array of values to send to the log |
Type | Description |
---|---|
void |
On this page
- WFActivityHandler - debug(String msg, String args)
- WFActivityHandler - debug(String msg, Array args)
- WFActivityHandler - generate(String activityId, String order,
GlideDateTime startAtDspValue, Boolean noCreateFlag)
- WFActivityHandler - info(String msg, String args)
- WFActivityHandler - info(String msg, Array args)
- WFActivityHandler - js(String str)
- WFActivityHandler - onCancel( )
- WFActivityHandler - onExecute( )
- WFActivityHandler - runScript(String script)
- WFActivityHandler - setActivityOutput( )
- WFActivityHandler - setResultFailed(String reason)
- WFActivityHandler - setResultSucceeded( )
- WFActivityHandler - warn(String msg, String args)
- WFActivityHandler - warn(String msg, Array args)