Can someone help me with the following use case
I have main process and i have interrupting subprocess to get a reject request from outside. the reason I have it as interrupting is because I don’t want to continue on the main process after the reject request is triggered. In the event subprocess, I have an approval flow to get approval and based on approval status (approved/rejected) I need to either terminate the process instance (if approved) or resume back to main process (if rejected) .
the approval flow works well, but if the approval request is rejected, how do I move back to the main process and resume from the task where I was before ? Currently it terminates the process even if the request is rejected.
Below is how my event subprocess looks like.