Assigned to field should be editable only to members of assignment groups?

shivkumar1
Tera Contributor
 
Assigned to field should be editable only to members of assignment groups on incident form through ACL?
 
 
3 REPLIES 3

Saurabh Gupta
Kilo Patron
Kilo Patron

Hi,
You can write field level write ACL for assigned to field with condition assignment_group is one of my group.

 

Creating and Editing Access Controls | ServiceNow Developers


Thanks and Regards,

Saurabh Gupta

Community Alums
Not applicable

Hi @shivkumar1 ,

 

Yes, you can achieve this by creating 'Write' ACL on Incident table. Below is the screenshot for reference.

 

GaganKris_0-1672167548965.png

 

 

Please mark helpful/like if the solution is in line with your expectation.

 

Regards,

Gagan k

PrashantLearnIT
Giga Sage

Hi Shivkumar,

 

Write a write acl for incident.assigned_to field.

 

if(gs.getUser().isMemberOf(current.assignment_group))

{

return true;

}

 

Thanks & Regards

Prashant

If my response helped you in any way, please mark this response as CORRECT & HELPFUL

********************************************************************************************************
Please appreciate the efforts of community contributors by marking the appropriate response as the correct answer and helpful. This may help other community users to follow the correct solution in the future.

********************************************************************************************************
Cheers,
Prashant Kumar
ServiceNow Technical Architect


Community Profile LinkedIn YouTube Medium TopMate
********************************************************************************************************