cancel
Showing results for 
Search instead for 
Did you mean: 

xsjs failed with error(s): undefined is not a function (line 0 position 1 in ?)

Former Member
0 Kudos

I have created a XSJS script and it runs well if I execute if from HANA studio or Web IDE, but when I schedule the job, it errors out with following message :

xsjs failed with error(s): undefined is not a function (line 0 position 1 in ?)

This is how my xsjob looks like:

{

"description": "Hello",

"action": "ODATA_SVC:TestHCIContacts_Multiload1.xsjs::",

"schedules": [

{ "description": "new job", "xscron": "* * * * 22 10 0" }

]

}

My XSJS script does not have any parameter or a function.

If I use "action": "ODATA_SVC:TestHCIContacts_Multiload1.xsjs" in my xsjob the job does not activate. It gives parsing error for action.

Any help to resolve this issue is highly appreciated.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member

I was able to resolve this issue.

I had to edit my xsjs file and enclose entire xsjs script in a function block

function My_Test()

{

.......xsjs script

}

and then I updated my xsjob file

{

"description": "Hello",

"action": "mypkg:Test.xsjs::My_Test",

"schedules": [

{ "description": "new job", "xscron": "* * * * 18 50 0" }

]

}

SergioG_TX
Active Contributor
0 Kudos

indeed you must specify the name of the function you need to run - good catch on your own question 🙂