cancel
Showing results for 
Search instead for 
Did you mean: 

webdynpro Application and RFC problem

Former Member
0 Kudos

Hi all,

I have a webdynpro application that has a model with a RFC that allow users store a file into the disk, but when I try to run the application and pressed the button that make the call to the RFC I get the following error:

Exception condition "NO BATCH" raised, error key: RFC_ERROR_SYSTEM_FAILURE

Does anyone know anything about this error?..Please help me!

Thanks in advance,

Jesus.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

What is the RFC that you are trying to call. Well the function module has thrown a short dump in the ABAP stack. If there is a problem like what rich had mentioned, see if you can make a copy of that function module (i.e if it is standard) and then change that line of code and see.

regards

Ravi

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Looks like you are calling an RFC function module which has an exception call NO_BATCH. There is probably a line of code in the function module like this.

if sy-batch = 'X'.
raise NO_BATCH.
endif.

In this case, I don't think that you can call this function module.

Regards,

Rich Heilman