Email should be triggered when there is no assigne for 24 hours

James_9
Giga Contributor

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.

1 ACCEPTED SOLUTION

Akshay Gupta2
Kilo Sage

HI @James_9 

 

You can accomplish this in no of ways. Either with Business Rule or Flow/Workflow.

 

With Business Rule - 

 

  1. Create a Business Rule: You'll need to create a business rule in ServiceNow that triggers whenever an Incident or SCTASK is reassigned.

  2. 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.

  3. 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.

  4. 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.

  5. Testing: Ensure to thoroughly test the business rule to verify that it behaves as expected.

 

Flow/WorkFlow - 

 

  1. 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).

  2. Trigger: Define the trigger point for the flow/workflow. This should be when an Incident or SCTASK is reassigned.

  3. Condition: Implement a condition in the flow/workflow that checks if there's no assignee for more than 24 hours.

  4. 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.

  5. 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

View solution in original post

11 REPLIES 11

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

Jagadish Sanadi
Kilo Sage

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.