How to stop a parallel task from another parallel task and proceed in the workflow


When the process is started, two tasks are spawned task “one” and task “three” and when task three is completed, task “one” and “two” need not be done and it should move to “five” but the problem is the process seems to be getting stuck in the paralllel gateway

the process seems to be getting stuck in the paralllel gateway

Yes, it has three incoming sequence flows, so it needs three “token” to get activated.

You can place an exclusive gateway before the parallel gateway to merge the exception flow (coming out of the signal event) and the sequence flow coming from “two”.

Thanks @DatyEighty. This did solve it.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.