How can we propose all p1 incidents as major incident automatically and assigned to a major incident group automativcally once it was promoted?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2022 05:19 AM
Hi All,
we need to propose all p1 incidents as major incident automatically and when the user open that in workbench and click on promoted then it assigned to a major incident group automatically
Please help on this
Thanks
Hemachandra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2022 05:30 AM
You can write a before update BR on incident table with condition priority=1 and assignment group changes to "mim group name" and major incident state is not accepted.
script:
current.major_incident_state='accepted';
current.update();
Raghav
MVP 2023

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2022 05:35 AM
Create a trigger rule as per the documentation: Create trigger rules for major incidents (servicenow.com)
Don't use a before business rule which uses current.update()! This causes recursion and will result in ServiceNow terminating the transaction.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2022 05:53 AM
Hi Kieran,
Thanks for the response
1.In the trigger rules what is the condition we need to put?
2.And how i have assigned those major incidents to mim group automatically after proposed?
Thanks
Hemachandra

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2022 01:08 PM