<?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 issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue/m-p/4302446#M1025930</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Deeshanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please have a look into the following SAP Notes, see if it is applicable or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;542484&lt;/P&gt;&lt;P&gt;859991&lt;/P&gt;&lt;P&gt;678397&lt;/P&gt;&lt;P&gt;1173259&lt;/P&gt;&lt;P&gt;396878&lt;/P&gt;&lt;P&gt;330101&lt;/P&gt;&lt;P&gt;515201&lt;/P&gt;&lt;P&gt;953893&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also as rob mentioned could be problem with the internal tables, where data is not populating  and could be problem with the statistics of the table fmioi. So please check the statistics of this table and if needed update the statistics. You can also verify the selectivity of the fields of this table through DB05.Please send us the details of DB05 ouput of each fields of this table so that we can check it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yours Sincerely&lt;/P&gt;&lt;P&gt;Dileep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Aug 2008 16:52:19 GMT</pubDate>
    <dc:creator>former_member251078</dc:creator>
    <dc:date>2008-08-11T16:52:19Z</dc:date>
    <item>
      <title>Performance issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue/m-p/4302442#M1025926</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; I have performance problen following code.It take more than 25 min to retrive data.Can help me to resolve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT refbn rfbos rftyp gjahr wrttp stats twear yyaufnr hkont&lt;/P&gt;&lt;P&gt;             lifnr SUM ( trbtr ) SUM ( fkbtr )&lt;/P&gt;&lt;P&gt;             FROM fmioi INTO TABLE gt_fmioi&lt;/P&gt;&lt;P&gt;             WHERE rldnr = gc_rldnr and &lt;/P&gt;&lt;P&gt;                          gjahr = pa_fyear and &lt;/P&gt;&lt;P&gt;                          fistl IN so_fctr and&lt;/P&gt;&lt;P&gt;                          fonds IN so_fund and &lt;/P&gt;&lt;P&gt;                          fipex IN so_comm and &lt;/P&gt;&lt;P&gt;                          fares = ' ' and&lt;/P&gt;&lt;P&gt;                          measure IN so_fprog and&lt;/P&gt;&lt;P&gt;                         wrttp IN (gc_wrttp_51,gc_wrttp_65) and &lt;/P&gt;&lt;P&gt;                         stats = gc_ststs and &lt;/P&gt;&lt;P&gt;                         fikrs = pa_area&lt;/P&gt;&lt;P&gt;            GROUP BY refbn rfpos rftyp gjahr farea wrttp &lt;/P&gt;&lt;P&gt;                              stats twear yyaufnr hkont fikrs lifnr.  &lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;&lt;U&gt;*I have maintain INDEX for follwing fields&lt;/U&gt;.*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; rldnr = gc_rldnr value = '9A'&lt;/P&gt;&lt;P&gt; gjahr = pa_fyear value  = 2007&lt;/P&gt;&lt;P&gt; fistl IN so_fctr and&lt;/P&gt;&lt;P&gt; fonds IN so_fund and &lt;/P&gt;&lt;P&gt; fipex IN so_comm and &lt;/P&gt;&lt;P&gt;  fares = ' ' and&lt;/P&gt;&lt;P&gt;measure IN so_fprog and&lt;/P&gt;&lt;P&gt;wrttp IN (gc_wrttp_51,gc_wrttp_65) value = 51,65&lt;/P&gt;&lt;P&gt;stats = gc_ststs and &lt;/P&gt;&lt;P&gt; fikrs = pa_area   value = 1000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same thing happen for following code it take more than 25 min.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT trbtr fkbtr wrttp hkont vogjahr voblnr kngjahr knbelnr knbuzei vrefbn vrfpo vrftyp FROM fmifiit&lt;/P&gt;&lt;P&gt;INTO TABLE gt_fmifiit&lt;/P&gt;&lt;P&gt;WHERE fikrs = '1000' and   &lt;/P&gt;&lt;P&gt;          rldnr = gc_rldnr and &lt;/P&gt;&lt;P&gt;                          gjahr = pa_fyear and &lt;/P&gt;&lt;P&gt;                          fistl IN so_fctr and&lt;/P&gt;&lt;P&gt;                          fonds IN so_fund and &lt;/P&gt;&lt;P&gt;                          fipex IN so_comm and &lt;/P&gt;&lt;P&gt;                          fares = ' ' and&lt;/P&gt;&lt;P&gt;                          measure IN so_fprog and&lt;/P&gt;&lt;P&gt;wrttp IN (gc_wrttp_54,gc_wrttp_61,gc_wrttp_66,gc_wrttp_57) and   stats = gc_ststs and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have maintain index which i have specified in where condition.&lt;/P&gt;&lt;P&gt;can u help to reduce the time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Deesanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2008 05:24:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue/m-p/4302442#M1025926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-08T05:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue/m-p/4302443#M1025927</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;use ST05 to find if the select is using the Index u expected. See the Explain function to get more information of the select.&lt;/P&gt;&lt;P&gt;Also check if the select-options that u r passing to the Select are not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;madhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2008 06:12:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue/m-p/4302443#M1025927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-08T06:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue/m-p/4302444#M1025928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've done these SELECTs many times without problem. Your problem is likely either that one or more of so_fctr, so_fund or so_comm is empty or that your database statistics are not up to date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2008 13:23:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue/m-p/4302444#M1025928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-08T13:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue/m-p/4302445#M1025929</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;any summarization do with internal table. But dont do with select statement. Performance will increase.&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;raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Aug 2008 07:12:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue/m-p/4302445#M1025929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-09T07:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Performance issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue/m-p/4302446#M1025930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Deeshanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please have a look into the following SAP Notes, see if it is applicable or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;542484&lt;/P&gt;&lt;P&gt;859991&lt;/P&gt;&lt;P&gt;678397&lt;/P&gt;&lt;P&gt;1173259&lt;/P&gt;&lt;P&gt;396878&lt;/P&gt;&lt;P&gt;330101&lt;/P&gt;&lt;P&gt;515201&lt;/P&gt;&lt;P&gt;953893&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also as rob mentioned could be problem with the internal tables, where data is not populating  and could be problem with the statistics of the table fmioi. So please check the statistics of this table and if needed update the statistics. You can also verify the selectivity of the fields of this table through DB05.Please send us the details of DB05 ouput of each fields of this table so that we can check it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yours Sincerely&lt;/P&gt;&lt;P&gt;Dileep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 16:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-issue/m-p/4302446#M1025930</guid>
      <dc:creator>former_member251078</dc:creator>
      <dc:date>2008-08-11T16:52:19Z</dc:date>
    </item>
  </channel>
</rss>

