Skip to main content

Hi,


I had requirement to initiate sub flows and main flow will be activated again when all sub flows are done, so I used synchronous IPC.


But the requirement is changed that users want to continue their job even some sub flows are still in progress... so I decide to use asynchronous IPC instead.


But in users perspective, doing this way is difficult to track whether all sub flows are done already... because for the old way, user will get notification email when main workflow moves to new activity after all sub flows are done. But in this way, user will get notification email for next activity immediately after sub flows are started.


Is there any way to notify specific user when all sub flows are done?


Thanks in advance for any suggestions :)


 

Hi _cyclops_, thanks for your reply


I'm doing in parallel way, number of sub flows depends on elements in xml field... but for synchronous IPC, I used to add ActivityInstance field and check if data in all slots have been set before go to next activity. But when I change to asynchronous, it will go to next activity immediately while sub flows are just started


So I cannot find the point to check if all sub flows are already done.


Reply