cancel
Showing results for 
Search instead for 
Did you mean: 

Function Module call failed in personas 3.0

Former Member
0 Kudos

Hello Team,

I am calling remote enabled FM from personas 3.0 javascript. when I click on first time I am getting this error "Function module call failed", when I click on second time it is navigating to the flavour. could u please suggest me the solution.

Regards,

Sunayanah

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Steve,

PFA code.

Regards,

Sunayanah

Former Member
0 Kudos

Your code looks correct to me, and it seems to work as expected in my system. Are you up to date with Personas and kernel patches? It could be that there was a bug that has been fixed recently.

There is one bug I can see in your script, though - your line 'if(temp_def != "")' won't do what you expect. If you don't find the parameter, temp_def will be undefined, which isn't equal to the empty string. Try 'if(!tem_def)' instead.

Steve.

Former Member
0 Kudos

New Back-end Fixes
The following SAP Note, including an important correction, has been released and should be implemented to address the below mentioned problem:

Former Member
0 Kudos

It would help a lot if you could share your script. It is hard to debug a script you can't see...