We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

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

6 REPLIES 6

That worked ... thank you very much 

@Sandeep Rajput  This worked for me too. But this logic is weird.