- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2024 06:10 PM
Hello team, I am pulling my hair. So I have a business rule set up to fire an event on an email notification. I can see in the event log that the event is being triggered, however it is not sending the email notification for some reason!
Business rule & BR script:
Table: sc_request
When: After , Update
Filter Conditions: If Short Description > is > xxx
AND
If Request State > changes to > Closed Complete
Script:
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2024 06:49 PM
@HP8 Your Business Rule is set up on the sc_request table.
Your Email Notification is set up on the sc_task table.
The event sn_customerservice.ape_rc_modify is being triggered from the sc_request table, but the notification is expecting it to come from the sc_task table.
Please try after changing above and it should work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2024 06:49 PM
@HP8 Your Business Rule is set up on the sc_request table.
Your Email Notification is set up on the sc_task table.
The event sn_customerservice.ape_rc_modify is being triggered from the sc_request table, but the notification is expecting it to come from the sc_task table.
Please try after changing above and it should work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2024 07:42 PM
You are quite right! I changed the BR table to sc_task and created a glideRecord to grab the field conditions from the sc_request table instead!