- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hello,
I need assistance in granting a Business Management group the ability to create, modify, and delete records in the question_choice table.
Here’s what I’ve done so far:
I created a role and assigned it to the Business Management group.
I created Create and Write ACLs for the question_choice table and assigned the role to them.
However, when I impersonate a user who belongs to this group, she is unable to create a record. The New button is missing:
Can you please advise on what I might be missing or if there are additional steps needed? Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Instead of table.* Use table.none and create the ACL
In the ACL record name instead of * use None
Regards
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Instead of table.* Use table.none and create the ACL
In the ACL record name instead of * use None
Regards
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday - last edited yesterday
Table.none grants row/record-level access to a table while Table.* grants field-level access to a table.
The way ServiceNow applies ACLs, it typically will require row/record level access before you can have field-level access, so Table.* doesn't do anything without Table.none.