<?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: Performance Problem with pooltable access in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-with-pooltable-access/m-p/2273054#M493964</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A016 is a Pooled table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZR_SANDBOX_PROG3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: A016.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_A016 type table of A016.&lt;/P&gt;&lt;P&gt;data: r_A016 type A016.&lt;/P&gt;&lt;P&gt;data: u type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from a016 into table it_a016&lt;/P&gt;&lt;P&gt;  where EVRTP = '000010'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_a016 into r_a016.&lt;/P&gt;&lt;P&gt;  u = u.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In our system, A016 has 270 entries.  The internal table above has 179 entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has your issue been resolved with the WHERE clause?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 May 2007 20:10:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-22T20:10:36Z</dc:date>
    <item>
      <title>Performance Problem with pooltable access</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-with-pooltable-access/m-p/2273051#M493961</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;pool tables are normally big Tables. I want to set limits, but it is not possible to use GROUP BY and so on. &lt;/P&gt;&lt;P&gt;Is there anyway to handle pooltables without loading the whole table in an internal table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sinan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 19:58:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-with-pooltable-access/m-p/2273051#M493961</guid>
      <dc:creator>sinan_keklik</dc:creator>
      <dc:date>2007-05-22T19:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Problem with pooltable access</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-with-pooltable-access/m-p/2273052#M493962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the WHERE clause of SQL is not going to help you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 19:59:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-with-pooltable-access/m-p/2273052#M493962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T19:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Problem with pooltable access</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-with-pooltable-access/m-p/2273053#M493963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: it_vbfa type table of vbfa.&lt;/P&gt;&lt;P&gt;data: Some_Number type vbfa-vbelv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * from vbfa into table it_vbfa&lt;/P&gt;&lt;P&gt;  WHERE VBELV = Some_NUMBER.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 20:03:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-with-pooltable-access/m-p/2273053#M493963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T20:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Problem with pooltable access</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-with-pooltable-access/m-p/2273054#M493964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A016 is a Pooled table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZR_SANDBOX_PROG3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: A016.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_A016 type table of A016.&lt;/P&gt;&lt;P&gt;data: r_A016 type A016.&lt;/P&gt;&lt;P&gt;data: u type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from a016 into table it_a016&lt;/P&gt;&lt;P&gt;  where EVRTP = '000010'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_a016 into r_a016.&lt;/P&gt;&lt;P&gt;  u = u.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In our system, A016 has 270 entries.  The internal table above has 179 entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has your issue been resolved with the WHERE clause?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 20:10:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-with-pooltable-access/m-p/2273054#M493964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T20:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Problem with pooltable access</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-with-pooltable-access/m-p/2273055#M493965</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;U can use Where clause:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rembember, to improve performance u should give  more and more conditions on KEY fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g. &lt;/P&gt;&lt;P&gt;Select * from &amp;lt;p_table&amp;gt;  into itab WHERE &amp;lt;fldname&amp;gt; = &amp;lt;condition&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will fetch only required entries passing &amp;lt;condition&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jogdand M B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 04:23:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-with-pooltable-access/m-p/2273055#M493965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T04:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Problem with pooltable access</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-with-pooltable-access/m-p/2273056#M493966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the problem that I want to get all datasets from A018 with the same key (till ekorg) and in EKORG 0100 and 0200. In a normal Table I make:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT key_1 key_2 COUNT( * ) FROM A018 &lt;/P&gt;&lt;P&gt;INTO itab&lt;/P&gt;&lt;P&gt;WHERE ekorg = 0100 &lt;/P&gt;&lt;P&gt;OR         ekorg = 0200&lt;/P&gt;&lt;P&gt;GROUP BY key_1 key_2&lt;/P&gt;&lt;P&gt;HAVING COUNT( * ) &amp;gt; 1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Ideas for pool tables?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sinan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 06:27:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem-with-pooltable-access/m-p/2273056#M493966</guid>
      <dc:creator>sinan_keklik</dc:creator>
      <dc:date>2007-05-23T06:27:46Z</dc:date>
    </item>
  </channel>
</rss>

