persistent class EnsLib.Workflow.ActionDefinition
extends %Persistent, %XML.Adaptor
Defines the set of available actions that a user can make within a Workflow application.
Users can extend this list.
property Caption
as %String(MAXLEN=100);
Used to display the button caption for this action within the workflow application.
property Name
as %String(MAXLEN=50);
Identifying name used for this action. This must be a unique value.
property Prompt
as %String(MAXLEN=100);
If defined, this action prompts the user before performing the action.
property Title
as %String(MAXLEN=100);
Used to display popup help for this action within the workflow application.
classmethod CreateDefaultActions(pForce As %Boolean = 0)
as %Status
Create the set of default Workflow actions
This will clear out the existing actions
query ActionList()
SQL Query
:
SELECT Name,Caption,Title FROM ActionDefinition
ORDER BY Name
Return a list of available Workflow actions.
index (ID on Name) [IdKey];