Error:Source descriptor is empty while recording access for table sn_hr_core_topic_detail: no thrown error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-20-2020 11:16 PM
Hi All,
I have the following error in the error logs.Could you please assist on how to work on this.Please explain in detail as I have no knowledge on HR.
- 7,559 Views
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-02-2021 02:57 AM
Hi shivanand
Iam also facing the same issue. Please let me know how did you fixed it.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-14-2023 02:43 PM
I've had the exact same issue. As far as I understand it, the following might have happened:
I had a script Include Function:
execute_action: function(actionSystemName, current)
my function call was:
actionUtils.execute_action("some action name"); <---- current is missing
The result was that the current object is undefined and this results in the error that the source for the restricted caller access cannot be found which then results in an error being thrown and the access being denied.
So we have the following errors:
The current Object doesn't have to be given as parameter. It is available if the source script has it.
The current Object shouldn't be overwritten to prevent the loss of required data, like the source scope.
The Thread is pretty old so maybe it helps others in the future.