I want to set priority as 4 whenever the incident is raised from service portal

snow34
Tera Contributor

I want to set priority as 4 whenever the incident is raised from service portal

1 ACCEPTED SOLUTION

Hi,

Did you check your Priority Lookup rule? If you are using OOB then you can use the below values

current.impact = '2';
current.urgency = '3';

Thank you,
Palani

View solution in original post

4 REPLIES 4

palanikumar
Mega Sage

Hi,

Service Portal uses record producer to raise incident. For your requirement set the impact and urgency to 4 to create the incident as priority 4. Follow the below steps

1) Goto Record Producer. search for "Create Incident"
2) Open Record Producer and add below line at the begin of the script section

current.impact = '4';
current.urgency = '4';

Note: Use impact and urgency based on the Priority Lookup rule configured

Thank you,

Palani

Thank you,
Palani

I tried but it didn't worked it is setting as priority 5 i want to set as 4

snow34
Tera Contributor

find_real_file.png

Hi,

Did you check your Priority Lookup rule? If you are using OOB then you can use the below values

current.impact = '2';
current.urgency = '3';

Thank you,
Palani