
- The Entry Step acts like function parameters, accepting input values from the Parent workflow
- The Exit Step works as a return statement, sending results back to the Parent workflow
How to use
Consider a simple workflow that adds 1 to a given number, for the purpose of this we called the workflow Incremental. Here’s how it works:- The Entry Step takes the initial number as an input parameter - this is like defining a function parameter that accepts the starting value
- The Math Step performs the increment operation by adding 1 to the input number
- The Exit Step returns the new incremented value back to wherever this workflow was called from
- Accepting input (Entry Step)
- Processing the data (Math Step)
- Returning results (Exit Step)

- First, use the Flow Control Step to locate and select your desired sub-workflow. In this case the Incremental workflow.
- Then, map your data to the sub-workflow’s entry parameters - these are the values you want to pass in for processing.
- Once the sub-workflow completes its execution, you can access and process the returned value in your main workflow.
