Access Controls: Table.none vs Table.* - what's the difference
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2017 03:58 AM
Hi
Can someone clarify the difference is between a field-level acl in the form table.* and a record-level acl for that table? I'm assuming the wildcard scoops up all fields in the table, so what is it achieving that the table-level one isn't?
Thanks in advance.
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2026 01:34 AM
Hello @martinsk
Table.none: This is a row-level ACL. It controls whether a user can access the records (rows) of a specific table. Think of it as the gatekeeper to the entire set of data within a table. If a user does not have the necessary permissions granted by a Table.none ACL, they will not be able to see or interact with any records in that table, regardless of field-level permissions.
Table.*: This is a field-level ACL. It acts as a wildcard, applying to all fields on the specified table. It controls whether a user can access the individual data points (fields) within the records of that table. This ACL comes into play after a user has been granted row-level access through a Table.none ACL (or other means).
Scenario : Read Access with Table.none and Table.* (Admin)
Table.none is like having the key to enter the building itself. Without this key, you cannot access any of the rooms inside.
Table.* is like having permission to see the contents of all the rooms inside the building. However, this permission is useless if you don't have the key to get into the building in the first place
If this response proves useful, please mark it as Accept as Solution and Helpful. Doing so benefits both the community and me. 👍🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Friday
Hello
When you select ACL Operation (let's say) as read, Name as Incident and None -> Then you are doing it for List view (records). This means you won't be able to see any count as how many incidents are there and not even can search via global search (icon at top right):
Before ACL:
After ACL:
When you select ACL Operation (let's say) as read, Name as Incident and * -> Then you are doing it for Field Level which means on the list view you can still see the counts but all the fields/columns will be hidden for you. You can search any incident however it will not show any field to you:
Let's say you want to provide reporting team the capability to retrieve the count of incidents created everyday however don't want reporting team to see any incident field and it's value -- then the table.*
Let's say you don't want anyone to search, view, edit, report (export) on specific incidents, then you can use table.NONE
Hope that helps!
