- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2014 05:41 AM
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?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-20-2014 02:40 AM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2014 05:27 AM
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(...);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2014 01:40 PM
You can either update the BR to prevent generation of events itself or update the notification conditions.
Thanks,
Avneet

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-01-2014 10:50 PM
In the ''incident events'' business rule, just write condition : current.active == true && current.incident_state != 7(Value of Closed state)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-20-2014 02:40 AM
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.