- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-15-2023 04:59 AM
Hello,
I have two fields on the form 1.Requestor and 2.on behalf of. I want to send notification to requestor and on behalf of when request is created. I have added who will receive as requestor. Wanted to check how to add on behalf of user in to list? also want to redirect RITM request on portal from the email as URI_REF will redirect to native. Please suggest.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-15-2023 05:16 AM
Its not possible to add variables in the notification.
You can trigger notification by firing event when request item is created using a Business rule or from workflow
// Store users in a comma separated list
var users=current.requested_for +',' + current.variables.on_behalf_of_variable_name
gs.eventQueue("event.name",current,users)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-15-2023 05:16 AM
Its not possible to add variables in the notification.
You can trigger notification by firing event when request item is created using a Business rule or from workflow
// Store users in a comma separated list
var users=current.requested_for +',' + current.variables.on_behalf_of_variable_name
gs.eventQueue("event.name",current,users)