I have a requirement where a subprocess shape (with spin off is checked) is configured before an assignment shape and I want that assignment to begin only after that subprocess flow with spinoff option checked is resolved.how to achieve this
@TanyaS58 spin off flow means independent flow from the main flow. So main flow should be processing without any dependencies with this spin off flow. Can you please tell us your scenario??
But if you want to achieve it, you can keep an assignment before the assignment shape with a work queue configured. So case will be waiting in the work queue. In the end of the flow of subprocess you can run resumeflow activity so that case will be resumed and will be routed to assignment.
@Anoop Krishna ,my requirement is that after the flow inside spinoff os resolved then only main flow should resume.
@Anoop Krishna Thanks Anoop i will try it with your approach.