- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-24-2024 11:30 AM
I have a workflow that has a primary approval step and a secondary approval step. One approver in the approval group of the primary approval step, is also in the secondary. I am trying to skip the secondary approval step if that user approves it in the primary approval step. This way they do not receive multiple approval requests. Has anyone done this using the conditions or should I just go with an advanced script?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-29-2024 02:03 PM
I would do the following in the workflow:
- Create the primary approval step.
- Create an "If" step that queries the sysapproval_approver table. If "Person X" approved, return yes. If "Person X" did not approve, return no.
- If yes, go to the next non-approval step in the workflow.
- If no, go to the secondary approval step.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-25-2024 04:28 AM
Hi @Community Alums,
This is an oldie and goodie, check this link from SNGuru to prevent multiple approvals.
It has a clear explanation of what to do and how to write a business rule to prevent multiple approvals.
To help others (or for me to help you more directly), please mark this response correct by clicking on Accept as Solution and/or Helpful.
Thanks, Robbie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-29-2024 04:41 AM
Hi @Nick Calandra,
Did you see my earlier response and solution?
This is an oldie and goodie, check this link from SNGuru to prevent multiple approvals.
It has a clear explanation of what to do and how to write a business rule to prevent multiple approvals.
To help others (or for me to help you more directly), please mark this response correct by clicking on Accept as Solution and/or Helpful.
Thanks, Robbie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-29-2024 02:03 PM
I would do the following in the workflow:
- Create the primary approval step.
- Create an "If" step that queries the sysapproval_approver table. If "Person X" approved, return yes. If "Person X" did not approve, return no.
- If yes, go to the next non-approval step in the workflow.
- If no, go to the secondary approval step.