<?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: bad performance in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bad-performance/m-p/2872700#M674026</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tuborg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have all the key fields before the selection, then add those key fields also, which can improve performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Antony thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Oct 2007 10:20:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-10T10:20:37Z</dc:date>
    <item>
      <title>bad performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bad-performance/m-p/2872696#M674022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;am getting very very bad performance with the below select..plz suggest better one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE KUNNR  FROM BSAD INTO FKUNNR&lt;/P&gt;&lt;P&gt;                  WHERE BUKRS = FBUKRS&lt;/P&gt;&lt;P&gt;                  AND   KUNNR NE SPACE&lt;/P&gt;&lt;P&gt;                  AND   GJAHR = FGJAHR&lt;/P&gt;&lt;P&gt;                  AND   BELNR = FBELNR&lt;/P&gt;&lt;P&gt;                  AND   BUDAT IN BUDAT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:27:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bad-performance/m-p/2872696#M674022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T06:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: bad performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bad-performance/m-p/2872697#M674023</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;There is not much you can do with this query.&lt;/P&gt;&lt;P&gt;But can't you use another table as BSAD has very huge amount of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:31:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bad-performance/m-p/2872697#M674023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T06:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: bad performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bad-performance/m-p/2872698#M674024</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;Instead of using BSAD table you can use another table BSEG since you&lt;/P&gt;&lt;P&gt;know the field BUKRS, BELNR and GJAHR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE KUNNR FROM BSEG INTO FKUNNR&lt;/P&gt;&lt;P&gt;         WHERE BUKRS = FBUKRS&lt;/P&gt;&lt;P&gt;               AND BELNR = FBELNR&lt;/P&gt;&lt;P&gt;              AND GJAHR = FGJAHR&lt;/P&gt;&lt;P&gt;             AND KOART EQ 'D'.         "D IS CUSTOMER ENTRY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Harish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 09:48:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bad-performance/m-p/2872698#M674024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T09:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: bad performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bad-performance/m-p/2872699#M674025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Tuborg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is also important to know which all values do u know among the 4 passed to select because if FBUKRS,FGJAHR &amp;amp; FBELNR is know then u can directly access BSEG and get the value. However they are not know then u will have to access the BSAD table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 09:54:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bad-performance/m-p/2872699#M674025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T09:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: bad performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bad-performance/m-p/2872700#M674026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tuborg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have all the key fields before the selection, then add those key fields also, which can improve performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Antony thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 10:20:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bad-performance/m-p/2872700#M674026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T10:20:37Z</dc:date>
    </item>
  </channel>
</rss>

