<?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 problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem/m-p/4856563#M1135686</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;You can ask to your BASIS team to change the execution time before it goes to dump. I think the 1500sec is too short. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your RBKP issue check the program on what fields is use then for performance wise make a one select and append in your created internal table then make a loop, in your WHERE condition check if you can use primary key namely BELNR and GJAHR in your selection-screen.  to reduce execution time it really depends on the way of selecting of data and how many is the data. Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Nov 2008 10:01:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-28T10:01:19Z</dc:date>
    <item>
      <title>performance problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem/m-p/4856562#M1135685</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;      I have one issue like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; there is one report . on executing it , it is taking more exeution time . when the execution time limit is more than 1500 sec it is going for short dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have debugged the program . i found at one select statement it is taking more time . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the select stmt is like (select * from rbkp) how should i know which fields i have to select instead of select * frm rbkp table. how should i know whether i have to increase the where conditions??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;finally how  should i reduce the execution time limit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2008 09:33:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem/m-p/4856562#M1135685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-28T09:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: performance problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem/m-p/4856563#M1135686</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;You can ask to your BASIS team to change the execution time before it goes to dump. I think the 1500sec is too short. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your RBKP issue check the program on what fields is use then for performance wise make a one select and append in your created internal table then make a loop, in your WHERE condition check if you can use primary key namely BELNR and GJAHR in your selection-screen.  to reduce execution time it really depends on the way of selecting of data and how many is the data. Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2008 10:01:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem/m-p/4856563#M1135686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-28T10:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: performance problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem/m-p/4856564#M1135687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How should i know which fields i have to select instead of select * frm rbkp table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This Depends on your application needs.&lt;/P&gt;&lt;P&gt;Check the internal table that  needs to be filled&lt;/P&gt;&lt;P&gt;from rbkp table, and if it doesn't have all teh&lt;/P&gt;&lt;P&gt;fileds of rbkp, just extract those fileds that are&lt;/P&gt;&lt;P&gt;in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the internal table doesn't have any specific fields&lt;/P&gt;&lt;P&gt;and is just like rbkp, then check u r application&lt;/P&gt;&lt;P&gt;needs and retrieve those data,also change your internal table&lt;/P&gt;&lt;P&gt;with only those fields that are required in u r application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How should i know whether i have to increase the where conditions??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again Where condition depends on u r application,&lt;/P&gt;&lt;P&gt;try giving as many fields as possible in where condition&lt;/P&gt;&lt;P&gt;that helps to minimise the DB execution time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is suggestable to give all the key fields of the table&lt;/P&gt;&lt;P&gt;in the where clause for better performance if possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2008 19:18:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem/m-p/4856564#M1135687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-05T19:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: performance problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem/m-p/4856565#M1135688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RBKP is a table having 129 fields.By using select * will result in execution of the program for a long time.Instead you can select the required fields from RBKP by checking which fields are being used from this table in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is always a good practice to use all the primary key fields of the table in the where condition of the select statement.If it is not possible to use a primary index then atleast any of the secondary index must be used which will improve the performance of the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 05:33:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-problem/m-p/4856565#M1135688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-08T05:33:15Z</dc:date>
    </item>
  </channel>
</rss>

