<?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 issues in ABAP programs in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655442#M1095378</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt; 2. For the joining ,insteated of using the inner join better use the for all entries .&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this has been discussed here numerous times, however the consequence was different...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt; 5.Sort the internal table before using the for all entries.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wonder if that makes any difference, however I would hear some expert opinion about the topic, my question is slightly different: in case of FOR ALL ENTRIES does it matter if the internal tables (the one which contains the values for comparison) is STANDARD or SORTED (or HASHED)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt; 8.Check the return code :The return code should always be checked after any database table read/update statements.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that has nothing to do with performace...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Oct 2008 12:09:47 GMT</pubDate>
    <dc:creator>JozsefSzikszai</dc:creator>
    <dc:date>2008-10-17T12:09:47Z</dc:date>
    <item>
      <title>Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655433#M1095369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What are the statements which might cause performance issues in an ABAP program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 07:12:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655433#M1095369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T07:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655434#M1095370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;DO.
ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I'm trying to say is, search this forum and SDN in general for lots of available, valuable information on this topic.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 07:15:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655434#M1095370</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-10-17T07:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655435#M1095371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;mainly operation with internal tables, if the internal tables become&lt;/P&gt;&lt;P&gt;large.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sooner or larger you will encounter task where large table must be compared or connected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you should not use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab1&lt;/P&gt;&lt;P&gt;  read table itab2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with a standard table itab2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either use a sorted table or a binary search with the standard table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rest of the problems is not related to the statements, but to the people calling them.&lt;/P&gt;&lt;P&gt;Call too often and you run into problems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 09:02:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655435#M1095371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T09:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655436#M1095372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you should avoild nested loops and nested selects. they cause performance issues.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 09:11:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655436#M1095372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T09:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655437#M1095373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ENDSELECT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 09:29:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655437#M1095373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T09:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655438#M1095374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; you should avoild nested loops and nested selects. they cause performance issues&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are recommendations of this type which make sense ,Avoid smoking, it can kill you',&lt;/P&gt;&lt;P&gt;but already 'Avoid driving, it can kill you', is also true, but not really practical.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same holds for 'avoid nested loops and nested selects'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nested loops are unavoidable, but actually not a problem, just use sorted tables and everything is o.k.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nested selects, use Joins or For all entries and it works usually fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And whether you use   SELECT INTO TABLE or SELECT ... ENDSELECT the difference is smaller than many people expect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 10:21:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655438#M1095374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T10:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655439#M1095375</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;Any Code/Statement, raising the no of Database Interaction's/Database WP's can lead to performance issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stick to the Principle....Minimum no of Database Operation's at the RUN TIME......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 11:51:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655439#M1095375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T11:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655440#M1095376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Really, perform some [search at sdn for you keywords|https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_weblog&amp;amp;query=abap&lt;EM&gt;performance&lt;/EM&gt;statement&amp;amp;adv=false&amp;amp;sortby=cm_rnd_rankvalue].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 11:54:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655440#M1095376</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-10-17T11:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655441#M1095377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;1.Dont Use the select and endselect.&lt;/P&gt;&lt;P&gt;2. For the joining ,insteated of using the inner join better use the for all entries .&lt;/P&gt;&lt;P&gt;3. Dont write the select statements in the loop.&lt;/P&gt;&lt;P&gt;4.For the seelct qurey ,use index &lt;/P&gt;&lt;P&gt;5.Sort the internal table before using the for all entries.&lt;/P&gt;&lt;P&gt;6. Read the internal table with binary search.&lt;/P&gt;&lt;P&gt;7.Use the move rather than move-corresponding &lt;/P&gt;&lt;P&gt;8.Check the return code :The return code should always be checked after any database table read/update statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bharani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 12:00:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655441#M1095377</guid>
      <dc:creator>BH2408</dc:creator>
      <dc:date>2008-10-17T12:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655442#M1095378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt; 2. For the joining ,insteated of using the inner join better use the for all entries .&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this has been discussed here numerous times, however the consequence was different...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt; 5.Sort the internal table before using the for all entries.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wonder if that makes any difference, however I would hear some expert opinion about the topic, my question is slightly different: in case of FOR ALL ENTRIES does it matter if the internal tables (the one which contains the values for comparison) is STANDARD or SORTED (or HASHED)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt; 8.Check the return code :The return code should always be checked after any database table read/update statements.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that has nothing to do with performace...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 12:09:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655442#M1095378</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-10-17T12:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655443#M1095379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; 5.Sort the internal table before using the for all entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;only if delete adjacent duplicates is applied.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And this recommended if there can be duplicates, not if it comes from a select with unique key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The list of recommedation above is actually quite useless!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually I thought the question refers more to pure ABAP statements not to database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I guess as often it is an interview question, so better answer what people expect, otherwise they might be confused.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 12:32:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655443#M1095379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T12:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655444#M1095380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please search the forum before asking basic questions like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And responders beware:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="808044"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 13:33:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655444#M1095380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T13:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655445#M1095381</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;in SDN there is a section called WIKI in that if u go to   Abap Development section u can find a section related to Performance. there u have very nice article regarding Performance Tuning.hope that article might give u a better insight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after clicking on WIKI section the path is My Home &amp;gt; ABAP Development &amp;gt; Performance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abaper007.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Oct 2008 09:43:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655445#M1095381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-18T09:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655446#M1095382</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;In R/3 you have Tips &amp;amp; Tricks you can see the statements which cause performance issues. It gives you the comparative statements that can be used and the time taken for implementation. The following link provides you few of the performance tips&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.thespot4sap.com/Articles/SAPABAPPerformanceTuning_AggregateFunctions.asp" target="test_blank"&gt;http://www.thespot4sap.com/Articles/SAPABAPPerformanceTuning_AggregateFunctions.asp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sumalatha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Oct 2008 15:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655446#M1095382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-18T15:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655447#M1095383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2008 07:58:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655447#M1095383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-20T07:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issues in ABAP programs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655448#M1095384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi....&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; The Statements which can cause performance issues are as following:&lt;/P&gt;&lt;P&gt;&amp;gt; 1.)The 'INTO TABLE' clause&lt;/P&gt;&lt;P&gt;&amp;gt; 2.)Modifying a group of lines&lt;/P&gt;&lt;P&gt;&amp;gt; 3.)Appending two internal tables&lt;/P&gt;&lt;P&gt;&amp;gt; 4.)Table buffering&lt;/P&gt;&lt;P&gt;&amp;gt; 5.)Use of 'For all' entries&lt;/P&gt;&lt;P&gt;&amp;gt; 6.)Use of structure of 'where' clause&lt;/P&gt;&lt;P&gt;&amp;gt; 7.)Proper use of 'Move' statement&lt;/P&gt;&lt;P&gt;&amp;gt; 8.)Proper use of 'Inner join'&lt;/P&gt;&lt;P&gt;&amp;gt; 9.)Use of 'ABAP Sort' instead of 'Order By'&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry, but this is total rubbish...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2008 08:53:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issues-in-abap-programs/m-p/4655448#M1095384</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-10-20T08:53:37Z</dc:date>
    </item>
  </channel>
</rss>

