<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ABAP Dump error while doing RFC-XI-WEBSERVICE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-while-doing-rfc-xi-webservice/m-p/2940790#M693268</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts ,&lt;/P&gt;&lt;P&gt;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. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But while executing the function module i am getting the error:_&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_________________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime Errors         CALL_FUNCTION_REMOTE_ERROR&lt;/P&gt;&lt;P&gt;Date and Time          09.10.2007 16:28:34&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ShrtText&lt;/P&gt;&lt;P&gt;     "Server repository could not create function template for&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; What happened?&lt;/P&gt;&lt;P&gt;     Error in ABAP application program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     The current ABAP program "Z_WEBSERVICE_TEST_SARAS=======FT" had to be&lt;/P&gt;&lt;P&gt;      terminated because one of the&lt;/P&gt;&lt;P&gt;     statements could not be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     This is probably due to an error in the ABAP program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     The error occurred in an RFC call to another system.&lt;/P&gt;&lt;P&gt;     The target system has also written a short dump.&lt;/P&gt;&lt;P&gt;     Consult this short dump for more precise information about&lt;/P&gt;&lt;P&gt;     the cause of the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Error analysis&lt;/P&gt;&lt;P&gt;     An error occurred when executing a REMOTE FUNCTION CALL.&lt;/P&gt;&lt;P&gt;     It was logged under the name "RFC_EXTERNAL_ABORT"&lt;/P&gt;&lt;P&gt;     on the called page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Trigger Location of Runtime Error&lt;/P&gt;&lt;P&gt;     Program                                 Z_WEBSERVICE_TEST_SARAS=======FT&lt;/P&gt;&lt;P&gt;     Include                                 Z_WEBSERVICE_TEST_SARAS=======FT&lt;/P&gt;&lt;P&gt;Runtime Errors         CALL_FUNCTION_REMOTE_ERROR&lt;/P&gt;&lt;P&gt;Date and Time          09.10.2007 16:28:34&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Row                                     68&lt;/P&gt;&lt;P&gt;     Module type                             (FORM)&lt;/P&gt;&lt;P&gt;     Module Name                             FUNCTION_CALL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Source Code Extract&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Line  SourceCde&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    38 DATA: %_VDISTANCE TYPE CHAR10.&lt;/P&gt;&lt;P&gt;    39 FORM EXISTENCE_CHECK CHANGING VARIA.&lt;/P&gt;&lt;P&gt;    40   VARIA = 1.&lt;/P&gt;&lt;P&gt;    41 ENDFORM.&lt;/P&gt;&lt;P&gt;    42 FORM FUNCTION_CALL.&lt;/P&gt;&lt;P&gt;    43   CLEAR %_ODISTANCE.&lt;/P&gt;&lt;P&gt;    44 *  TRANSAKTION = 'Repo', PROGRAM = REPORT&lt;/P&gt;&lt;P&gt;    45   IF ATRA = '1'.&lt;/P&gt;&lt;P&gt;    46     SET RUN TIME ANALYZER ON %_INTERNAL.&lt;/P&gt;&lt;P&gt;    47   ENDIF.&lt;/P&gt;&lt;P&gt;    48 IF DESTI IS INITIAL.&lt;/P&gt;&lt;P&gt;    49 IF DEBUG = '1'. BREAK-POINT AT NEXT APPLICATION STATEMENT.&lt;/P&gt;&lt;P&gt;    50 ENDIF.&lt;/P&gt;&lt;P&gt;    51 DEBUG = SPACE.&lt;/P&gt;&lt;P&gt;    52 GET RUN TIME FIELD TIME1.&lt;/P&gt;&lt;P&gt;    53 CALL FUNCTION 'Z_WEBSERVICE_TEST_SARAS'&lt;/P&gt;&lt;P&gt;    54 EXPORTING&lt;/P&gt;&lt;P&gt;    55 FROMZIP = %_IFROMZIP&lt;/P&gt;&lt;P&gt;    56 TOZIP = %_ITOZIP&lt;/P&gt;&lt;P&gt;    57 IMPORTING&lt;/P&gt;&lt;P&gt;    58 DISTANCE = %_ODISTANCE.&lt;/P&gt;&lt;P&gt;    59   IF ATRA = '1'.&lt;/P&gt;&lt;P&gt;    60     SET RUN TIME ANALYZER OFF %_INTERNAL.&lt;/P&gt;&lt;P&gt;    61   ENDIF.&lt;/P&gt;&lt;P&gt;______________________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;looking forward to your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SARAS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Oct 2007 11:01:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-09T11:01:39Z</dc:date>
    <item>
      <title>ABAP Dump error while doing RFC-XI-WEBSERVICE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-while-doing-rfc-xi-webservice/m-p/2940790#M693268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts ,&lt;/P&gt;&lt;P&gt;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. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But while executing the function module i am getting the error:_&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_________________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime Errors         CALL_FUNCTION_REMOTE_ERROR&lt;/P&gt;&lt;P&gt;Date and Time          09.10.2007 16:28:34&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ShrtText&lt;/P&gt;&lt;P&gt;     "Server repository could not create function template for&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; What happened?&lt;/P&gt;&lt;P&gt;     Error in ABAP application program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     The current ABAP program "Z_WEBSERVICE_TEST_SARAS=======FT" had to be&lt;/P&gt;&lt;P&gt;      terminated because one of the&lt;/P&gt;&lt;P&gt;     statements could not be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     This is probably due to an error in the ABAP program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     The error occurred in an RFC call to another system.&lt;/P&gt;&lt;P&gt;     The target system has also written a short dump.&lt;/P&gt;&lt;P&gt;     Consult this short dump for more precise information about&lt;/P&gt;&lt;P&gt;     the cause of the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Error analysis&lt;/P&gt;&lt;P&gt;     An error occurred when executing a REMOTE FUNCTION CALL.&lt;/P&gt;&lt;P&gt;     It was logged under the name "RFC_EXTERNAL_ABORT"&lt;/P&gt;&lt;P&gt;     on the called page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Trigger Location of Runtime Error&lt;/P&gt;&lt;P&gt;     Program                                 Z_WEBSERVICE_TEST_SARAS=======FT&lt;/P&gt;&lt;P&gt;     Include                                 Z_WEBSERVICE_TEST_SARAS=======FT&lt;/P&gt;&lt;P&gt;Runtime Errors         CALL_FUNCTION_REMOTE_ERROR&lt;/P&gt;&lt;P&gt;Date and Time          09.10.2007 16:28:34&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Row                                     68&lt;/P&gt;&lt;P&gt;     Module type                             (FORM)&lt;/P&gt;&lt;P&gt;     Module Name                             FUNCTION_CALL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Source Code Extract&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Line  SourceCde&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    38 DATA: %_VDISTANCE TYPE CHAR10.&lt;/P&gt;&lt;P&gt;    39 FORM EXISTENCE_CHECK CHANGING VARIA.&lt;/P&gt;&lt;P&gt;    40   VARIA = 1.&lt;/P&gt;&lt;P&gt;    41 ENDFORM.&lt;/P&gt;&lt;P&gt;    42 FORM FUNCTION_CALL.&lt;/P&gt;&lt;P&gt;    43   CLEAR %_ODISTANCE.&lt;/P&gt;&lt;P&gt;    44 *  TRANSAKTION = 'Repo', PROGRAM = REPORT&lt;/P&gt;&lt;P&gt;    45   IF ATRA = '1'.&lt;/P&gt;&lt;P&gt;    46     SET RUN TIME ANALYZER ON %_INTERNAL.&lt;/P&gt;&lt;P&gt;    47   ENDIF.&lt;/P&gt;&lt;P&gt;    48 IF DESTI IS INITIAL.&lt;/P&gt;&lt;P&gt;    49 IF DEBUG = '1'. BREAK-POINT AT NEXT APPLICATION STATEMENT.&lt;/P&gt;&lt;P&gt;    50 ENDIF.&lt;/P&gt;&lt;P&gt;    51 DEBUG = SPACE.&lt;/P&gt;&lt;P&gt;    52 GET RUN TIME FIELD TIME1.&lt;/P&gt;&lt;P&gt;    53 CALL FUNCTION 'Z_WEBSERVICE_TEST_SARAS'&lt;/P&gt;&lt;P&gt;    54 EXPORTING&lt;/P&gt;&lt;P&gt;    55 FROMZIP = %_IFROMZIP&lt;/P&gt;&lt;P&gt;    56 TOZIP = %_ITOZIP&lt;/P&gt;&lt;P&gt;    57 IMPORTING&lt;/P&gt;&lt;P&gt;    58 DISTANCE = %_ODISTANCE.&lt;/P&gt;&lt;P&gt;    59   IF ATRA = '1'.&lt;/P&gt;&lt;P&gt;    60     SET RUN TIME ANALYZER OFF %_INTERNAL.&lt;/P&gt;&lt;P&gt;    61   ENDIF.&lt;/P&gt;&lt;P&gt;______________________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;looking forward to your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SARAS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2007 11:01:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-while-doing-rfc-xi-webservice/m-p/2940790#M693268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-09T11:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Dump error while doing RFC-XI-WEBSERVICE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-while-doing-rfc-xi-webservice/m-p/2940791#M693269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It may be due to rfc connection failure or .&lt;/P&gt;&lt;P&gt;before executing this programe test rfc connection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the detailed description in ST22.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign points if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2007 11:31:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-dump-error-while-doing-rfc-xi-webservice/m-p/2940791#M693269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-09T11:31:03Z</dc:date>
    </item>
  </channel>
</rss>

