<?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 RFC_READ_TABLE performance problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-performance-problem/m-p/5014385#M1166940</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iu2019m using the function RFC_READ_TABLE in CRM to reach Data of the table KNB5 form R3. The function works well except that it too slow (20 seconds). Is it possible to optimize the execution time?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Dec 2008 10:45:14 GMT</pubDate>
    <dc:creator>hammitou_jack</dc:creator>
    <dc:date>2008-12-30T10:45:14Z</dc:date>
    <item>
      <title>RFC_READ_TABLE performance problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-performance-problem/m-p/5014385#M1166940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iu2019m using the function RFC_READ_TABLE in CRM to reach Data of the table KNB5 form R3. The function works well except that it too slow (20 seconds). Is it possible to optimize the execution time?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Dec 2008 10:45:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-performance-problem/m-p/5014385#M1166940</guid>
      <dc:creator>hammitou_jack</dc:creator>
      <dc:date>2008-12-30T10:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE performance problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-performance-problem/m-p/5014386#M1166941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try passing restricting selection criterion in the FM and see if performance improves.&lt;/P&gt;&lt;P&gt;If not run the FM in the source system and analyse the excess time being consumed.&lt;/P&gt;&lt;P&gt;If you feel there can be performance improvement, convert the FM to z-FM and modify accordingly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Dec 2008 11:07:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-performance-problem/m-p/5014386#M1166941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-30T11:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: RFC_READ_TABLE performance problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-performance-problem/m-p/5014387#M1166942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have an option to pass the condition to the Function module, Similer to the where condition part of the select quiry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just check for how I have passed the condition ( for the selection ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;w_value1 = '( obj_name LIKE ''Y%'' OR obj_name LIKE ''Z%'' ) AND ( DEVCLASS LIKE ''Y%''' .
      wa_options11-text = w_value1 .
      append wa_options11 to it_options11.
      clear wa_options11.

      w_value1 = 'OR DEVCLASS LIKE ''Z%'' )' .
      wa_options11-text = w_value1 .
      append wa_options11 to it_options11.
      clear wa_options11.

      call function 'RFC_READ_TABLE'
        destination p_serv1
        exporting
          query_table          = 'TADIR'
        tables
          options              = it_options11
          fields               = it_nametab11
          data                 = it_stmp_dokhl1
        exceptions
          table_not_available  = 1
          table_without_data   = 2
          option_not_valid     = 3
          field_not_valid      = 4
          not_authorized       = 5
          data_buffer_exceeded = 6
          others               = 7.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Murthy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Dec 2008 11:19:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rfc-read-table-performance-problem/m-p/5014387#M1166942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-30T11:19:51Z</dc:date>
    </item>
  </channel>
</rss>

