- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2026 07:00 AM
var approvers = fd_data.flow_var.groupmanager;
return "ApprovesAllU[" + approvers + "]";
This correctly enforces all approvers must approve before proceeding. I also need: if anyone rejects, the flow should go to the reject branch and reject the RITM. Here the reject branch is not working. So, what is the solution to work both of the conditions ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2026 08:00 AM
Hi @BiswalNayak ,
You can configure this as per the below screenshot:
Or if want to use script:
"ApprovesAllU[" + approvers + "]OrRejectsAnyU[" + approvers + "]";
Thanks
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2026 10:39 PM
