- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-21-2022 11:10 AM
I have a requirement to trigger sla escalation notification to requested for.
Solved! Go to Solution.
- Labels:
-
Cost Management (ITSM)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-22-2022 05:56 AM
Hi,
Couple of things to note here:
1) If you are using a Workflow then you can follow the steps below:
There is already a OOB workflow available named "SLA notification and escalation workflow" and within this Workflow there is already a activity which sends a notification to Assigned to so you can add your Requested for condition in that or create a activity based on your condition to trigger it to Requested for as shown below:
Script:
This script below you can write it in the activity highlighted above.
(function() {
return current.task.assigned_to + current.request.requested_for +"";
}());
Recommendation : Will suggest you can create a copy of this workflow and then make your changes which you want and the same can be applied to your SLA definitions.
2) In case you are using a FLow Designer then you can follow the steps below:
a) Refer to flow available "SLA notification and escalation flow" and then update as below:
Add Requested for by using Data Pill in the portion highlighted below:
Recommendation : Will suggest you can create a copy of this workflow and then make your changes which you want and the same can be applied to your SLA definitions.
Hope this helps. Please mark the answer as correct/helpful based on impact.
Regards,
Shloke
Regards,
Shloke
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-22-2022 12:04 AM
Do you mean to trigger notification when SLA breaches?
The OOB "Default SLA" flow uses events to trigger notifications at different stages.
You can set create your notification and set trigger type to event. Use event "sla.warning.breach"
ServiceNow Community Rising Star 2022/2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-22-2022 05:56 AM
Hi,
Couple of things to note here:
1) If you are using a Workflow then you can follow the steps below:
There is already a OOB workflow available named "SLA notification and escalation workflow" and within this Workflow there is already a activity which sends a notification to Assigned to so you can add your Requested for condition in that or create a activity based on your condition to trigger it to Requested for as shown below:
Script:
This script below you can write it in the activity highlighted above.
(function() {
return current.task.assigned_to + current.request.requested_for +"";
}());
Recommendation : Will suggest you can create a copy of this workflow and then make your changes which you want and the same can be applied to your SLA definitions.
2) In case you are using a FLow Designer then you can follow the steps below:
a) Refer to flow available "SLA notification and escalation flow" and then update as below:
Add Requested for by using Data Pill in the portion highlighted below:
Recommendation : Will suggest you can create a copy of this workflow and then make your changes which you want and the same can be applied to your SLA definitions.
Hope this helps. Please mark the answer as correct/helpful based on impact.
Regards,
Shloke
Regards,
Shloke