How to resolve this error "Read operation on table 'sn_hr_core_case_workforce_admin' from "global"
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2023 07:10 AM
Hi All,
How to resolve below error
Read operation on table 'sn_hr_core_case_workforce_admin' from scope 'Global' was denied because the source could not be found. Please contact the application admin.
7 REPLIES 7

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2023 12:38 PM
Try this
var val = '';
var date = new GlideRecord('question_answer');
date.addQuery('table_sys_id', 'e8d2c4a71b8e3d901eeafc07cb4bcbe5');
date.addQuery('question', 'ad28230f1bccb9501eeafc07cb4bcb61');
date.query();
if(date.next()){
val = date.getValue('value');
gs.info('Date value '+date.getValue('value'));
}
// template.print(gs.getMessage(val));
template.print(val);
Check if the value gets printed in log.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2023 12:42 PM

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2023 12:48 PM
@Prathamesh Cha1 Did any value print in System log? I added a gs.info in the script.