- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2017 09:26 AM
I have a catalog form which has some fields on it .
There is a requirement to send a notification to the "Payee" when the task is completed . So my question is : In the workflow , how do I send the notification to payee?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2017 09:37 AM
I would do this:
1) create an event by going to system policy > Events > Registry
2) then create a notification Event in the workflow in the event name field find the event you created then in parameter 1 on the return you would do something like this: return current.variables.u_payee_name_field;
3) then create a notification go into the advanced view and fire it from the event you created on the send to tab make sure parameter 1 is checked and send to event creator is checked.
more info here: Notification Activities - ServiceNow Wiki
http://wiki.servicenow.com/index.php?title=Events_and_Email_Notification#gsc.tab=0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2017 11:11 AM
If it is a catalog item then it would be the sc_req_item table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2017 11:38 AM
Thanks! It's working