How to send custom notification to particular field which is present in variable set in the form?

kavithan
Kilo Explorer

I want to send custom notification to the email field which is present in variable set in service catalog. How to achieve this?

1 ACCEPTED SOLUTION

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

View solution in original post

4 REPLIES 4

Voona Rohila
Kilo Patron
Kilo Patron

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);

https://docs.servicenow.com/bundle/rome-platform-administration/page/administer/platform-events/task...

 


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

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?

 

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

It is working. Thank You So much Rohila Voona.