- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2020 11:34 AM
On a regular Notification, I get a 'Users/Groups in fields' pick list where I can select a field off the RMR.
On the Notification Activity on the Workflow, I don't see/get it. Is this something I can add? I'm not able to navigate to a specific field (value) on the RMR where I want the email to be sent to.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2020 11:45 AM
You can use answer = current.u_st_email;
But yes, as suggested by Mark, it is not recommended to use Workflow notification. You can use the Create Event activity instead and create an event Registry record and map the registry record to a notification.
Please mark this response as correct or helpful if it assisted you with your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2020 11:38 AM
According to the ServiceNow Docs, you need to use the Advanced checkbox and the use the To (script) to populate the To field based on a table field. There is not User/Groups in fields in Notification Workflow Activity
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2020 11:41 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2020 11:45 AM
You can use answer = current.u_st_email;
But yes, as suggested by Mark, it is not recommended to use Workflow notification. You can use the Create Event activity instead and create an event Registry record and map the registry record to a notification.
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-16-2020 12:56 PM
Sanjiv,
Would this be how it should be configured? Doesn't seem to be working.
// Set the variable 'answer' to a comma-separated list of user or group sys_ids that you want the email sent to.
if (current.u_st_email.sys_id.toString()) {
answer = current.u_st_email;
}