- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2018 03:01 PM
I have a scoped application that I am trying to have access a table in the global application. I have set up the cross scope privileges and I don't have an issue access other tables from Global just that one. Any idea on what might be going on? here are some screen shots to help.
cross scope privilege set up
user access list on global
Solved! Go to Solution.
- Labels:
-
Scoped App Development

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2018 03:21 PM
To confirm whether you are able to access the custom global table via the scoped app or not. You can follow the below steps.
1. Navigate to background-scripts and execute the below script.
var gr = new GlideRecord('u_user_access_list');
gr.addQuery('u_user', 'bdb4e9601341b2006bda75c36144b062');
gr.addQuery('active', true);
gr.query();
while(gr.next())
{
gs.info(gr.getRowCount());
}
NOTE: Make sure to select the correct scope before triggering this script.
Thanks,
Pradeep Sharma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2018 03:29 PM
thanks for pointing me in the right direction, it wasn't working because 'active' should have been 'u_active'. F!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2018 04:05 PM
You are very welcome Kazidon. I'm glad your issue is resolved now.
Thanks for participating in the community!
-Pradeep Sharma