ACL: How Do i restrict table columns to specific group?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-20-2017 06:05 AM
New to ACL. We would like to restrict few columns/fields in a table to allow write permission to only specific group, how do I do that?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-18-2022 02:45 PM
First you want want to allow these group members access to write to the table with the following "write" ACL:
Operation: "write"
Name: "table.None"
Advanced script: user.isMemberOf('yourGroupName');
Second: Restrict all columns from that group by creating a ACL for accessing all columns to another role
Operation: "write"
Name: "table.*"
Role: "default table role"
Third: Grant "write" access to your specific column
Operation: "write"
Name: "table.yourColumn"
Advanced script: user.isMemberOf('yourGroupName');
Related article: https://community.servicenow.com/community?id=community_article&sys_id=e0242225db2f41d0770be6be13961...