<?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 regarding performance issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-performance-issue/m-p/2343355#M516702</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts&lt;/P&gt;&lt;P&gt;suppose one program performance will take 12 hour,regarding performance tunning technique used i minimised 12 hr to 8 hr.&lt;/P&gt;&lt;P&gt;the main question is again what r the methods/performance that we have to use &lt;/P&gt;&lt;P&gt;that decreases 8 hr to 2 hr.i faced recently this question from ibm.&lt;/P&gt;&lt;P&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;subhasis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Jun 2007 09:32:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-08T09:32:43Z</dc:date>
    <item>
      <title>regarding performance issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-performance-issue/m-p/2343355#M516702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts&lt;/P&gt;&lt;P&gt;suppose one program performance will take 12 hour,regarding performance tunning technique used i minimised 12 hr to 8 hr.&lt;/P&gt;&lt;P&gt;the main question is again what r the methods/performance that we have to use &lt;/P&gt;&lt;P&gt;that decreases 8 hr to 2 hr.i faced recently this question from ibm.&lt;/P&gt;&lt;P&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;subhasis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 09:32:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-performance-issue/m-p/2343355#M516702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T09:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: regarding performance issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-performance-issue/m-p/2343356#M516703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) Dont fire select query on same DB more than one time.&lt;/P&gt;&lt;P&gt;2) Check if itab is not initial when using FOR ALL ENTRIES.&lt;/P&gt;&lt;P&gt;3) Avoid two if condition for the radiobuttons having common radiobutton group like LIST &amp;amp; FORM in this case.&lt;/P&gt;&lt;P&gt;4) before creating field ALV stuff check output itab is not inital.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Before selecting sort the internal tables by the key fields.&lt;/P&gt;&lt;P&gt;2. Might be the internal table data is more use BINARY SEARCH when reading a table with key.&lt;/P&gt;&lt;P&gt;3. Use workareas instead getting data into internal table header.&lt;/P&gt;&lt;P&gt;4. For MODIFY statement give the row no. to modify with the values.&lt;/P&gt;&lt;P&gt;e.g: INDEX row_no TRANSPORTING FROM wa.&lt;/P&gt;&lt;P&gt;5. Clear fields, workareas whenever there is no use. FREE the tables which u don't require for further processing.&lt;/P&gt;&lt;P&gt;6. Give as many conditions while selecting data from database tables in WHERE conditions.&lt;/P&gt;&lt;P&gt;7. Don't use System variables directly like SY-INDEX while modifying or any process instead assign this value to ur local variable and use it.&lt;/P&gt;&lt;P&gt;8. Before selecting data from database tables using FOR ALL ENTRIES OF TABLE itab check whether the internal table u r using contains any data.&lt;/P&gt;&lt;P&gt;9. Instead of MOVE-CORRESPONDING assign the values directly to the fields of internal table and append&lt;/P&gt;&lt;P&gt;rewards points if help full&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;suresh.d&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 10:58:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-performance-issue/m-p/2343356#M516703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T10:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: regarding performance issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-performance-issue/m-p/2343357#M516704</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;Refer 'Tips and Trics' section of se30  tcode. i.e. performance tuning here you will get all important tips and trics.. that is more than suffient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, few tips are here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP performance is devided in three types 1. Database 2. ABAP 3. System&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generally system performance is constant and handled by applicaiton so ignore it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Most important is u must imporve database performance which load can be shared by ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DAtabase :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Donot use into  corrosponding fields clause&lt;/P&gt;&lt;P&gt;2. use only KEY fields in where condition&lt;/P&gt;&lt;P&gt;3. donot use select * inseead use select f1 f2.&lt;/P&gt;&lt;P&gt;4. use for all enries wherever necessary&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. to read another itab inside a loop do not use another loop instead use read table stmt with with BINARY SEARCH.&lt;/P&gt;&lt;P&gt;2. Try to use field symbol this will improeve performance .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;jogdand M B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 11:21:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-performance-issue/m-p/2343357#M516704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T11:21:19Z</dc:date>
    </item>
  </channel>
</rss>

