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.

ACL help need to allow list edit of one field only

randrews
Tera Guru

As a rule we disallow list editing of records.. we would like to enable list editing only of the assigned to field.if you are in the group it is assigned to..

 

i have set an acl that disallows list edit of all records on the table <incident in this case> and an allow list edit for the individual field if you are in the assigned to group but it disallows still due to the table rule.

 

is there a way to allow a list edit of a single field without writing a ton of acls <one deny for each field>?

10 REPLIES 10

Kalaiarasan Pus
Giga Sage

following this as I need the same now will let you know if i get to know first


Slava Savitsky
Giga Sage

Try this:



  1. Create an allow ACL for the table using "Incident.-- None --"
  2. Create a deny ACL for all fields in the table using "Incident.*"
  3. Create an allow ACL for the field you want to be editable using "Incident.Assigned to"

yeahh i thought about doing it that way but wanted to avoid writing 20 extra acls to prevent list edit of an incident record.


Why 20 ACLs? You can use * to apply one ACL to all fields in a table.