- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2025 07:12 AM
i am trying to fire my event from a business rule.
i need to send a message to the assignee when an additional comment (comments) field is updated by the caller.
something isn't really working.
my business rule:
my notification:
i would much appreciate your help
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2025 08:27 PM
why it wouldn't trigger if comments are added via employee center?
I don't think it will stop triggering.
It's a record update and if condition matches it will send email
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2025 07:42 AM
why are you using Event, Business rule?
You can directly configure Notification to trigger when Additional Comments Changes and have recipient there.
In notification advanced condition check if the updated by is caller
if (current.sys_updated_by.toString() == current.opened_by.user_name.toString())
answer = true;
else
answer = false;
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2025 07:57 AM
yes. that works when the additional comments are added via back office/SOW. but when i add comments from the employee center it doesn't.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2025 08:27 PM
why it wouldn't trigger if comments are added via employee center?
I don't think it will stop triggering.
It's a record update and if condition matches it will send email
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader