<?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 FUNCTION MODULE TO TRANSFER DATA FROM INT TABLE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-data-from-int-table/m-p/1598805#M268869</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DEAR all,&lt;/P&gt;&lt;P&gt;I am trying to build a function module to tranfer data from a internal table created through a program to an unix table on a different server, I know i may have to use RFC but can some one give me step by procedure to achive this.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;VJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Sep 2006 20:48:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-26T20:48:47Z</dc:date>
    <item>
      <title>FUNCTION MODULE TO TRANSFER DATA FROM INT TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-data-from-int-table/m-p/1598805#M268869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DEAR all,&lt;/P&gt;&lt;P&gt;I am trying to build a function module to tranfer data from a internal table created through a program to an unix table on a different server, I know i may have to use RFC but can some one give me step by procedure to achive this.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;VJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 20:48:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-data-from-int-table/m-p/1598805#M268869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T20:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION MODULE TO TRANSFER DATA FROM INT TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-data-from-int-table/m-p/1598806#M268870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Exactly...You must create a RFC enabled FM and use a TABLES parameter...Actually, you could just use &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;RFC_READ_TABLE&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;...or copied it and modified it according to your needs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="/people/alvaro.tejadagalindo/blog/2006/02/17/tasting-the-mix-of-php-and-sap the mix of PHP and SAP&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="/people/alvaro.tejadagalindo/blog/2006/08/24/tasting-the-mix-of-ruby-and-sap the mix of Ruby and SAP&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 21:48:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-data-from-int-table/m-p/1598806#M268870</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T21:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION MODULE TO TRANSFER DATA FROM INT TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-data-from-int-table/m-p/1598807#M268871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. create a structure similar to the fields of the internal table (itab).&lt;/P&gt;&lt;P&gt;while declaring the internal table include structure you created.&lt;/P&gt;&lt;P&gt;2. create function module 'Z_CUST_RFC' as remote enabled&lt;/P&gt;&lt;P&gt;in the tables section add the structure you created and add eceptions as shown in below call function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. provide RFC destination s_rfcdes-low and call  &lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'Z_CUST_RFC'&lt;/P&gt;&lt;P&gt;        DESTINATION s_rfcdes-low&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          employee              = itab&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;          communication_failure = 1  MESSAGE w_msg_text&lt;/P&gt;&lt;P&gt;          system_failure        = 2  MESSAGE w_msg_text&lt;/P&gt;&lt;P&gt;          OTHERS                = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;        WRITE: w_msg_text.&lt;/P&gt;&lt;P&gt;        ROLLBACK WORK.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        WRITE: 'O.K.'.&lt;/P&gt;&lt;P&gt;        COMMIT WORK.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nataraju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2006 21:49:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-transfer-data-from-int-table/m-p/1598807#M268871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-26T21:49:54Z</dc:date>
    </item>
  </channel>
</rss>

