Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Tip
iconfalse

Role required: admin, wf_admin.

To create a workflow, please complete the steps below:

...

FieldMandatoryDescription
NameYSpecify the workflow name.
ActiveN

Select this checkbox to make the workflow active or inactive. When a workflow is created, this checkbox is selected by default.

DescriptionNAdd a brief process description.
TableYChoose the table to apply the workflow.
Condition TypeN

Specify the type of event that triggers the workflow. Available options:

  • Auto – by record creating or updating (manual or scripted).
  • Manual – by calling the SimpleWorkflow.start(current) method, as shown in the example below:
Code Block
languagejs
themeEclipse
titleSimpleWorkflow.start
new SimpleWorkflow('159491114038814558').start(current); // workflowID


ConditionNSpecify a trigger condition for this workflow. Use the Condition Builder to build complex AND/OR filters.

...