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.

Want to create ACL to give write access only one field

Asmita7
Tera Expert

Hello friends,

 

I am creating an ALC on a table. I have to give access to a group "Alert Managers" to edit only one field "Supported By" having "support" role. 

I have created one ACL :

READ ACL   --    Table.None   -- support role

WRITE ACL --    Table.field    -- support role

But the group members are not able edit the field.

 

1 ACCEPTED SOLUTION

@Asmita7 If the ACL is extending the write permission to all the fields then you can create another ACL

WRITE ACL --    Table.*   -- admin role.

 

This way only a specific field would be editable by support role and rest can be edited by a higher role (e.g. admin)

View solution in original post

5 REPLIES 5

That worked ... thank you very much