<?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: UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249416#M485983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ST05 will display the duration for each database access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can identify which SELECT statements are eating up the time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is not possible to change the way SELECT statements are coded, you can try to create index on VBAP &amp;amp; VBRP tables for fields MATNR &amp;amp; WERKS fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 May 2007 21:57:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-23T21:57:07Z</dc:date>
    <item>
      <title>UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249408#M485975</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;My current program takes a lot of time to pull up data from VBAP and VBRP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Though it will run nightly, how can I increase Performance Optimization in the following Code (4 Random Parts):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CALCULATE THE OPEN ORDERS FOR PROCESSING MATERIAL&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get the pending order data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      SELECT SUM( a~klmeng ) INTO V_MTD_2&lt;/P&gt;&lt;P&gt;             FROM ( ( vbak AS b INNER JOIN vbuk AS c&lt;/P&gt;&lt;P&gt;                      ON b&lt;SUB&gt;vbeln = c&lt;/SUB&gt;vbeln )&lt;/P&gt;&lt;P&gt;                      INNER JOIN vbap AS a&lt;/P&gt;&lt;P&gt;                      ON a&lt;SUB&gt;vbeln = b&lt;/SUB&gt;vbeln )&lt;/P&gt;&lt;P&gt;             WHERE  b~vkorg = I_TVKO-VKORG&lt;/P&gt;&lt;P&gt;                    AND b~vtweg &amp;lt;&amp;gt; '02'&lt;/P&gt;&lt;P&gt;                    AND b~vtweg &amp;lt;&amp;gt; '05'&lt;/P&gt;&lt;P&gt;                    AND c~gbstk = 'A'&lt;/P&gt;&lt;P&gt;                    AND a~matnr = I_MARC_VALUES-MATNR&lt;/P&gt;&lt;P&gt;                    AND a~abgru  = space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get DAILY OPEN QTY&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SELECT SUM( a~klmeng ) INTO V_DL_1&lt;/P&gt;&lt;P&gt;             FROM ( ( vbak AS b INNER JOIN vbuk AS c&lt;/P&gt;&lt;P&gt;                      ON b&lt;SUB&gt;vbeln = c&lt;/SUB&gt;vbeln )&lt;/P&gt;&lt;P&gt;                      INNER JOIN vbap AS a&lt;/P&gt;&lt;P&gt;                      ON a&lt;SUB&gt;vbeln = b&lt;/SUB&gt;vbeln )&lt;/P&gt;&lt;P&gt;             WHERE  b~vkorg = I_TVKO-VKORG&lt;/P&gt;&lt;P&gt;                    AND b~vtweg &amp;lt;&amp;gt; '02'&lt;/P&gt;&lt;P&gt;                    AND b~vtweg &amp;lt;&amp;gt; '05'&lt;/P&gt;&lt;P&gt;                    AND c~gbstk = 'A'&lt;/P&gt;&lt;P&gt;                    AND a~matnr = I_MARC_VALUES-MATNR&lt;/P&gt;&lt;P&gt;                    AND a~abgru  = space&lt;/P&gt;&lt;P&gt;                    AND a~erdat = v_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DAILY SALES&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;break-point.&lt;/P&gt;&lt;P&gt;    SELECT SUM( FKLMG ) INTO DAILY_SLS&lt;/P&gt;&lt;P&gt;    FROM VBRP&lt;/P&gt;&lt;P&gt;       WHERE MATNR = I_ZDAILY_MVMT-MATNR AND&lt;/P&gt;&lt;P&gt;             WERKS = I_ZDAILY_MVMT-WERKS AND&lt;/P&gt;&lt;P&gt;             ERDAT = V_DATE AND&lt;/P&gt;&lt;P&gt;             VTWEG_AUFT &amp;lt;&amp;gt; '02' AND&lt;/P&gt;&lt;P&gt;             VTWEG_AUFT &amp;lt;&amp;gt; '05'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CALCULATE DAILY BACKORDER QUANTITY&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT SUM( KLMENG ) INTO I_ZDAILY_MVMT-DLY_BO&lt;/P&gt;&lt;P&gt;    FROM VBAP&lt;/P&gt;&lt;P&gt;       WHERE MATNR = I_ZDAILY_MVMT-MATNR AND&lt;/P&gt;&lt;P&gt;             WERKS = I_ZDAILY_MVMT-WERKS AND&lt;/P&gt;&lt;P&gt;             ERDAT = V_DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Points will be rewarded and all responses will be highly appreciated.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 20:45:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249408#M485975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T20:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249409#M485976</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;I think the first and second query is fine.&lt;/P&gt;&lt;P&gt;You have to look at 3.  DAILY SALES and 4.CALCULATE DAILY BACKORDER QUANTITY as VBAP &amp;amp; VBRP doesnot uses a key field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 20:50:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249409#M485976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T20:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249410#M485977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the structure of I_ZDAILY? Doesn't it have a key field (VBELN) for VBRK &amp;amp; VBRP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are queries 3 &amp;amp; 4 inside loop? If so, you can avoid it using FOR ALL ENTRIES IN I_ZDAILY.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 20:57:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249410#M485977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T20:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249411#M485978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is that records are being fetched/analyzed sequentially. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What should I be looking to change to increase performance optimization?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 21:11:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249411#M485978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T21:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249412#M485979</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;If the third and fourth query is in the loop inside this itab I_ZDAILY_MVMT and if this itab has vbeln and posnr, use select single with the key field and sum it manually. Something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT I_ZDAILY_MVMT .&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DAILY SALES&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECT SINGLE FKLMG INTO DAILY_SLS&lt;/P&gt;&lt;P&gt;FROM VBRP&lt;/P&gt;&lt;P&gt;WHERE &lt;/P&gt;&lt;P&gt;VBELN = I_ZDAILY_MVMT-VBELN AND&lt;/P&gt;&lt;P&gt;POSNR = I_ZDAILY_MVMT-POSNR AND&lt;/P&gt;&lt;P&gt;MATNR = I_ZDAILY_MVMT-MATNR AND&lt;/P&gt;&lt;P&gt;WERKS = I_ZDAILY_MVMT-WERKS AND&lt;/P&gt;&lt;P&gt;ERDAT = V_DATE AND&lt;/P&gt;&lt;P&gt;VTWEG_AUFT &amp;lt;&amp;gt; '02' AND&lt;/P&gt;&lt;P&gt;VTWEG_AUFT &amp;lt;&amp;gt; '05'.&lt;/P&gt;&lt;P&gt;If SY-subrc = 0.&lt;/P&gt;&lt;P&gt;Manually declare a separate variable of the same type here and SUM FKLMG.&lt;/P&gt;&lt;P&gt;Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope u have VBELN and POSNR field in the itab  I_ZDAILY_MVMT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly do for the other query also. Hope it will increase the performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Senthil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        senthil kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 21:25:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249412#M485979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T21:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249413#M485980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you used ST05 to identify bottlenecks?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 21:47:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249413#M485980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T21:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249414#M485981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No I haven't. However, I will try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ST05, what should i look for exactly?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 21:48:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249414#M485981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T21:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249415#M485982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Two things - look for statments especially repeated statements with high execution times. They will be hi-lited.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also use the explain function to see how expensive the statements are.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 21:52:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249415#M485982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T21:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249416#M485983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ST05 will display the duration for each database access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can identify which SELECT statements are eating up the time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is not possible to change the way SELECT statements are coded, you can try to create index on VBAP &amp;amp; VBRP tables for fields MATNR &amp;amp; WERKS fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 21:57:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249416#M485983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T21:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249417#M485984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help everyone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ST05, i found the 2 selects (from codes 3 &amp;amp; 4.) Code 3 takes 38 seconds to select sum from VBRP and code 4 takes 52 seconds to select sum from VBAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try the index suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-john&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 22:16:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249417#M485984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T22:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249418#M485985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any success on this one?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 23:42:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249418#M485985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T23:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249419#M485986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Darshil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well, before trying the Index suggestion, I am looking for an alternative. Since this isn't in a loop and the I_ZDAILY_MVMT tables doesn't have a VBELN field, I am looking for additional routes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fact is that I_ZDAILY_MVMT is an Internal Tables, referencing to DB table ZDAILY_MVMT, which i created. Since no data is stored there yet, I am looking for an additional route (maybe on adding the VBELN field.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anyone can suggest anything else, it would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 12:24:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249419#M485986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-24T12:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: UPDATED: Performance Optimization for Code (URGENT, VERY IMPORTANT)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249420#M485987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This will actually be pretty easy. You should use table VAPMA to select sales order items based on material. It's indexed on material and will give you the sales document and item number (quickly).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 13:01:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updated-performance-optimization-for-code-urgent-very-important/m-p/2249420#M485987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-24T13:01:48Z</dc:date>
    </item>
  </channel>
</rss>

