<?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: Function Module with RFC for accessing tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-with-rfc-for-accessing-tables/m-p/1442941#M210470</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use RFC_READ_TABLE with whatever table name you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Plase mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Jul 2006 05:17:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-07T05:17:47Z</dc:date>
    <item>
      <title>Function Module with RFC for accessing tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-with-rfc-for-accessing-tables/m-p/1442940#M210469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am programming using ABAP in Solution Manager system. I have to take data from tables(T001W and T001K) from a R/3 Server. Is there a function module which extracts data from tables via RFC ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Tharani.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 05:16:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-with-rfc-for-accessing-tables/m-p/1442940#M210469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T05:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module with RFC for accessing tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-with-rfc-for-accessing-tables/m-p/1442941#M210470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use RFC_READ_TABLE with whatever table name you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Plase mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 05:17:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-with-rfc-for-accessing-tables/m-p/1442941#M210470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T05:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module with RFC for accessing tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-with-rfc-for-accessing-tables/m-p/1442942#M210471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use RFC_READ_TABLE and pass the table name to this RFC, this way you can get the data from the tables which you have.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 05:19:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-with-rfc-for-accessing-tables/m-p/1442942#M210471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T05:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module with RFC for accessing tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-with-rfc-for-accessing-tables/m-p/1442943#M210472</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 thes FM's:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC_GET_TABLE_ENTRIES&lt;/P&gt;&lt;P&gt;TABLE_ENTRIES_GET_VIA_RFC&lt;/P&gt;&lt;P&gt;GET_TABLE_RFC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or develop a RFC enabled FM to get the required data in R/3 and call it from your program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wtab type BDSEL_STAT occurs 0 with header line.&lt;/P&gt;&lt;P&gt;data: tab type BDI_ENTRY occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;name = T001W.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'TABLE_ENTRIES_GET_VIA_RFC'&lt;/P&gt;&lt;P&gt;destination dest&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;LANGU = SY-LANGU&lt;/P&gt;&lt;P&gt;TABNAME = name&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;SEL_TAB = wtab&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NAMETAB =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TABENTRY = tab&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;INTERNAL_ERROR = 1&lt;/P&gt;&lt;P&gt;TABLE_HAS_NO_FIELDS = 2&lt;/P&gt;&lt;P&gt;TABLE_NOT_ACTIV = 3&lt;/P&gt;&lt;P&gt;NOT_AUTHORIZED = 4&lt;/P&gt;&lt;P&gt;OTHERS = 5 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Laxman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Laxmana Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 05:23:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-with-rfc-for-accessing-tables/m-p/1442943#M210472</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-07-07T05:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module with RFC for accessing tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-with-rfc-for-accessing-tables/m-p/1442944#M210473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you explain me as ow to use this FM for my requirement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I/P:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC - XXXXXX&lt;/P&gt;&lt;P&gt;Table - T001W&lt;/P&gt;&lt;P&gt;Table i.p Fields - Plant &lt;/P&gt;&lt;P&gt;To extract from the table - Sales org.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Tharani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 05:24:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-with-rfc-for-accessing-tables/m-p/1442944#M210473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T05:24:17Z</dc:date>
    </item>
  </channel>
</rss>

