Server API reference › API reference › API implementation and reference
WFActivityHandler- Global
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.
Parent Topic:Server API reference
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 |
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 |
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.
| Name | Type | Description |
|---|
| activityId | String | Sys\_id of this running activity. Table: Workflow Activities \[wf\_activity\] |
| order | String | Order number associated with the task or approval. |
| startAtDspValue | String | Starting time for the task or approval in GlideDateTime format. |
| noCreateFlag | Boolean | Flag that indicates whether to skip creating an approval record.Valid values: - true: Don't create an approval record. - false: Create an approval record. Default: true |
| 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:- Approvals have already been created in a pending state. - Activity must create the approvals using the onExecute function. |
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. |
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 |
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.
WFActivityHandler - onExecute( )
Virtual method. Activity subclasses must override this method to perform work appropriate to the activity.
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.
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. |
WFActivityHandler - setResultSucceeded( )
Sets the result of this activity as successful.
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 |
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 |