- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-25-2022 10:22 PM
I want to send custom notification to the email field which is present in variable set in service catalog. How to achieve this?
Solved! Go to Solution.
- Labels:
-
Service Catalog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-27-2022 06:07 AM
You cannot dot-walk it
You should trigger event from BR and pass the variable set value as paramter.
The BR should be triggered when ritm is clossed complete.
Check below link for steps.
https://tech.forums.softwareag.com/t/servicenow-email-notification-via-event/237437
Mark it helpful if this helps you to understand. Accept solution if this give you the answer you're looking for
Kind Regards,
Rohila V
2022-25 ServiceNow Community MVP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-26-2022 12:42 AM
Hi Kavithan
What did you try so far?
you can use eventQueue to trigger a notification and pass the value from your email field as parameter1/parametr2
gs.eventQueue('event_name',current,param1,parm2);
Mark it helpful if this helps you to understand. Accept solution if this give you the answer you're looking for
Kind Regards,
Rohila V
2022-25 ServiceNow Community MVP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-27-2022 03:28 AM
I have tried dot walking to select that field in user/group fields in notification.
Here i want to send notification when ritm is closed complete state to the additional contact field which is present in variable set.
can you please describe in step by step process?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-27-2022 06:07 AM
You cannot dot-walk it
You should trigger event from BR and pass the variable set value as paramter.
The BR should be triggered when ritm is clossed complete.
Check below link for steps.
https://tech.forums.softwareag.com/t/servicenow-email-notification-via-event/237437
Mark it helpful if this helps you to understand. Accept solution if this give you the answer you're looking for
Kind Regards,
Rohila V
2022-25 ServiceNow Community MVP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-29-2022 04:51 AM
It is working. Thank You So much Rohila Voona.