- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2018 03:07 AM
Hi All,
below script in not working, table is scoped app, i am trying to access it from global
tried script include as well.
var ess=new GlideRecord('sn_xxxx_request_temp');
ess.addQuery('u__id',id);
ess.query();
var count=ess.getRowCount();
if(count>=1 )
{
}
count is zero.
Thanks,
Pritam
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2018 03:08 AM
You can't do that from Global Scope, you have to go into that scope before being able to write.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2018 03:08 AM
You can't do that from Global Scope, you have to go into that scope before being able to write.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2018 09:55 PM
I have written business rule in scoped app as well, but still it is not working
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2018 05:28 AM
Switch to the scope of that table.
OR
Also please check Application access for the table. it should be "All application scope" and can read should be selected.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2018 09:56 PM
How to check application access, tried opening application form but didnt see can read.