Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

CALL_FUNCTION_REMOTE_ERROR dump at RECEIVE RESULTS FROM FUNCTION

Former Member
0 Kudos

Hello ABAP experts!

I am getting the dump CALL_FUNCTION_REMOTE_ERROR when receiving results.

This is my code..

Got the dump when executing the line RECEIVE RESULTS FROM FUNCTION.

I only encounter the dump when processing thousands of records.

For few records, it works perfectly fine.

Also, when I have multiple jobs, for the first few call of this RECEIVE RESULTS, I got no dump but after few more run of this line, that's when I get CALL_FUNCTION_REMOTE_ERROR.

Any idea why is this happening and how to solve it?

Please help... Thanks!

Regards,

Charm

4 REPLIES 4

Mohamed_Mukhtar
Active Contributor
0 Kudos

Hello Charmi,

The Call Function fname Starting new task statement creates dialogue work process.

The idle Time Limit  will be set for dialogue users (approximately 3600 secs) .

Since the volume of data is more and then timeout is happening. This may be one of the reason for CALL_FUNCTION_REMOTE_ERROR.

Thanks

0 Kudos

Hi Always Learner,

Do you any suggestion on how to resolve this?

Thanks!

Sandeep_Kumar
Advisor
Advisor
0 Kudos

Best way to identify the problem is too debug the RFC in remote system and you can find the short dump details in ST22.

Former Member
0 Kudos

Hi Charm,

There might be 2 reasons.

1.As mentioned by Always learner above.

2.Check the Z RFC function module.Inside the program for improving the performance they might have set some conditions like process only so and so data if more abend.It happens in most of the Zfunction modules.Please debug or read through the comments.

Hope it will be helpful.

Regards,

Kannan