Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

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
   }
}
  • No labels