- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-03-2016 02:23 PM
I have a business rule that deletes user role in scoped application. It works fine but throws this error message "Delete operation against 'sys_user_has_role' from scope 'x_23191_e_c_c' has been refused due to the table's cross-scope access policy" which is confusing for end users. Anu suggestions?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-03-2016 02:26 PM
Hello Sameer,
Delete operation is restricted from other scope on Global table "sys_user_has_role". You need to set delete checkbox to true incase you want "delete" persmissions to be opened for other scopes.
http://wiki.servicenow.com/index.php?title=Application_Access_Settings

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-03-2016 02:26 PM
Hello Sameer,
Delete operation is restricted from other scope on Global table "sys_user_has_role". You need to set delete checkbox to true incase you want "delete" persmissions to be opened for other scopes.
http://wiki.servicenow.com/index.php?title=Application_Access_Settings
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-03-2016 02:31 PM
Thanks Pradeep. That solves my question.