In a standard change template, I have to give the value of Risk as low. But in choose field values it was not available.

Sofiya Perumal
Tera Expert

Hi Experts,

I have created a standard change template. But I can't mark the Risk value as low. The Risk field is not available in the drop down value. Can anyone please suggest a solution on how to enable it and get it done by scripts?

Please refer the screenshot as well.

find_real_file.png

Regards,

Sofiya.

 

 

5 REPLIES 5

suvro
Mega Sage
Mega Sage

Select the Risk Value and set the value

It was not working but I sorted it out the issue. Thanks for your help.

Regards,

Sofiya.

Hey Sofiya,
I am experiencing the same problem. Can you share how you solved it? 
Regards,
Melanie

Hey Melanie,

 

We can use on load client scripts to fix the issue. Please find the below script for change table.

 

function onLoad() {
//Type appropriate comment here, and begin script below
var short1=g_form.getValue('short_description');
if(short1=='#type short description of the standard change' )
{
g_form.setValue('risk',4);
}

}

 

Please let me know if your issue is fixed.

 

Regards,

melanie