How to set the Priority P1 by default when incident is converted to major Incident!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2021 09:58 AM
HI,
In Incidents when we promote the Priority 4 or Priority 3 or priority 2 tickets to Major Incident, ( Impact , Urgency , priority should be set to Priority 1 by default). Also the major incident team should have access to change the impact and urgency based on the issue.
Thanks!!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2021 10:08 AM
Hi,
So how you are creating Major incident now?
Is it UI action on form?
Thank you
Prasad

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2021 10:08 AM
Hi,
If you are promoting the incident to major incident through UI Action then just add the piece of code in the UI Action
current.setValue('impact',1);
current.setValue('urgency',1);
mark Correct✅/helpful if applicable, thanks!!
Aman
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2021 10:13 AM
Hello,
You can add below lines in UI action 'Promote to Major Incident' server script.
current.impact='1';
current.urgency='1';