- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2024 09:07 PM
Hello. Can someone please help me with the below requirement
Whenever an Incident or SCTASK is being reassigned and if there is no assignce for more than 24 hours an automated SNOW email is to be triggered to the support manager, the support group email of the reassigned group.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2024 09:36 PM
HI @James_9
You can accomplish this in no of ways. Either with Business Rule or Flow/Workflow.
With Business Rule -
Create a Business Rule: You'll need to create a business rule in ServiceNow that triggers whenever an Incident or SCTASK is reassigned.
Define the Condition: Within the business rule, define the condition that checks if the assignment group has changed and if there's no assignee for more than 24 hours.
Send Email Action: Implement an action within the business rule to send an email notification. This email should be sent to the support manager and the support group email of the reassigned group.
Set a Timer: Additionally, you can set a timer within the business rule to check if there's no assignee for more than 24 hours. If the condition is met, trigger the email action.
Testing: Ensure to thoroughly test the business rule to verify that it behaves as expected.
Flow/WorkFlow -
Create a Flow/Workflow: Depending on the version of ServiceNow you're using, create a flow (for newer versions) or a workflow (for older versions).
Trigger: Define the trigger point for the flow/workflow. This should be when an Incident or SCTASK is reassigned.
Condition: Implement a condition in the flow/workflow that checks if there's no assignee for more than 24 hours.
Send Email Action: If the condition is met, add an action to send an email notification to the support manager and the support group email of the reassigned group.
Testing: Thoroughly test the flow/workflow to ensure it functions correctly and meets the specified requirements.
Remember to consider any specific configurations or nuances within your ServiceNow instance while implementing this solution. Additionally, ensure that proper permissions are set for accessing and executing the flow/workflow.
Do give thumbsup if this works for you!
Thanks
Akshay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2024 11:39 PM
Hi @James_9
Yes, This is a requirement of Response SLA.
If you do not want the SLA, create a workflow (trigger->assignment group changes)with wait-for conditions as (assigned to is empty and reassigned 24 hours ago) and send the notification.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2024 11:33 PM
Hello James,
Create response SLA with below conditions
Start condition: active = true
Pause condition: assigned_to is not empty (or state is not new)
Stop condition: active = false
please mark it helpful if it was.