<?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: RFC Enabled Function module to read DDIC tables &amp; its values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-to-read-ddic-tables-its-values/m-p/1343954#M173661</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;Unless you are planning on reading couple of tables, RFC_READ_TABLE is not the ideal choice as you will to call the same one multiple times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are trying to fetch some transactional data, try writing a custom RFC and call that.&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;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 May 2006 10:48:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-10T10:48:19Z</dc:date>
    <item>
      <title>RFC Enabled Function module to read DDIC tables &amp; its values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-to-read-ddic-tables-its-values/m-p/1343951#M173658</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;  Kindly let me know which RFC enabled function module has been used to extract DDIC tables &amp;amp; its values from the target system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  If not exist suggest me the code to achieve the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  This is quiet urgent, quick response would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;Alexander&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 May 2006 10:43:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-to-read-ddic-tables-its-values/m-p/1343951#M173658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-10T10:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Enabled Function module to read DDIC tables &amp; its values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-to-read-ddic-tables-its-values/m-p/1343952#M173659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RFC_READ_TABLE&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;RFC_GET_TABLE_ENTRIES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These rfc function modules would let you read the data in the table you specify in the exporting parameters.&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>Wed, 10 May 2006 10:45:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-to-read-ddic-tables-its-values/m-p/1343952#M173659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-10T10:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Enabled Function module to read DDIC tables &amp; its values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-to-read-ddic-tables-its-values/m-p/1343953#M173660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use, FM : 'RFC_READ_TABLE' to read the table contents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: I_OPT  LIKE RFC_DB_OPT OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        I_FLD  LIKE RFC_DB_FLD OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        I_DATA LIKE TAB512     OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  L_TAB = 'TFDIR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE 'FUNCNAME' '=' '''' INTO I_OPT-TEXT SEPARATED BY ' '.&lt;/P&gt;&lt;P&gt;  CONCATENATE  I_OPT-TEXT 'RFC_READ_TABLE' ''''&lt;/P&gt;&lt;P&gt;               INTO   I_OPT-TEXT.&lt;/P&gt;&lt;P&gt;  APPEND I_OPT.&lt;/P&gt;&lt;P&gt;  CLEAR  I_OPT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I_FLD-FIELDNAME = 'FUNCNAME'.&lt;/P&gt;&lt;P&gt;  I_FLD-OFFSET    = '000000'.&lt;/P&gt;&lt;P&gt;  I_FLD-LENGTH    = '000030'.&lt;/P&gt;&lt;P&gt;  APPEND I_FLD.&lt;/P&gt;&lt;P&gt;  CLEAR  I_FLD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'RFC_READ_TABLE' DESTINATION RFCDEST&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;P&gt;                QUERY_TABLE          = L_TAB&lt;/P&gt;&lt;P&gt;           TABLES&lt;/P&gt;&lt;P&gt;                OPTIONS              = I_OPT&lt;/P&gt;&lt;P&gt;                FIELDS               = I_FLD&lt;/P&gt;&lt;P&gt;               DATA                 = I_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 May 2006 10:47:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-to-read-ddic-tables-its-values/m-p/1343953#M173660</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2006-05-10T10:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Enabled Function module to read DDIC tables &amp; its values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-to-read-ddic-tables-its-values/m-p/1343954#M173661</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;Unless you are planning on reading couple of tables, RFC_READ_TABLE is not the ideal choice as you will to call the same one multiple times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are trying to fetch some transactional data, try writing a custom RFC and call that.&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;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 May 2006 10:48:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-to-read-ddic-tables-its-values/m-p/1343954#M173661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-10T10:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: RFC Enabled Function module to read DDIC tables &amp; its values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-to-read-ddic-tables-its-values/m-p/1343955#M173662</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;you can use RFC  RFC_READ_TABLE for both the cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for first case give the table name as &amp;lt;b&amp;gt;DD02L&amp;lt;/b&amp;gt; to get all the tables, and for getting the table info then use that table name only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 May 2006 11:09:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-enabled-function-module-to-read-ddic-tables-its-values/m-p/1343955#M173662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-10T11:09:43Z</dc:date>
    </item>
  </channel>
</rss>

