<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/1059599#M91486</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;&lt;/P&gt;&lt;P&gt;You can use the following transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE30-Runtime Analysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ST05-SQL TRACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCOV- COVERAGE ANALYZER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SLIN- EXTENDED PROGRAM CHECK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCID-CODE INSPECTOR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This transactions will make your abap program a quality output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If find useful please reward sutiable points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Irfan Hussain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Nov 2005 04:36:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-11-24T04:36:35Z</dc:date>
    <item>
      <title>performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/1059598#M91485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you improve a program performance? What tools SAP has provided to monitor program performance?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 03:53:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/1059598#M91485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T03:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/1059599#M91486</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;&lt;/P&gt;&lt;P&gt;You can use the following transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE30-Runtime Analysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ST05-SQL TRACE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCOV- COVERAGE ANALYZER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SLIN- EXTENDED PROGRAM CHECK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCID-CODE INSPECTOR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This transactions will make your abap program a quality output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If find useful please reward sutiable points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Irfan Hussain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 04:36:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/1059599#M91486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T04:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: performance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/1059600#M91487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A few tips you can use for finetuning a Report &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Use mostly primary key to access data. &lt;/P&gt;&lt;P&gt;2) before READ u sort the itab &lt;/P&gt;&lt;P&gt;3) use mostly the indexes fields in ur where clause. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) restrict the the fields retrieved by your select sentences to the minimal set. (avoid select *) &lt;/P&gt;&lt;P&gt;5) try to use specify where clause so the abap sql optimizer chooses the right index. &lt;/P&gt;&lt;P&gt;6) avoid sentences like select lifnr name1 into corresponding fields of lfa1 from lfa1 where .... &lt;/P&gt;&lt;P&gt;(you should declare a working area and select into the working area, is twice faster) &lt;/P&gt;&lt;P&gt;7) use hashed tables instead of standard tables. They are faster. &lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; Avoid the use of collect as much as you can.&lt;/P&gt;&lt;P&gt;******************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 Always check the driver internal tables is not empty , while using FOR ALL ENTRIES &lt;/P&gt;&lt;P&gt;2 Avoid for all entries in JOINS &lt;/P&gt;&lt;P&gt;3 Try to avoid joins and use FOR ALL ENTRIES. &lt;/P&gt;&lt;P&gt;4 Try to restrict the joins to 1 level only ie only for 2 tables &lt;/P&gt;&lt;P&gt;5 Avoid using Select *. &lt;/P&gt;&lt;P&gt;6 Avoid having multiple Selects from the same table in the same object. &lt;/P&gt;&lt;P&gt;7 Try to minimize the number of variables to save memory. &lt;/P&gt;&lt;P&gt;8 The sequence of fields in 'where clause' must be as per primary/secondary index ( if any) &lt;/P&gt;&lt;P&gt;9 Avoid creation of index as far as possible &lt;/P&gt;&lt;P&gt;10 Avoid operators like &amp;lt;&amp;gt;, &amp;gt; , &amp;lt; &amp;amp; like % in where clause conditions &lt;/P&gt;&lt;P&gt;11 Avoid select/select single statements in loops. &lt;/P&gt;&lt;P&gt;12 Try to use 'binary search' in READ internal table. Ensure table is sorted before using BINARY SEARCH. &lt;/P&gt;&lt;P&gt;13 Avoid using aggregate functions (SUM, MAX etc) in selects ( GROUP BY , HAVING,) &lt;/P&gt;&lt;P&gt;14 Avoid using ORDER BY in selects &lt;/P&gt;&lt;P&gt;15 Avoid Nested Selects &lt;/P&gt;&lt;P&gt;16 Avoid Nested Loops of Internal Tables &lt;/P&gt;&lt;P&gt;17 Try to use FIELD SYMBOLS. &lt;/P&gt;&lt;P&gt;18 Try to avoid into Corresponding Fields of &lt;/P&gt;&lt;P&gt;19 Avoid using Select Distinct , Use DELETE ADJACENT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*********************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If find helpful please reward sutiable points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Irfan Hussain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 04:40:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/1059600#M91487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T04:40:25Z</dc:date>
    </item>
  </channel>
</rss>

