<?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 tuning in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355744#M177585</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please do send me the PDF , as it wud be most useful for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my mail-id is rajagurrala@gmail.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 May 2006 12:11:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-29T12:11:15Z</dc:date>
    <item>
      <title>performance tuning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355736#M177577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.how do we start/do the performance tuning?&lt;/P&gt;&lt;P&gt;2.we can adjust/re-built the select statments if they are taking much processing time..but is there any thing else where we can improve the performance other than select satements in the program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 11:15:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355736#M177577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T11:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: performance tuning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355737#M177578</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;Take a look at these blogs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/people/rich.heilman2/blog/2006/03/07/using-field-symbols-in-loop-statements--performance-boost&lt;/P&gt;&lt;P&gt;/people/sergio.ferrari2/blog/2006/01/18/simple-abap-benchmark&lt;/P&gt;&lt;P&gt;/people/rob.burbank/blog/2006/02/07/performance-of-nested-loops&lt;/P&gt;&lt;P&gt;/people/harry.dietz/blog/2005/10/28/performance-improvement-hints-3-internal-table--fill-and-read&lt;/P&gt;&lt;P&gt;/people/harry.dietz/blog/2005/11/03/performance-improvement-hints-4-loop-at-itab-where&lt;/P&gt;&lt;P&gt;/people/harry.dietz/blog/2005/10/11/performance-improvement-hints-date-time-timestamps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 11:20:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355737#M177578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T11:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: performance tuning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355738#M177579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;&amp;gt;1.how do we start/do the performance tuning?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;execute se30 and give your program name or transaction code and then execute.when finished you can analyse how much time your program is taking at the application server and database server level.you will get the time in micro seconds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to know which select query is taking much time then you need to do the sql trace using the transaction st05.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please go thru the documents in &lt;A href="http://help.sap.com" target="test_blank"&gt;http://help.sap.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;.we can adjust/re-built the select statments if they are taking much processing time..but is there any thing else where we can improve the performance other than select satements in the program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Primarily the performance issue generally come from the program taking much time at the database server level.Remember we can have only one database.&lt;/P&gt;&lt;P&gt;dont use select * instead use select with the respective field addition.don't use select single if you intend to read more than once from the same table.dont use select statement between loop and endloop.avoid joins whenever possible use select for all entries or views instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can also fine tune your program at the application server level.&lt;/P&gt;&lt;P&gt;here are the tips.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use loop at assigning variant if the loop pass is more than 10 this will improve the performance when compared to loop at itab into variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dont use nested loops like.&lt;/P&gt;&lt;P&gt;loop at itab1.&lt;/P&gt;&lt;P&gt; loop at itab2.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;instead use&lt;/P&gt;&lt;P&gt;loop at itab1.&lt;/P&gt;&lt;P&gt; read table itab2...&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will clarify your basic doubts regarding performacne tuning...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 11:25:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355738#M177579</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-05-29T11:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: performance tuning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355739#M177580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;GOOD&lt;/P&gt;&lt;P&gt;GO THROUGH THESE LINKS WHICH WILL GIVE YOU THE BRIEF IDEA ABOUT THE PERFORMANCE TUNING.&lt;/P&gt;&lt;P&gt;&lt;A href="http://web.mit.edu/sapr3/docs/webdocs/getstarted/gsTABLEVIEW.html" target="test_blank"&gt;http://web.mit.edu/sapr3/docs/webdocs/getstarted/gsTABLEVIEW.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.niraj.tripod.com/id19.html" target="test_blank"&gt;http://sap.niraj.tripod.com/id19.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/Userexit_List.htm" target="test_blank"&gt;http://www.planetsap.com/Userexit_List.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.allsaplinks.com/material.html" target="test_blank"&gt;http://www.allsaplinks.com/material.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap-function.htm" target="test_blank"&gt;http://www.sap-img.com/abap-function.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/840ad679-0601-0010-cd8e-9989fd650822" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/840ad679-0601-0010-cd8e-9989fd650822&lt;/A&gt;&lt;/P&gt;&lt;P&gt;SLDB-To find out the logical database details&lt;/P&gt;&lt;P&gt;&lt;A href="http://de.geocities.com/rafaelreichle/abapkeywords.html" target="test_blank"&gt;http://de.geocities.com/rafaelreichle/abapkeywords.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;STMS-Transport Management System&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.kabai.com/abaps/q.htm" target="test_blank"&gt;http://www.kabai.com/abaps/q.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.skytechnologies.com.au/default_files/job_scheduling.htm" target="test_blank"&gt;http://www.skytechnologies.com.au/default_files/job_scheduling.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/fmodules/fmsfield.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/fmodules/fmsfield.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/59/cd7daa07d711d5b66f006094192fe3/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/59/cd7daa07d711d5b66f006094192fe3/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapfriends.com/sapstuff.html" target="test_blank"&gt;http://www.sapfriends.com/sapstuff.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap4.com" target="test_blank"&gt;http://www.sap4.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://esnips.com/webfolder/59b7ad16-ec4c-4628-9677-0ed83278d97f" target="test_blank"&gt;http://esnips.com/webfolder/59b7ad16-ec4c-4628-9677-0ed83278d97f&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://mitvma.mit.edu/sapweb/detail.html" target="test_blank"&gt;http://mitvma.mit.edu/sapweb/detail.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;P&gt;MRUTYUN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 11:29:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355739#M177580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T11:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: performance tuning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355740#M177581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi hakim,&lt;/P&gt;&lt;P&gt;thanks for quick reply...&lt;/P&gt;&lt;P&gt;i know the ptuning at data server level.&lt;/P&gt;&lt;P&gt;i can't understand application server level...cud u plz explain that ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please mention any other concers at app server level other than the one you mentioned...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 11:46:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355740#M177581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T11:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: performance tuning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355741#M177582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a very good PDF on this. Please give me your email id, I will send the same to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Also, reward points if it helps in any way.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit Mishra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 11:52:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355741#M177582</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T11:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: performance tuning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355742#M177583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;your open sql statements will perform operations at the database server level..right..while the other other ABAP statements like LOOP,ENDLOOP etc will perform operation at the applciation server level.so i told that you can avoid nested LOOPs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 11:57:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355742#M177583</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-05-29T11:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: performance tuning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355743#M177584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;check this link:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/www.thespot4sap.com/articles/" target="test_blank"&gt;www.thespot4sap.com/articles/&lt;/A&gt; SAPABAPPerformanceTuning_ABAPSort.asp - 21k - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;keerthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 11:58:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355743#M177584</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T11:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: performance tuning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355744#M177585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please do send me the PDF , as it wud be most useful for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my mail-id is rajagurrala@gmail.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 12:11:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355744#M177585</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T12:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: performance tuning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355745#M177586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have sent you the PDF. Please check and confirm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;b&amp;gt;Also, reward points if it helps.&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit Mishra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 12:18:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355745#M177586</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T12:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: performance tuning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355746#M177587</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;A task can be completed either by calling a class or a function module. Calling methods of a global class is faster than calling a function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calling local methods is nearly identical to calling global methods in terms of performance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fields of type-I should be used for typical integral variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are dealing with type-I or integral type-P fields, then use numeric literals or named constants with a number type instead of character strings. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is preferable to use constants instead of literals.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For arithmetic operations, number types should be used instead of the type-N fields. Type-N fields should be used only for pure digit strings that are not intended for calculations e.g. the pin code for a city.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use WHILE instead of a DO-EXIT-ENDDO construction. WHILE statements are easier to understand and faster in execution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is preferable to use CASE statements over IF statements. CASE statements bring clarity to the conditional constructs and are a little faster than IF statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the calling of routines, PERFORM i Of ... statement can be a much faster alternative to using CASE or IF constructs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you specify the type for formal parameters in your source code, the ABAP/4 compiler can optimize your code more thoroughly. In addition, the risk of using the wrong sequence of parameters in a PERFORM statement is much less. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you specify the type of field-symbols and formal parameters in your source code, the ABAP/4 compiler can optimize your code better.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unnecessary MOVEs should be avoided by using the explicit work area operations. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;latheesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2006 12:26:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning/m-p/1355746#M177587</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-29T12:26:31Z</dc:date>
    </item>
  </channel>
</rss>

