cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP Dump error while executing RFC-XI _WEBSERVICE scenario

Former Member
0 Kudos

Hello Experts ,

During implementation 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

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Possible cause of the error CALL_FUNCTION_REMOTE_ERROR is

while executing the RFC, an error occurred that has been logged in the calling system.

http://help.sap.com/saphelp_nw04/helpdata/en/f9/3f69fd11a80b4e93a5c9230bafc767/frameset.htm

Former Member
0 Kudos

Hi,

possible solution could be a ConversionException in you RFC Adapter because of mismatching data types in your source and receiver message.

Just goto RWB an monitor the Processing Details for Cluster Node Server of your adapter in the Channel Monitoring.

Afterwards you have to adjust your importing or exporting structure of the used RFC function module.

Cheers,

André

Former Member
0 Kudos

If your FM is remote -enabled , goto your RFC Destination using SM59 and do Test Connection...

It should be successfull.

Regards

Pravesh

Former Member
0 Kudos

Hi saras,

I guess ur FM is not remote enabled.Go to SE 37 make ur FM remote enabled and try to execute the FM from Report.

Regards

BILL

Former Member
0 Kudos

It seems that RFC meta data repository parameter is not correct. Please check that and very the access details.

Regards,

Alok.

Former Member
0 Kudos

Hi,

Check if your RFC is remote enabled.

This will help you.

http://help.sap.com/saphelp_nw04/helpdata/en/f9/3f69fd11a80b4e93a5c9230bafc767/frameset.htm

Regards,

AKshay.

    • Reward points if find useful.

null