The CreatorCon Call for Content is officially open! Get started here.

How to set the Priority P1 by default when incident is converted to major Incident!

Vishnu priya3
Kilo Contributor

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.

 

find_real_file.png

 Thanks!!

3 REPLIES 3

Prasad Pagar
Mega Sage

Hi,

So how you are creating Major incident now? 

Is it UI action on form?

Thank you
Prasad

Aman Singh_
Kilo Sage

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

shikhatyagi
Kilo Sage

Hello,

You can add below lines in UI action 'Promote to Major Incident' server script.

current.impact='1';

current.urgency='1';