<?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/3916659#M938728</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeevitha,&lt;/P&gt;&lt;P&gt;Thanks for the quick response....&lt;/P&gt;&lt;P&gt;All the key fields  / index used in the selection........so everything seems ok....but stll same problm....quarterly the size of the table is increasing by 10000...sizecatagory of dat table is 4 n expected records 100000 to 400000...tables are VBPA &amp;amp; VBFA....both having same.....others are just ok...Any soln&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 May 2008 06:16:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-30T06:16:53Z</dc:date>
    <item>
      <title>Performance....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916653#M938722</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;Can i use PACKAGE SIZE N in SELECT for better performance..as in ECD TEST n ECQ its not possible to check...as there no of records are very less...my problem is prog gets TIMEOUT...for extraction FOR ALL ENTRIES has been used...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 04:21:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916653#M938722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T04:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: Performance....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916654#M938723</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;package size is used only if the data extracted from the Db table is large and if u want to select in package of 100s, for example. &lt;/P&gt;&lt;P&gt;in your case:&lt;/P&gt;&lt;P&gt;Check if the source table which u r using in FOR ALL ENTIRES has duplicate reords. if so delete it. &lt;/P&gt;&lt;P&gt;it would be beter if can post your code here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you should look into your select, i dont think package size will help you here.&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, 30 May 2008 04:29:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916654#M938723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T04:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Performance....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916655#M938724</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 given example for you.r u checking parent table is empty or not.if you didn't check that condition it will take more time to display second table details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check once.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT carrid connid &lt;/P&gt;&lt;P&gt;       FROM spfli &lt;/P&gt;&lt;P&gt;       INTO CORRESPONDING FIELDS OF TABLE entry_tab &lt;/P&gt;&lt;P&gt;       WHERE cityfrom = p_city. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here check condition .it is mandatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if []entry_tab is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT carrid connid fldate &lt;/P&gt;&lt;P&gt;       FROM sflight &lt;/P&gt;&lt;P&gt;       INTO CORRESPONDING FIELDS OF TABLE sflight_tab &lt;/P&gt;&lt;P&gt;       FOR ALL ENTRIES IN entry_tab &lt;/P&gt;&lt;P&gt;       WHERE carrid = entry_tab-carrid AND &lt;/P&gt;&lt;P&gt;             connid = entry_tab-connid. &lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 04:40:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916655#M938724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T04:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: Performance....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916656#M938725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhumita &amp;amp; Jeevitha,&lt;/P&gt;&lt;P&gt;I hav already checked the SELECT stmt....Its ok....&lt;/P&gt;&lt;P&gt;1) INITIAL status of the table checked&lt;/P&gt;&lt;P&gt;2) SORT stmt and DELETE ADJASCENT DUPLICATES stmt used on the table where FOR ALL ENTRIES clause exist&lt;/P&gt;&lt;P&gt;3) all the corresponding tables are also checked INITIAL or not&lt;/P&gt;&lt;P&gt;4) all the internal tables hav been refreshed..........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But still facing the TIMEOUT issue.....problem is ---1 dbtab size is more...How to get out of this issue....Any other soln....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 05:46:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916656#M938725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T05:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Performance....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916657#M938726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeevitha,&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS...........decreases the performance....so whenever possible try to avoid that....you can defuine the fields in sequence as in internal table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 05:49:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916657#M938726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T05:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Performance....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916658#M938727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sagar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just for reference i have given that example to show mandtory condition for all entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it not means write logic like that .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you told 1 dbtab is very high .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how many records you are retriving and based on what condition.check whether you are applying on non secondary index fields it will take nore time to execute.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 05:56:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916658#M938727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T05:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Performance....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916659#M938728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeevitha,&lt;/P&gt;&lt;P&gt;Thanks for the quick response....&lt;/P&gt;&lt;P&gt;All the key fields  / index used in the selection........so everything seems ok....but stll same problm....quarterly the size of the table is increasing by 10000...sizecatagory of dat table is 4 n expected records 100000 to 400000...tables are VBPA &amp;amp; VBFA....both having same.....others are just ok...Any soln&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 06:16:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance/m-p/3916659#M938728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T06:16:53Z</dc:date>
    </item>
  </channel>
</rss>

