- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2024 11:14 AM
Is there a delivered report that shows which roles grant access to a table. I do security administration for our ERP and the ability to easily look that granular access up comes in very handy. I'm not seeing a way to do it in ServiceNow and haven't been able to find any posts asking for it.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2024 11:53 AM
I think your closest bet would be to pull a list on the Access roles table.
It will show the ACLs to which each role has access and thus also the tables.
Note that the list will also contain specific fields on the table so you may want to exclude those afterwards in excel to have a clean list.
Steps:
1. Open filter navigator and type sys_security_acl_role.list
2. Search for the related role
Example:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2024 01:41 PM
Unfortunately not without creating a database view.
If my post helped you, please click the accept solution button and hit the thumbs up! Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2024 11:53 AM
I think your closest bet would be to pull a list on the Access roles table.
It will show the ACLs to which each role has access and thus also the tables.
Note that the list will also contain specific fields on the table so you may want to exclude those afterwards in excel to have a clean list.
Steps:
1. Open filter navigator and type sys_security_acl_role.list
2. Search for the related role
Example:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2024 01:32 PM
That seems simplest. Is there a table for groups? That would probably work even better.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2024 01:41 PM
Unfortunately not without creating a database view.
If my post helped you, please click the accept solution button and hit the thumbs up! Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2024 12:43 PM
That did the trick and I can run a report that way. Thank you.