<?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: In SE30 How to decrease the abap performence in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-se30-how-to-decrease-the-abap-performence/m-p/5898268#M1327563</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the result of the analysis, &lt;/P&gt;&lt;P&gt;- Find the more CPU consuming forms (sort result by net percentage)&lt;/P&gt;&lt;P&gt;- Find if some FM or form are called multiple times with same parameters, if yes  buffer the result&lt;/P&gt;&lt;P&gt;- Optimize internal tables access, SORT table which are accessed via READ TABLE and use BINARY SEARCH, if you use some, LOOP WHERE, define table as SORTED with adequate keys&lt;/P&gt;&lt;P&gt;- look at &lt;SPAN __jive_macro_name="thread" id="1315156"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Jul 2009 07:19:44 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2009-07-14T07:19:44Z</dc:date>
    <item>
      <title>In SE30 How to decrease the abap performence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-se30-how-to-decrease-the-abap-performence/m-p/5898265#M1327560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   i had devoloped one report which is dynamic ALV grid.when i am executing it in SE 30&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am getting bellow percenrege of each performence,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP ---96.6%,&lt;/P&gt;&lt;P&gt;Data Bsae--00.9%,&lt;/P&gt;&lt;P&gt;Syesm-02.5 %,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      i want to decrease ABAP 96.6%  to 65%. i want to know how to do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i had freed all internal tables and work areas and variable.please help me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;/P&gt;&lt;P&gt;Ravinder&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2009 06:47:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-se30-how-to-decrease-the-abap-performence/m-p/5898265#M1327560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-14T06:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: In SE30 How to decrease the abap performence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-se30-how-to-decrease-the-abap-performence/m-p/5898266#M1327561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can follow the following steps to reduce ABAP processing time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Sort the internal tables and use binary search with read statements.&lt;/P&gt;&lt;P&gt;2. Avoid nested loops if possible.&lt;/P&gt;&lt;P&gt;3. Make use of field-symbols to modify internal tables instead of modify statements.&lt;/P&gt;&lt;P&gt;4. Free the internal tables and work areas when not required.&lt;/P&gt;&lt;P&gt;5. While looping give the index if possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are just few recommendations. &lt;/P&gt;&lt;P&gt;Follow the examples in Tips and Tricks in SE30 for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2009 06:56:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-se30-how-to-decrease-the-abap-performence/m-p/5898266#M1327561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-14T06:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: In SE30 How to decrease the abap performence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-se30-how-to-decrease-the-abap-performence/m-p/5898267#M1327562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Ravinder,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After Executing the Program in SE30, click on ANALYZE Button.&lt;/P&gt;&lt;P&gt;It will display the statics.&lt;/P&gt;&lt;P&gt;At top left corner, click on the displayed icon.&lt;/P&gt;&lt;P&gt;System will display the complete statics.&lt;/P&gt;&lt;P&gt;Sort the details in by selecting NET (%) and check the queries taking more time.&lt;/P&gt;&lt;P&gt;Accordingly use performance tuning of the code.&lt;/P&gt;&lt;P&gt;Thus database and ABAP % can be reduced.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2009 07:03:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-se30-how-to-decrease-the-abap-performence/m-p/5898267#M1327562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-14T07:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: In SE30 How to decrease the abap performence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-se30-how-to-decrease-the-abap-performence/m-p/5898268#M1327563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the result of the analysis, &lt;/P&gt;&lt;P&gt;- Find the more CPU consuming forms (sort result by net percentage)&lt;/P&gt;&lt;P&gt;- Find if some FM or form are called multiple times with same parameters, if yes  buffer the result&lt;/P&gt;&lt;P&gt;- Optimize internal tables access, SORT table which are accessed via READ TABLE and use BINARY SEARCH, if you use some, LOOP WHERE, define table as SORTED with adequate keys&lt;/P&gt;&lt;P&gt;- look at &lt;SPAN __jive_macro_name="thread" id="1315156"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2009 07:19:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-se30-how-to-decrease-the-abap-performence/m-p/5898268#M1327563</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-07-14T07:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: In SE30 How to decrease the abap performence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-se30-how-to-decrease-the-abap-performence/m-p/5898269#M1327564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why do you want to reduce it to 65%?!  That performance breakdown looks pretty good to me as most of your time is spent within ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you reduced your ABAP processing to 65% from 96.6% then the database and system aspects would have to increase by 31.6% to balance out - you still need to get to 100%!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or do you really mean you want to reduce the actual time taken for the program to run?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 07:49:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-se30-how-to-decrease-the-abap-performence/m-p/5898269#M1327564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T07:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: In SE30 How to decrease the abap performence</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-se30-how-to-decrease-the-abap-performence/m-p/5898270#M1327565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Ravindar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to st05 and give a trace for u r program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u check where the system is taking too much time to execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please copy that code here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards,&lt;/P&gt;&lt;P&gt;Sumodh.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 09:45:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-se30-how-to-decrease-the-abap-performence/m-p/5898270#M1327565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T09:45:26Z</dc:date>
    </item>
  </channel>
</rss>

