Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

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.

NameTypeDescription
msgStringMessage to send to the log.
argsStringString to send to the log
TypeDescription
void 

WFActivityHandler - debug(String msg, Array args)

Logs a debug message.

NameTypeDescription
msgStringMessage to send to the log.
argsArrayArray of values to send to the log
TypeDescription
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.

NameTypeDescription
activityIdStringSys\_id of this running activity. Table: Workflow Activities \[wf\_activity\]
orderStringOrder number associated with the task or approval.
startAtDspValueStringStarting time for the task or approval in GlideDateTime format.
noCreateFlagBooleanFlag 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
TypeDescription
ObjectPre-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.

NameTypeDescription
msgStringMessage to send to the log.
argsStringString to send to the log.
TypeDescription
void 

WFActivityHandler - info(String msg, Array args)

Logs an information message.

NameTypeDescription
msgStringMessage to send to the log.
argsArrayArray of values to send to the log
TypeDescription
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.

NameTypeDescription
strStringString that possibly contains embeded el.
TypeDescription
StringThe 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.

NameTypeDescription
None  
TypeDescription
void 

WFActivityHandler - onExecute( )

Virtual method. Activity subclasses must override this method to perform work appropriate to the activity.

NameTypeDescription
None  
TypeDescription
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.

NameTypeDescription
scriptStringString containing valid Javascript.
TypeDescription
variableIf 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.

NameTypeDescription
None  
TypeDescription
void 

WFActivityHandler - setResultFailed(String reason)

Sets the activity result as failed with an optional reason string.

See Activity SOAP Message.

NameTypeDescription
reasonString(Optional) Description of the reason this activity failed.
TypeDescription
void 

WFActivityHandler - setResultSucceeded( )

Sets the result of this activity as successful.

NameTypeDescription
None  
TypeDescription
void 

WFActivityHandler - warn(String msg, String args)

Logs a warning message.

NameTypeDescription
msgStringMessage to send to the log.
argsStringString to send to the log
TypeDescription
void 

WFActivityHandler - warn(String msg, Array args)

Logs a warning message.

NameTypeDescription
msgStringMessage to send to the log.
argsArrayArray of values to send to the log
TypeDescription
void