Hello,
Is it possible to specify the order of execution of the tasks in the task list?
The use case is as follows: The process consists of 3 tasks (Task_A, Task_B and Task_C). A user has three instances of Task_A from three different cases in the task list. Now it should be ensured that no matter which task the user executes first, the remaining tasks of this case are executed in a strict sequential order. So if he executes the instance of the second case first, then the order of the tasks should be as follows Task_A (2) --> Task_B(2) --> Task_C(2) and if he selects the instance of the third case first, then Task_A (3) --> Task_B(3) --> Task_C(3) and so on.
No other tasks from another case or another process should be executed between these tasks. Is this possible by somehow starting or calling the tasks one after the other or is there any other way to specify the order of execution of the tasks in cases?
Many thanks in advance.