Versions Compared

Key

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

...

  1. Navigate to Workflow Workflow Editor;
  2. Click New.
  3. Fill in the form fields and click Create.
  4. Select Properties Select Properties in workflow properties.burger menu

Fill in the fields of the new workflow properties table form appeared at the right.

FieldDescription
NameNew workflow Workflow name.
Active

Select this checkbox to make

this

workflow active or inactive.

DescriptionA brief process description.
TableChoose the table to apply the newly created workflow.
Condition type

Specify a condition type for this Specifies the type of event that triggers workflow. Available choice 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('workflowId').start(current);


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

...