- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2023 04:36 PM
I created a custom table with Extends table - Asset and a role -test_asset then, created Table.None write ACL with a custom role - test_asset, but non-admin users with role - test_asset are able to edit the custom fields that I added.
Any idea or suggestion is appreciated.
Thank you.
abrouf
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2023 08:40 AM
The issue has been resolved by creating a write ACL for all fields (Table.*) and adding an admin role, I thought the admin already had write access by default. so didn't do so earlier.
Got this idea from here:
Still didn't get the logic, if anybody knows, please drop here with the ServiceNow ACL documentation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2023 04:53 PM
Hi @abrouf
From what I understood, You have created a Table which extends asset table with few custom fields.
Then you have created a write ACL on newly created table at Row Level (Table.None) with test_asset role.
If you have not created any ACL at field levels like Table.* or Table.FieldName, the Table.None ACL can give the users with write access on custom fields which are created in extended table. This is because of ACL is searched from the most specific to the most generic match.
As there is no field level ACL it matches the Row Level ACL to grant the access.
If you want to restrict the access, you can create an ACL at field level like Table.* OR Table.FieldName.
Please mark my answer helpful and accept as a solution if it helped 👍✅
Anvesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2023 08:46 AM
Thank you Anvesh for your explanation.
Actually, I did the following in addition to the default ACLs of the custom table to achieve the goals of giving the users with a particular role allowing them to edit a few fields among many custom fields:
1. Created field-level read ACL (Table.*)
2. Created table-level write ACL (Table.None) ACL
3. Created custom fields on a custom table
4. Create a few field-level write ACL to allow some users to edit some fields (Table.field name)
but now users can edit all fields of the custom table.
Thank you again.
abrouf

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2023 10:00 AM
@abrouf Please use ACL Debugging tools https://docs.servicenow.com/bundle/vancouver-platform-security/page/administer/contextual-security/c... to check which ACLs are granting access to users on the custom table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2023 11:22 AM
Thank you Sandeep for pointing the resources.
I did it & found these: