The WorkFlowReverse function is used to reverse an ongoing workflow to any of the previous steps.
Syntax
WorkFlowReverse(StepNumber, Comments, AlertUser)
Argument Count: 3
Description The WorkFlowReverse function is used to reverse an ongoing workflow to a specified step.
Arguments
StepNumber
Type: string
Is Optional: No
Description: Number of the step to which the workflow should be reversed.
Comments
Type: string
Is Optional: yes
Description: Comments for reversing the workflow.
AlertUser
Type: bool
Is Optional: yes
Description: E-mail user upon executing this rule.
Example Usage
Example with optional values:
WorkFlowReverse(ComboBox1.Value, “Reverse”, true)
In this example, the workflow is reversed to the step specified by ComboBox1.Value, with the comments “Reverse,” and the user will be notified via email.
Example without optional values:
WorkFlowReverse(ComboBox1.Value)
In this example, the workflow is reversed to the step specified by ComboBox1.Value. No comments are provided, and the user will not be notified via email.