Expand my Community achievements bar.

Break out of Gateway branches

Avatar

Former Community Member

I have a process that requires 10 people to review and approve a form before it can move on.  It does not need to be sequential and time is of the essence, so I have used a gateway and created 10 different branches.  The issue is that if any one of the 10 people deny the request, all the others should receive an email notification and the process should end.  I could put 3 routes out of each review step with the names "approve", "deny" and "cancel".  Then, if one denies, an email notification would go out to the rest of the approvers informing them that it has been denied and they can just hit "cancel" to complete the process.  What is the best practice approach to accomplish this?  Should I invoke a subprocess that will go through and automatically complete the tasks at the other review tasks?  Is there a good sample to do this?

Thanks!

1 Reply

Avatar

Level 10

I hope event will help you on this requirement.

You could drop a throw event on each deny route and can complete the other tasks by writing a receive event.

Nith