<?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: transfer table through RFC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-table-through-rfc/m-p/2119481#M444023</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YOu can use the RFC enabled FM : RFC_READ_TABLE.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Apr 2007 12:14:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-19T12:14:00Z</dc:date>
    <item>
      <title>transfer table through RFC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-table-through-rfc/m-p/2119479#M444021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;I am an ABAP beginner....&lt;/P&gt;&lt;P&gt;please get me a example program on how to transfer a table that does not exist in 1 server but exists in the other through RFC...for eg take 2 servers as ECC and BIW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it would be helpful if u explain me with all the steps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 11:57:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-table-through-rfc/m-p/2119479#M444021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T11:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: transfer table through RFC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-table-through-rfc/m-p/2119480#M444022</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;check this program !! i am calling the function module &amp;lt;b&amp;gt;ZBAPI_COMPANY_CODE &amp;lt;/b&amp;gt; which is in &amp;lt;b&amp;gt;R3S system&amp;lt;/b&amp;gt; from my &amp;lt;b&amp;gt;R3X system&amp;lt;/b&amp;gt; ... for this i need to have a destination defined in R3X system to R3S system !! all the destinations are stored in &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;RFCDES&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt; table...&lt;/P&gt;&lt;P&gt;you can define your own destination in &amp;lt;b&amp;gt;SM59&amp;lt;/b&amp;gt; transaction..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*"Selection screen elements............................................&lt;/P&gt;&lt;P&gt;Parameters : p_matnr type mara-matnr value check.&lt;/P&gt;&lt;P&gt;                                       " Material number&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Declaration of fieldstring to hold material data...&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data :&lt;/P&gt;&lt;P&gt;  begin of fs_material,&lt;/P&gt;&lt;P&gt;    matnr  type mara-matnr,            " Material Number&lt;/P&gt;&lt;P&gt;    mfrnr  type mara-mfrnr,            " Manufacturar number&lt;/P&gt;&lt;P&gt;  end   of fs_material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Declaration of Internal table to hold material data...&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data&lt;/P&gt;&lt;P&gt;  t_material like standard table&lt;/P&gt;&lt;P&gt;              of fs_material&lt;/P&gt;&lt;P&gt;         initial size 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;  w_dest(30)  type c value &amp;lt;b&amp;gt;'R3S800'&amp;lt;/b&amp;gt;,   " Destination for R3S system &lt;/P&gt;&lt;P&gt;  w_function(30) type c&lt;/P&gt;&lt;P&gt;                 value 'ZBAPI_COMPANY_CODE'.&lt;/P&gt;&lt;P&gt;*BAPI function module name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Return structure which holds the Messages from Bapi Function module..&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;  fs_return type bapireturn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONDENSE W_DEST NO-GAPS.&lt;/P&gt;&lt;P&gt;translate p_matnr to upper case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Calling the RFC function module...&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call function w_function&lt;/P&gt;&lt;P&gt;     destination w_dest&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; exporting matnr  = p_matnr&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; importing return = fs_return&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; tables t_material = t_material.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Displaying message if received...&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;if fs_return is not initial.&lt;/P&gt;&lt;P&gt;  write : / fs_return-type , fs_return-message.&lt;/P&gt;&lt;P&gt;endif.                                 " If fs_return is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Displaying materials and manufacturer's number if exists...&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;if t_material is not initial.&lt;/P&gt;&lt;P&gt;  loop at t_material into fs_material.&lt;/P&gt;&lt;P&gt;    write : / fs_material-matnr, fs_material-mfrnr.&lt;/P&gt;&lt;P&gt;  endloop.                             " Loop at t_material...&lt;/P&gt;&lt;P&gt;endif.                                 " If t_material is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward all helpful answers,&lt;/P&gt;&lt;P&gt;sai ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 12:08:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-table-through-rfc/m-p/2119480#M444022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T12:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: transfer table through RFC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-table-through-rfc/m-p/2119481#M444023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YOu can use the RFC enabled FM : RFC_READ_TABLE.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 12:14:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-table-through-rfc/m-p/2119481#M444023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T12:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: transfer table through RFC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-table-through-rfc/m-p/2119482#M444024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sai ramesh&lt;/P&gt;&lt;P&gt;thank u for ur answer&lt;/P&gt;&lt;P&gt;but it would be better if u get me an easier example than this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 12:37:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-table-through-rfc/m-p/2119482#M444024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T12:37:54Z</dc:date>
    </item>
  </channel>
</rss>

