Reputation: 4814
Read operation on table 'sn_hr_integrations_todo_inbound' from scope 'Human Resources: Service Portal' was denied. The application 'Human Resources: Service Portal' must declare a cross scope access privilege. Please contact the application admin to update their access requests.
I've modified the OOB widget "HRM Todos Summary" and It is causing the below error.
I tried the following things:
Help is appricatiated.
Upvotes: 0
Views: 4468
Reputation: 11
you can also use this script to bulk update from sys.scripts.do
function rca () {
var gr = new GlideRecord('sys_restricted_caller_access');
gr.addQuery('status', '!=', 2);
gr.query();
while(gr.next()) {
gr.status = 2;
gr.update();
}
}
rca();
Upvotes: 1
Reputation: 4814
Found the issue: Instead of "Human Resources: Integrations" scope I was trying on Global.
Upvotes: 0