Acl on custom table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2017 03:54 PM
Hi,
I have created a custom application but the application is not visible to everyone.I wanted to form should be visible to all the users in servicenow and also for some user I want to give full access on form so they can edit the form.How t achieve it using ACL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2017 04:01 PM
Hi,
Check the associated ACLs on the custom table. Edit the read ACL wit the the script "answer = true" so that it allows all the users to read the records without any conditions. Edit the write ACL script with the required logic so that the particular users will be able to edit them.
Regards,
Sagar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2017 06:35 PM
Hi SG,
You have to create:
1) Table Level Access Controls:
<custom_table_name>.none
a)Read Operation -> Provide Role "public"
b)Write Operation -> Provide access to only few users(Create a role for these users and add in roles section)
2) Field Level Access Controls:
<custom_table_name>.*
a)Read Operation -> Provide Role "public"
b)Write Operation -> Provide access to only few users(Create a role for these users and add in roles section)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2017 08:35 PM
Hi,
Also to add, set the roles as ITIL in the "Application Menu" for your custom table.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2017 09:07 PM