Hello,
We have a task in a process flow that allows the user specify an indeterminate number of users who must act in parallel in the next step of the process flow. To do this, we store the users in a collection type variable and we define the following task as a multi-instance task that iterates over the stored collection.
The problem we have with these parallel tasks is that we need that as soon as one of the users finishes their task, the next task in the flow must be activated without the rest of the parallel instances disappearing (which happens if we establish the completion condition on multi instance task).
If we don’t use completion condition, the next task is not activated until all parallel instances have finished.
Functionally, the process flow is something like this…
…but we can’t modelate the process so, because the number of parallel tasks is indeterminate and variable.
Any help would be apreciated