
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-26-2020 06:45 AM
I've read through many of the existing threads, but they don't seem to solve this issue completely. Here are the primary requirements:
- Change requester cannot be an approver at any stage in the workflow
- Approval record needs to remain for audit trail purposes
- An 'Request Approval' email SHOULD NOT be sent to the approver if the requester
I've created the following business rule, however, it is not working.
Solved! Go to Solution.
- Labels:
-
Change Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-27-2020 09:29 AM
In my testing, the above solution stops ALL emails from being sent. As a result, valid approvers are not receiving the email.
This can probably be done in an easier way, but the following solution solves my requirements.
Business Rule #1
- Table : Approval [sysapproval_approver]
- When to run : before update
Business Rule #2
- Table : Change Request [change_request]
- When to run : after insert/update
Email Notification #1
- Table: Approval [sysapproval_approver]
- Category : Approval
- When to run : after insert/update

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-26-2020 09:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-26-2020 11:58 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-27-2020 09:29 AM
In my testing, the above solution stops ALL emails from being sent. As a result, valid approvers are not receiving the email.
This can probably be done in an easier way, but the following solution solves my requirements.
Business Rule #1
- Table : Approval [sysapproval_approver]
- When to run : before update
Business Rule #2
- Table : Change Request [change_request]
- When to run : after insert/update
Email Notification #1
- Table: Approval [sysapproval_approver]
- Category : Approval
- When to run : after insert/update
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-24-2022 09:42 AM
We've created a Business Rule at our company.
The change approval process still pulls everyone from 'Assignment Group' to the approval, but then the Business rule updates user's record to 'No Longer Needed'.
Business rule:
Table: | Approval (sysapproval_approver) |
Active: | Yes |
When to run:
Insert: | Yes |
Filter conditions: | Source table is change_request (AND) Approval for.Assigned to is same as Approver |
Actions:
Set field values: | State to 'No Longer Required' |
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-16-2024 02:42 PM
This worked perfectly.