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: 

ABAP Dump error while doing RFC-XI-WEBSERVICE

Former Member
0 Kudos

Hello Experts ,

I am a XI consultant . During implementation of one of my scenarion i got an ABAP Dump error which i am not able to rectify. Below is the error.

I have made a function module Z_WEBSERVICE_TEST_SARAS in which i have given import parameters , export parameters correctly given . This function module is being called by a report in which i give rfc destination which i specified in SM59.

But while executing the function module i am getting the error:_

_________________

Runtime Errors CALL_FUNCTION_REMOTE_ERROR

Date and Time 09.10.2007 16:28:34

ShrtText

"Server repository could not create function template for

What happened?

Error in ABAP application program.

The current ABAP program "Z_WEBSERVICE_TEST_SARAS=======FT" had to be

terminated because one of the

statements could not be executed.

This is probably due to an error in the ABAP program.

The error occurred in an RFC call to another system.

The target system has also written a short dump.

Consult this short dump for more precise information about

the cause of the error.

Error analysis

An error occurred when executing a REMOTE FUNCTION CALL.

It was logged under the name "RFC_EXTERNAL_ABORT"

on the called page.

Trigger Location of Runtime Error

Program Z_WEBSERVICE_TEST_SARAS=======FT

Include Z_WEBSERVICE_TEST_SARAS=======FT

Runtime Errors CALL_FUNCTION_REMOTE_ERROR

Date and Time 09.10.2007 16:28:34

Row 68

Module type (FORM)

Module Name FUNCTION_CALL

Source Code Extract

Line SourceCde

38 DATA: %_VDISTANCE TYPE CHAR10.

39 FORM EXISTENCE_CHECK CHANGING VARIA.

40 VARIA = 1.

41 ENDFORM.

42 FORM FUNCTION_CALL.

43 CLEAR %_ODISTANCE.

44 * TRANSAKTION = 'Repo', PROGRAM = REPORT

45 IF ATRA = '1'.

46 SET RUN TIME ANALYZER ON %_INTERNAL.

47 ENDIF.

48 IF DESTI IS INITIAL.

49 IF DEBUG = '1'. BREAK-POINT AT NEXT APPLICATION STATEMENT.

50 ENDIF.

51 DEBUG = SPACE.

52 GET RUN TIME FIELD TIME1.

53 CALL FUNCTION 'Z_WEBSERVICE_TEST_SARAS'

54 EXPORTING

55 FROMZIP = %_IFROMZIP

56 TOZIP = %_ITOZIP

57 IMPORTING

58 DISTANCE = %_ODISTANCE.

59 IF ATRA = '1'.

60 SET RUN TIME ANALYZER OFF %_INTERNAL.

61 ENDIF.

______________________

looking forward to your help.

Regards

SARAS

1 REPLY 1

Former Member
0 Kudos

Hi,

It may be due to rfc connection failure or .

before executing this programe test rfc connection.

see the detailed description in ST22.

Assign points if useful.