/
How to Check Workflow Step Execution Status

How to Check Workflow Step Execution Status

If you want to find out about the execution status of a workflow step, you can use the following methods:

  • isInitialized()
  • isPreExecuted()
  • isDenied()
  • isApproved()
  • isWithdrawn()


Example
for (step in workflowInfo.steps) {
	if (step.isPreExecuted()) {
	 stageOwner = step.uniqueName
   }
}

Related content

Workflow, Post Step Logic - Handbook
Workflow, Post Step Logic - Handbook
More like this
How to Display Various Symbols in Calculation Results Using Unicode
How to Display Various Symbols in Calculation Results Using Unicode
Read with this
How to Set the Number of Displayed Decimals in User Input
How to Set the Number of Displayed Decimals in User Input
Read with this
Approval Steps Configuration
Approval Steps Configuration
More like this
How to Add Approver to Workflow Email Template
How to Add Approver to Workflow Email Template
Read with this

Found an issue in documentation? Write to us.