- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2024 09:37 AM
Hi Experts...
My requirement is 'the auto closer process should be applied to both incidents & Major incidents' . So that both will auto close at the same time.
Do I need to create a separate sys property for MIs?
Thanks
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2024 11:02 AM
Based on the documentation, Major Incident can't be closed automatically using the OOB Property.
If you still want to auto-close, you may need to create a property and then create a scheduled job or flow to auto-close the major incident.
There is a discussion in this thread, which may help too to make a decision
Please mark this response as correct or helpful if it assisted you with your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2024 11:29 PM
So my understanding is, you want to auto-close the Major Incident when all the incidents associated to it is resolved/closed.
I would suggest creating an onAfter Business Rule on the incident table to run when state changes to Closed, check if there is a Major incident linked and then query the incident table to see if there are any active incidents linked to the Major incident. If none found that update the Major incident state to Closed and add appropriate notes.
Please mark this response as correct or helpful if it assisted you with your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2024 09:41 AM
Yeah...almost there.....Just the state value, is it 'closed' or '3'....Usually the closed state value is 3, but you can verify in your instance.
Not sure if you need a close notes as well to update.
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2024 04:55 AM
@SanjivMeher ...
Here is my script. Kindly have a look and let me know if I am in right path.
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2024 09:41 AM
Yeah...almost there.....Just the state value, is it 'closed' or '3'....Usually the closed state value is 3, but you can verify in your instance.
Not sure if you need a close notes as well to update.
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2024 12:37 AM
@SanjivMeher ...
Thanks a ton for giving your valuable time.