I need to design an process with following scenario.
Consider P1 is process contains t1,t2,t3,t4 are sequential activities & t5.
t1 – > t2 –> t3 – t4
|
|
t5 (async repeatative)
after t2 task will get fork into t3 and t5, where as t3 continues it's sequential execution and t5 will get call repetitively after 60 seconds until some time frame elapsed.
I each step I have to store some form parameter for each task.
How can I achieve this scenario in activity?
Task instance wise details ( Consideration – What I'm looking for )
Task Id Task Instance Id Parent Task Id
t1 15
t2 16
t3 17
t4 18
t5 (1) 19 17
t5 (2) 20 17
t5 (3) 21 17
t5 (4) 22 17
t5 (5) 23 17
t5 (N) denote recurrence of the same task with different instance ids.