<?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: ABAP performance in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-performance/m-p/3646840#M878240</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't access that system now, I'll popup later.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Apr 2008 08:17:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-09T08:17:13Z</dc:date>
    <item>
      <title>ABAP performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-performance/m-p/3646836#M878236</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 have an internal table, which has 250000 records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT itab INTO wa.
...
* here are some other ABAP statements, but no SELECT
* or other database accesses
...
READ TABLE ...
MOVE ...
...
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code part runs for 8 minutes and I don't know why is it so slow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I trace, which command takes the most time? If I go into the debugger and run it step-by-step, it seems every command is progressed instantly. Is there some tool for it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE30 is not enough detailfully, so it is not useful in my case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 07:13:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-performance/m-p/3646836#M878236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T07:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-performance/m-p/3646837#M878237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe the read table is the bottle neck. How did you declare the internal table you are reading here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard, sorted, hashed table, with (non) unique key?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 07:15:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-performance/m-p/3646837#M878237</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-04-09T07:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-performance/m-p/3646838#M878238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, you have to tell us more.&lt;/P&gt;&lt;P&gt;Most likely your READ statement does not use a qualified key. Also, you might want to drop "INTO wa" and use field symbols instead ("ASSIGNING &amp;lt;fs&amp;gt;"). At 250K records you're saving some copying costs.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit:&lt;/P&gt;&lt;P&gt;You have to explicitely switch on analysis of internal table operations in SE30. Also see this excellent blog:&lt;/P&gt;&lt;P&gt;/people/siegfried.boes/blog/2007/11/13/the-abap-runtime-trace-se30--quick-and-easy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 07:20:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-performance/m-p/3646838#M878238</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-04-09T07:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-performance/m-p/3646839#M878239</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 ST05 &amp;lt;Tcode&amp;gt; for detail check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sathish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 07:29:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-performance/m-p/3646839#M878239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T07:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-performance/m-p/3646840#M878240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't access that system now, I'll popup later.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 08:17:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-performance/m-p/3646840#M878240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T08:17:13Z</dc:date>
    </item>
  </channel>
</rss>

