email notification to Users added or removed in OOTB field additional_assignee_list of pm_project
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10 hours ago
Hi All,
I need to send email notification to Users added or removed in OOTB field additional_assignee_list of the pm_project table.
This is not OOTB capability, I would like to attend ServiceNow recommendations avoiding custumization.
- Labels:
-
Best Practices
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10 hours ago
To send email notifications when users are added or removed in the additional_assignee_list field on the pm_project table without heavy customization, follow these steps:
- Create a Business Rule to Detect Changes
- Table:
pm_project - When: Before or After update
- Condition:
current.isUpdatedField('additional_assignee_list')
Example code :
Create Event & Notification
Define an Event:
- Name:
project.additional_assignee.changed - Table:
pm_project
- Name:
Create an Email Notification:
- When to send: Event is fired
- Event name:
project.additional_assignee.changed - Who will receive: Use
event.parm1and/orparm2or define logic in the Business Rule - Customize your email using
${event.parm1}and${event.parm2}data pills
A similar use case and recommended approach is discussed in the ServiceNow Community blog below. Please review it for additional context and validation:
If this response was helpful, please consider marking it as Correct and Helpful. You may mark more than one reply as an accepted solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10 hours ago
Hi @silviocrive
Refer : Sending Notifications Only to Newly Added Users in "Additional Assignee List" for Change Requests // same thing , you need to change the table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
9 hours ago
We can handle this without heavy customization by using Flow Designer, which is the recommended approach in ServiceNow.
We can create a flow on the pm_project table with a trigger on update and check if the Additional Assignee LIst field changes. Then, we can identify who was added or removed and send email notifications accordingly using the Send Email action.
