Differences between ACL None, Field and WIldcard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2018 01:43 PM
Hello,
I have problems to understand the meaning of the ACL system. What exactly is the effect of setting a .None ACL for a user?
Doesnt it mean he has no access for the whole table?
Field and wildcard is kind of easy to understand but I dont get this None state.
Cheers und thank you
Stefan

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2018 02:21 PM
When you want to have Field level ACL: Tablename.* gives you a field level ACL which allows to Access to all field on that table.
When you want to have table level ACL: Tablename.none gives you a row level ACL allows to access records.
Tablename.None ACLs executes first and if it meets the condition then it skips to check Tablename.* else it will execute the TableName.* ACLs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2018 07:04 PM
Thanks,
Rajashekhar Mushke
Rising star : 2022 - 2024
Community Leader -2018
Connect me on LinkedIn : Rajashekhar Mushke
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2018 07:50 PM
Hi Stefan,
Check out this Doc Article, which should answer your questions:
https://docs.servicenow.com/bundle/jakarta-platform-administration/page/administer/contextual-securi...
Please let us know if the shared info was helpful by marking the response as Helpful.
Feel free to reach out if you have any additional questions.
Best Regards,
Mukul Gupta @ ServiceNow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2018 10:23 PM
Hii Stefen,
Here are the basic ACL Evaluations:
1. An ACL has 3 control sections(Requires Role, Condition, Script), all should evaluate to true.
2. ACL types : 1.Row Level 2.Field Level
To Identify the type of ACL : Any ACL that has a Dot(.) in the field definition(eg. incident.number, incident.*) is a field level ACL.
Any ACL that do not have Dot(.) (eg. incident etc) i.e. incident -none- is a Row Level ACL.
Now, How they are evaluated ?
Let us consider, R=Row and F=Field
((R||R)&&(F||F))
All the row level ACLs are combined with the logical OR.
All the Field level ACLs are combined with logical OR.
The result of both will be ANDed together.
So, the ACL that allows you to write on any Row level, and denies access on all field levels, will not allow you to access the record, due to the AND statement between Row level and field level.
The ACL that allows you to write on row level and if no field level ACL present, then the write access will be granted.
If the row level ACLs evaluate to True, and if some field level ACL is present which evaluate to true and some do not, Those that are read and evaluate to True will allow the field to display. Those that are read and evaluate to false will prevent the field from displaying.
If the read ACL evaluates to true and the write ACL evaluates to false, the field will display in read only mode.
For better understanding go through the following link :
https://developer.servicenow.com/app.do#!/lp/new_to_servicenow/app_store_learnv2_securingapps_jakarta_to_or_not_to?v=jakarta