- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2020 10:12 AM
Hello!
I'm looking to make an update to the "Incident Work notes to Assignment to" email notification. By default it sends notifications to "Work notes list, Assigned to, Additional assignee list". However, I'd like to add an advanced condition where if the person who updated the work notes is the same as the assigned to - do not send the notification.
The existing conditions are as follows:
I've also added this script with no success.
if(current.assigned_to == current.updated_by) {
false;
} else {
true;
}
Any help would be appreciated.
Dom
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2020 12:10 PM
Thanks! I forgot I had to step into assigned_to... I also had to update updated_by to sys_updated_by.
Below is my end result that worked.
if(current.assigned_to.user_name == current.sys_updated_by) {
false;
} else {
true;
}
Thank you for the help!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2020 10:35 AM
HI,
Current.assigned_to.user_name == current.updated_by
Thanks,
Ashutosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-10-2020 12:10 PM
Thanks! I forgot I had to step into assigned_to... I also had to update updated_by to sys_updated_by.
Below is my end result that worked.
if(current.assigned_to.user_name == current.sys_updated_by) {
false;
} else {
true;
}
Thank you for the help!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-29-2022 12:27 PM
Hi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-19-2022 04:41 AM
Hi Kim5,
My question is also same, did you get any solution on this??