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 02:02 AM
Can you share what you tried
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2024 07:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2024 08:00 AM - edited 04-12-2024 08:19 AM
Hi @MohammadSameena ,
You need to copy the "canProposeMIC" function from the "MajorIncidentTriggerRulesSNC" Script Include.
Paste the "canProposeMIC" function into the "MajorIncidentTriggerRules" Script Include.
Then as per the your requirement add the following code to the "MajorIncidentTriggerRules" Script Include:
if (current.priority == 3 || current.priority == 4) {
return false;
}