Propose Major incident Option should not available for P3,P4, and P5. This should available only for P1 and P2 incidents. How to achieve this ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2022 12:39 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2022 12:56 AM
Hi
You can override the function - canProposeMIC in Script Include 'MajorIncidentTriggerRules'. ServiceNow definition can be seen in MajorIncidentTriggerRulesSNC
or you can also try something like this:
provide UI action condition- current.priority==1 (This is an example for only P1, you can add your own condition here)
Mark my answer correct & Helpful, if Applicable.
Thanks,
Sandeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2022 01:43 AM
By this Its showing Only on P1 but when the ticket is proposed its not working

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2022 01:15 AM
Hi,
In the UI Action, along with script include, you can add one more condition as
current.priority=='1' || current.priority=='2'
Or else same validation can be done in script include with condition
if priority!=1 then rerturn false
Mark as correct and helpful if it solved your query.
Regards,
Sumanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2022 01:43 AM
Tried but not Working could you please help