<?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 Re: Remote Function Module problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-function-module-problem/m-p/4559232#M1076223</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pls check the mapping in SAP XI&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;MD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Sep 2008 11:58:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-22T11:58:31Z</dc:date>
    <item>
      <title>Remote Function Module problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-function-module-problem/m-p/4559230#M1076221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;   I have written a Se38 progarm to execute a remote function module, so as to send some data out of the system. The receiving system is an XI system. Pls see below the code and the &lt;STRONG&gt;load at the XI end&lt;/STRONG&gt;, I donno why and what mistake am I doing in the se38 program part, as a result of which, only part of the data is getting send to XI. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZRFC_ADAPTER.&lt;/P&gt;&lt;P&gt;Data: it_final1 type standard table of zrfc_str with header line .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      it_final1-NAME = 'ARNAB'.&lt;/P&gt;&lt;P&gt;      it_final1-ADDRESS = 'ADDRESS'.&lt;/P&gt;&lt;P&gt;      it_final1-EMAIL   = 'EMAIL'.&lt;/P&gt;&lt;P&gt;      it_final1-ID  = 'ID'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZRFC_XI'&lt;/P&gt;&lt;P&gt;IN BACKGROUND TASK DESTINATION&lt;/P&gt;&lt;P&gt;'R32XIRFC'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;username = sy-uname&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;it_final = it_final1 .&lt;/P&gt;&lt;P&gt;break-point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COMMIT WORK.&lt;/P&gt;&lt;P&gt;Clear it_final1.&lt;/P&gt;&lt;P&gt;I have seen in debugging mode, after removing the "&lt;/P&gt;&lt;P&gt;IN BACKGROUND TASK DESTINATION&lt;/P&gt;&lt;P&gt;'R32XIRFC'", that the internal table " it_final1 " is working fine......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The structure used in remote Function Module is &lt;/P&gt;&lt;P&gt;IT_FINAL LIKE ZRFC_STR -- in tables parameter. and the structure of ZRFC_STR is as follows!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NAME ZNAME CHAR 14 &lt;/P&gt;&lt;P&gt;ADDRESS ZADDRESS CHAR 40&lt;/P&gt;&lt;P&gt;TELEPHONE ZTEL CHAR 20&lt;/P&gt;&lt;P&gt;EMAIL ZEMAIL CHAR 40 &lt;/P&gt;&lt;P&gt;ID ZID CHAR 10 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that , apart from a COMMIT WORK statement, there is no other coding done in the SOURCE CODE part of the remote Function Module. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The load in XI is showing as&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt; &amp;lt;?xml version="1.0" encoding="UTF-8" ?&amp;gt; &lt;/P&gt;&lt;P&gt;- &amp;lt;rfc:ZRFC_XI xmlns:rfc="urn:sap-com:document:sap:rfc:functions"&amp;gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;USERNAME&amp;gt;RETAILDEV&amp;lt;/USERNAME&amp;gt; &lt;/P&gt;&lt;P&gt;- &amp;lt;IT_FINAL&amp;gt;&lt;/P&gt;&lt;P&gt;- &amp;lt;item&amp;gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;&amp;lt;NAME&amp;gt;ARNAB&amp;lt;/NAME&amp;gt;&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;&amp;lt;ADDRESS&amp;gt;EMAIL&amp;lt;/ADDRESS&amp;gt;&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;  &amp;lt;EMAIL /&amp;gt; &lt;/P&gt;&lt;P&gt;  &amp;lt;ID /&amp;gt; &lt;/P&gt;&lt;P&gt;  &amp;lt;/item&amp;gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;/IT_FINAL&amp;gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;/rfc:ZRFC_XI&amp;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;Note that EMAIL is actually a content of field EMAIL and not ADDRESS. But I donno why, it is behaving like this,,&lt;/P&gt;&lt;P&gt;Pls note, this RFC has been imported completely in integration repository of XI, so we dont have to worry about any settings change or activities, left pending in XI.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    I am very sure, something is missing in the se38 code, pls suggest!!&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arnab .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 07:25:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-function-module-problem/m-p/4559230#M1076221</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T07:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: Remote Function Module problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-function-module-problem/m-p/4559231#M1076222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you should do an APPEND to your internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like it is written now, you only fill the header of the table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 11:55:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-function-module-problem/m-p/4559231#M1076222</guid>
      <dc:creator>franois_henrotte</dc:creator>
      <dc:date>2008-09-22T11:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: Remote Function Module problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-function-module-problem/m-p/4559232#M1076223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pls check the mapping in SAP XI&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;MD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 11:58:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-function-module-problem/m-p/4559232#M1076223</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T11:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Remote Function Module problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-function-module-problem/m-p/4559233#M1076224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Francois, I am so sorry, I missed out the part of the code, I did do the append part, but missed out at the time of copy pasting the same in SDN . Gud observation, but unfortunately, that was not at all the issue, ....still did nt make it!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 14:53:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-function-module-problem/m-p/4559233#M1076224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T14:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Remote Function Module problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-function-module-problem/m-p/4559234#M1076225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Madhan, there is nothin to do wid the mapping as the loiad that I have displayed is the status of the load, before enteriing the mapping logic!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Arnab Mondal on Sep 22, 2008 4:54 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 14:54:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-function-module-problem/m-p/4559234#M1076225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T14:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Remote Function Module problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remote-function-module-problem/m-p/4559235#M1076226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wrong forum to ask I suppose !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2008 06:03:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remote-function-module-problem/m-p/4559235#M1076226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-23T06:03:38Z</dc:date>
    </item>
  </channel>
</rss>

