How to create email notification for Incident SLA reached 75% business elapsed time?

Giri prasad Bat
Kilo Contributor

  When i try to send the email notification for SLA has completed 75% of business elapsed time  for incident table,I need to select the Incident SLA table in email notifications.But it is not posible to access the Number field from the variables,because it is not available in Incident SLA table.So what i need to do to send SLA time 75% reached email notification for incident table.Can you please give your answers.

 

Thank you,

in advance.

1 ACCEPTED SOLUTION

Uncle Rob
Kilo Patron

Why not integrate it into the SLA workflow using a Wait activity that goes for 75% completion time?

View solution in original post

6 REPLIES 6

AshishKM
Kilo Patron
Kilo Patron

Hi Giri,

Create a business rule on TASK_SLA table and filter the records based on Business elapsed percentage or Actual elapsed percentage.

Create an new event ( lets say SLA 75 Warning )

Create email notification on this event.

In Business rule trigger the event based on matching condition via gs.eventQueue() method. You can pass the incident number as an input parameter and use the same in email notification.

 

Refer for gs.eventQueue() method

https://developer.servicenow.com/app.do#!/lp/new_to_servicenow/app_store_learnv2_automatingapps_madr...

 

Thanks,

Ashish

Please mark correct/helpful if it helps you.


Please mark this response as correct and helpful if it helps you can mark more that one reply as accepted solution

Uncle Rob
Kilo Patron

Why not integrate it into the SLA workflow using a Wait activity that goes for 75% completion time?

Michael Fry1
Kilo Patron

Robert is correct! No need for a business rule when this functionality comes out of the box via a workflow running on the SLA.

Giri prasad Bat
Kilo Contributor

Thanks all for your reply