<?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 Record in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/record/m-p/3275047#M783018</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;  How to Record Performace data plzz telmeee.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 06 Jan 2008 10:33:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-06T10:33:37Z</dc:date>
    <item>
      <title>Record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/record/m-p/3275047#M783018</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;  How to Record Performace data plzz telmeee.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Jan 2008 10:33:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/record/m-p/3275047#M783018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-06T10:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: Record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/record/m-p/3275048#M783019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mahitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At that time of Development remember the below points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.Avoid using SELECT...ENDSELECT... construct and use SELECT ... INTO TABLE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.Use WHERE clause in your SELECT statement to restrict the volume of data retrieved. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.Design your Query to Use as much index fields as possible from left to right in your WHERE statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.Either enable buffering in your database table or create Indexes to speed up the query. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.    Use FOR ALL ENTRIES in your SELECT statement to retrieve the matching records at one shot. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6.Avoid using nested SELECT statement, SELECT within LOOPs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.Avoid using INTO CORRESPONDING FIELDS OF TABLE. Instead use INTO TABLE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8.Avoid using SELECT * and Select only the required fields from the table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9.Avoid nested loops when working with large internal tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10.  Use assign instead of into in LOOPs for table types with large work areas &lt;/P&gt;&lt;P&gt;11.When in doubt call transaction SE30 and use the examples and check your code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;12.Whenever using READ TABLE use BINARY SEARCH addition to speed up the search. Be sure to sort the internal table before binary search. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;13.Use "CHECK" instead of IF/ENDIF whenever possible. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;14.Use "CASE" instead of IF/ENDIF whenever possible. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;15.    Use "MOVE" with individual variable/field moves instead of "MOVE-CORRESPONDING", creates more coding but is more   effcient. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the Below link &lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ecdbe890-0201-0010-ad94-a8dca265e4a6" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ecdbe890-0201-0010-ad94-a8dca265e4a6&lt;/A&gt;&lt;/P&gt;&lt;P&gt;/people/randolf.eilenberger/blog/2007/07/02/code-inspector146s-performance-checks-ii&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5d0db4c9-0e01-0010-b68f-9b1408d5f234" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5d0db4c9-0e01-0010-b68f-9b1408d5f234&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm" target="test_blank"&gt;http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.thespot4sap.com/Articles/SAPABAPPerformanceTuning_PerformanceAnalysisTools.asp" target="test_blank"&gt;http://www.thespot4sap.com/Articles/SAPABAPPerformanceTuning_PerformanceAnalysisTools.asp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap&lt;/A&gt;&lt;EM&gt;Performance&lt;/EM&gt;and+Tuning&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/abap/performance.htm" target="test_blank"&gt;http://www.erpgenie.com/abap/performance.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm" target="test_blank"&gt;http://www.sap-img.com/abap/performance-tuning-for-data-selection-statement.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap&lt;/A&gt;&lt;EM&gt;Performance&lt;/EM&gt;and+Tuning&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/c6/617cafe68c11d2b2ab080009b43351/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/c6/617cafe68c11d2b2ab080009b43351/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/d1/801f7c454211d189710000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/d1/801f7c454211d189710000e8322d00/frameset.htm&lt;/A&gt;&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="142332"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kanagaraja L&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 04:52:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/record/m-p/3275048#M783019</guid>
      <dc:creator>Kanagaraja_L</dc:creator>
      <dc:date>2008-01-07T04:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/record/m-p/3275049#M783020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mahitha,&lt;/P&gt;&lt;P&gt;                This is kiran Kumar.G.(working on sap).I will give some steps.you better to follow those steps to get ur report performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u r satisfy with my answer give me REWARD POINTS.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;            HAVE A NICE DAY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STEPS:&lt;/P&gt;&lt;P&gt;1.OPEN UR REPORT IN SE38 TRANSACTION. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.SELECT THE MENU PATH&lt;/P&gt;&lt;P&gt;  UTILITIES--&lt;DEL&gt;&amp;gt;MORE UTILITIES&lt;/DEL&gt;--&amp;gt;RUNTIME ANALYSIS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.SELECT THE PROGRAM RADIO BUTTON AND GIVE UR REPORT NAME THERE.AND CLICK &amp;lt;b&amp;gt;EXECUTE&amp;lt;/b&amp;gt; BUTTON&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.IT WILL TAKE U TO ANOTHER SCREEN THERE U CAN EXECUTE UR REPORT AND COME BACK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.CLICK ON ANALYZE BUTTON.(PRESENT IN BELOW OF THE SCREEN).&lt;/P&gt;&lt;P&gt;THEN U WILL GET ONE GRAPH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE:&lt;/P&gt;&lt;P&gt;1.IF IT IS RED UR PROGRAM IS HAVING VERY POOR PERFORMANCE&lt;/P&gt;&lt;P&gt;2.IF IT IS GREEN IT IS OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP GRAPH : TELLS UR CODING IN THE REPORT.&lt;/P&gt;&lt;P&gt;DATABASE  GRAPH : U R RETREIVE DATA FROM DATABASE IN UR REPORT..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SOME STEPS USED TO IMPROVE UR PERFORMANCE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.	Avoid using SELECT...ENDSELECT... construct and use SELECT ... INTO TABLE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.	Use WHERE clause in your SELECT statement to restrict the volume of data retrieved. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.	Design your Query to Use as much index fields as possible from left to right in your WHERE statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.	Use FOR ALL ENTRIES in your SELECT statement to retrieve the matching records at one shot. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.	Avoid using nested SELECT statement, SELECT within LOOPs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6.	Avoid using INTO CORRESPONDING FIELDS OF TABLE. Instead use INTO TABLE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7.	Avoid using SELECT * and Select only the required fields from the table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8.	Avoid nested loops when working with large internal tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9.	Use assign instead of into in LOOPs for table types with large work areas &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10.	When in doubt call transaction SE30 and use the examples and check your code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;11.	Whenever using READ TABLE use BINARY SEARCH addition to speed up the search. Be sure to sort the internal table before binary search. This is a general thumb rule but typically if you are sure that the data in internal table is less than 200 entries you need not do SORT and use BINARY SEARCH since this is an overhead in performance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;12.	Use "CHECK" instead of IF/ENDIF whenever possible. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;13.	Use "CASE" instead of IF/ENDIF whenever possible. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;14.	Use "MOVE" with individual variable/field moves instead of "MOVE-&lt;/P&gt;&lt;P&gt;CORRESPONDING", creates more coding but is more effcient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Award points if helpful.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  Kiran Kumar.G&lt;/P&gt;&lt;P&gt;       &lt;/P&gt;&lt;P&gt;            &lt;EM&gt;Have a Nice Day..&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 06:14:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/record/m-p/3275049#M783020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T06:14:21Z</dc:date>
    </item>
  </channel>
</rss>

