- 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 10:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2024 11:29 PM
Try gs.eventqueuescheduled method on Scheduled Job
Please find the below script:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2024 09:30 PM
Hi @James_9
You would need to set the notification Send When field to Event is fired. Then use a scheduled job to check if the field is assigned at whatever interval you need, and if it is empty, fire the event which will trigger the notification. i hope this helps...
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right 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 10:27 PM
Hi @James_9,
This sounds like a job for SLA, you should create a 'Response' SLA Definition, and within its workflow, you can trigger an email notification.
Thanks