ReadOnly Change Request all fields when state Authorize for Fullfillers

Service_RNow
Mega Sage

 

Hi Community.

How to make CHG Tickets (Change Requests) can not be editable by Fullfillers (as a login assignee to or itil user) at the Authorize stage (after approval).

 

Thanks

 

1 ACCEPTED SOLUTION

_Gaurav
Kilo Sage

Hi @Service_RNow 
You can create a write ACL where the condition is State is scheduled and write the script mentioned below.

 

answer = true;
if(current.assigned_to == gs.getUserID() && gs.hasRole('itil')){
    answer = false;
}
 
Please mark this as helpful and accept it as a solution if this works for you.
Thanks!

View solution in original post

2 REPLIES 2

Dr Atul G- LNG
Tera Patron
Tera Patron

Hi @Service_RNow 

 

Greetings!!#

 

You can create the UI policy or Business Rule or ACL to make field non editable in Authorised phase.

ACL is also another option. 

 

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]

****************************************************************************************************************

_Gaurav
Kilo Sage

Hi @Service_RNow 
You can create a write ACL where the condition is State is scheduled and write the script mentioned below.

 

answer = true;
if(current.assigned_to == gs.getUserID() && gs.hasRole('itil')){
    answer = false;
}
 
Please mark this as helpful and accept it as a solution if this works for you.
Thanks!