How to get minimum two approvals from TAB group and if the group contains single user one approval
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2024 03:00 AM
Hi All,
We got a requirement to automate TAB approval process, part of this we have to get minimum two approvals from TAB group and suppose if the TAB group contains only one use than one approval is sufficient for TAB approval process.
Please suggest a best way to implement this scenario.
Thanks,
Sivakumar Raman
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2024 04:01 AM
I think you will need to customize this because the option isn't there OOB. You could just use your normal way of setting approvals, only not approve/reject in the standard way (by the way: how are you handling rejections)?
In a flow: when an approval is given, lookup other approval records. If none: approve, if others, check on their status. If at least one other is approved, approve, if not, do nothing.
You could also write the logic in a BR on the approval record: If approved, find other approvals related to the same record and check on their status. If none are approved, do nothing. If one is, approve.
Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2024 01:38 AM
We tried this below script , but this is not working for the groups contain single user to approve.
Any other script to allow both single user group approval and two user approvals in multi user group.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2024 04:21 AM
As I said: you will need to create your own custom approval functionality. Create the approval records and then either a new flow, or a subflow that needs to wait for completion, before your flow can go on.
Or do it via BR's, and continue your flow when the task is approved.
Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark