The Zurich release has arrived! Interested in new features and functionalities? Click here for more

Disabling all email notifications for Closed Incident ticket

solutioningnow
Giga Guru

Hi All,

 

We need to disable all email notifications for Closed Incident tickets. We dont want to update all existing email notifications with condition like State not one of Closed,Cancelled.

 

Is there any other way to achive the same?

1 ACCEPTED SOLUTION

solutioningnow
Giga Guru

Hello,



Since I have notification being triggered from event as well as based on condition in notifications itself. So I have just written background script to add State condition to all Incident Notification.


View solution in original post

5 REPLIES 5

Subhajit1
Giga Guru

You can Update your Incident Events BR and update the conditions for the eventQueue function definition to Include current.active=true, something like:-



if (current.assigned_to.changes()) && current.active=true)


gs.eventQueue(...);


akt_snow
Giga Expert

You can either update the BR to prevent generation of events itself or update the notification conditions.



Thanks,


Avneet


Bhavesh Jain1
Giga Guru

In the ''incident events'' business rule, just write condition : current.active == true && current.incident_state != 7(Value of Closed state)


solutioningnow
Giga Guru

Hello,



Since I have notification being triggered from event as well as based on condition in notifications itself. So I have just written background script to add State condition to all Incident Notification.