Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Update CHANGE Closure Information

Harsh Sharma
Tera Contributor

Hi all,

On a change request, I accidently put unsuccessful on a Close code rather than successful. Is there any way I can update that to successful as an ADMIN?

 

Thanks in advance.

1 ACCEPTED SOLUTION

Mike_R
Kilo Patron
Kilo Patron

If it's just read only due to a UI policy or client script,

you can open up the javascript executor (Press "Alt+Ctrl+Shift+j" to open the Javascript Executor.)

and run the code

g_form.setReadOnly('close_code',false);

 

Mike_R_0-1667951608493.png

 

If it's read only due to an ACL, you can either run a fix script to update the value, or enable the admin override on your ACLs.

 

View solution in original post

1 REPLY 1

Mike_R
Kilo Patron
Kilo Patron

If it's just read only due to a UI policy or client script,

you can open up the javascript executor (Press "Alt+Ctrl+Shift+j" to open the Javascript Executor.)

and run the code

g_form.setReadOnly('close_code',false);

 

Mike_R_0-1667951608493.png

 

If it's read only due to an ACL, you can either run a fix script to update the value, or enable the admin override on your ACLs.