Error:Source descriptor is empty while recording access for table sn_hr_core_topic_detail: no thrown error

Madhu5
Tera Contributor

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.

11 REPLIES 11

N Poorna sai p1
Tera Contributor

Hi shivanand

Iam also facing the same issue. Please let me know how did you fixed it.

Thanks!

Michael223
Tera Contributor

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.