Assume you want to create a job chain but some parts of the chain should run in parallel. You want to define all nodes in one chain.
- Please define some nodes at the beginning of the chain
- When you want to parallize the execution add a node with the splitter job
- Define the next node for the splitter. This could be the sync node or any other node in the chain.
- Define the number of orders that should run in parallel. Also define the node where these order should start. Use a list like 100;200;300. That means that you will get 3 additional orders all running in paralell.
- Define the sync node with the JITL sync job. All orders must reach this node. When all orders are in this node, the execution proceeds with the original order. The new orders will end in the sync.
- please note that every parallel processing needs an own unique sync job.
You can download an example from here.Splitter.zip