<?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: Timed out error - how to avoid it in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595520#M1275344</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should make a trace in SE30 to understand what is taking time to execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it the data selection? Is it the function module? Is it the READ? .. ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(and yes, secondary indexes might of course affect other programs)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 May 2009 10:16:24 GMT</pubDate>
    <dc:creator>Rui_Dantas</dc:creator>
    <dc:date>2009-05-04T10:16:24Z</dc:date>
    <item>
      <title>Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595513#M1275337</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 created a table control and created a transaction to it. In my report, i use a select statement to retrieve data based on one condition from a table ( which doesn't have any index set ). This works fine. Also, the table control works fine when some small amount of data is retreived and displayed. Problem is when i move this to another server where there is huge data, this transaction which should actually display the data, gives a dump saying that it is TIMED OUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this timed out error because of my code or the index in the table which is not set?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code is like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First i select records based on a condition.&lt;/P&gt;&lt;P&gt;then i process the records, using Loop, i pass three fileds of every record into a function module to get other data.&lt;/P&gt;&lt;P&gt;Then i take my necessary data using READ statement .&lt;/P&gt;&lt;P&gt;End the loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How ever, the loop gets executed the no of times equal to the no. of. records retrieved from the transparent table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 07:40:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595513#M1275337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T07:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595514#M1275338</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;In general creating indexes will help you fetch the data from database more quickly. &lt;/P&gt;&lt;P&gt;So try creating index on the table you are accessing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Varun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 08:42:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595514#M1275338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T08:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595515#M1275339</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;Your processing time is more thats why you are getting TIME OUT runtime error.&lt;/P&gt;&lt;P&gt;You need to optimize your code.&lt;/P&gt;&lt;P&gt;Better to debug and observe which logic of the code is taking much time.&lt;/P&gt;&lt;P&gt;If it is SELECT statement then better to use index or provide as many WHERE conditions as possible.&lt;/P&gt;&lt;P&gt;If LOOP is taking time then try to replace that logic with some other approach.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 09:00:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595515#M1275339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T09:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595516#M1275340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can create a secondary index on the table field which you are using in "where"  condition of your select query.&lt;/P&gt;&lt;P&gt;This will reduce the processing time.&lt;/P&gt;&lt;P&gt;Secondly, you can contact your basis team because they can increase that time out value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps in resolving your problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 09:09:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595516#M1275340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T09:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595517#M1275341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Moved to ABAP Performance &amp;amp; Tuning forum...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 09:30:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595517#M1275341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T09:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595518#M1275342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If i create an index in the table for the field iam using in WHERE condition in the select query, wont that affect other programs using the table, as it is a major table of my application and is a customized table.&lt;/P&gt;&lt;P&gt;what would be the impact?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i avoid loop coz i need to pass 3 field data of each record to a function module to get other data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 09:53:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595518#M1275342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T09:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595519#M1275343</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;Creating a secondary index will not affect processing other programs.&lt;/P&gt;&lt;P&gt;I don,t think calling a function module in a loop can be avoided because you have to find values for every record in your internal table and if your function module takes only one value at a time .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 10:10:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595519#M1275343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T10:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595520#M1275344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should make a trace in SE30 to understand what is taking time to execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it the data selection? Is it the function module? Is it the READ? .. ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(and yes, secondary indexes might of course affect other programs)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 10:16:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595520#M1275344</guid>
      <dc:creator>Rui_Dantas</dc:creator>
      <dc:date>2009-05-04T10:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595521#M1275345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; Creating a secondary index will not affect processing other programs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;really, no incorrect .... I definitely influences all changing statements, and it can even influence SELECTS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to select less data for testing, and run SE30 several times =&amp;gt; se hitlist what is expensive?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For your LOOP in LOOP or READ in LOOP, use a sorted table for the inner table, it is the same problem as on the DB without index reading is slow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If DB times are large in hitist, then use SQL-Trace.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 10:41:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595521#M1275345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T10:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595522#M1275346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did run the transaction i have created in se30 and also the function module i am using in the program, in both cases the DATABASE is taking lot of time and not the ABAP or the system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So is it advisable to set some index for the table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But as u guys said it would impact other programs and function modules using this table.&lt;/P&gt;&lt;P&gt;Then what am i supposed to do. Is there any alternate so that i can use something in my program only without changing the table or affecting other modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest something. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 12:46:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595522#M1275346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T12:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595523#M1275347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;run the SQL Trace, it tells you which SELECT or SELECT cause the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The explain tells you which is index is used, check which index is also there, and propose an&lt;/P&gt;&lt;P&gt;index which you would like to create.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before you create an index, you must answer the question: Which other statement work on that table? Are they much more important than my task? Do they change records?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If they are not more important, then you can create an index, but it needs a bit of experience to know&lt;/P&gt;&lt;P&gt;which order of fields should be taken.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 13:09:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595523#M1275347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T13:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595524#M1275348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since this has been moved to performance and tuning, please see &lt;SPAN __jive_macro_name="thread" id="1283414"&gt;&lt;/SPAN&gt; . This will show you the sorts of things you need to look at to help your analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 13:29:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595524#M1275348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T13:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595525#M1275349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The table that i am using is very important as it is using in many function modules and programs.&lt;/P&gt;&lt;P&gt;First five fields of this table including the field MANDT is the primary key to this table. The field i have used in the WHERE condition of my select query is not one among those fields of the primary key.&lt;/P&gt;&lt;P&gt;So possibly if i create an index, it would impact the other modules. So what should be done ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i include one or more field of the primary key fields, would that improve the performance?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz suggest!  I am badly stuck at this point.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 14:48:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595525#M1275349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T14:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595526#M1275350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nobody can really help without seeing your actual SELECT statement. Would you post it please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 14:55:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595526#M1275350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T14:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595527#M1275351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT NAME_ID&lt;/P&gt;&lt;P&gt;             COUNTRY_ID&lt;/P&gt;&lt;P&gt;             STATE_ID&lt;/P&gt;&lt;P&gt;             REF_NO&lt;/P&gt;&lt;P&gt;             APL_CODE&lt;/P&gt;&lt;P&gt;             TOT_AMT&lt;/P&gt;&lt;P&gt;             UPD_DATE&lt;/P&gt;&lt;P&gt;             IL_REF_NO&lt;/P&gt;&lt;P&gt;             IL_NAME&lt;/P&gt;&lt;P&gt;             IL_DATE&lt;/P&gt;&lt;P&gt;             IL_TIME&lt;/P&gt;&lt;P&gt; INTO TABLE LT_TAB&lt;/P&gt;&lt;P&gt; FROM ZDETAILDATA&lt;/P&gt;&lt;P&gt; WHERE    IL_REF_NO NE ' '  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fields NAME_ID, COUNTRY_ID, STATE_ID, REF_NO including MANDT are the Primary key.&lt;/P&gt;&lt;P&gt;There is no index in the table ZDETAILDATA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 15:40:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595527#M1275351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T15:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595528#M1275352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think there's much you can do short of re-thinking your process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if you added an index on IL_REF_NO, it wouldn't help because of the NE. Is IL_REF_NO restricted to just a few values?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 15:46:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595528#M1275352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-04T15:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595529#M1275353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Huum, bad news for you: an index will not help you if what you want is "NE".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Btw, have you confirmed this query is really the problem? Simple test: go to se16, add the NE ' ' selection in your IL_REF_NO field, and check how long it takes to execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rui Pedro Dantas on May 4, 2009 5:47 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2009 15:47:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595529#M1275353</guid>
      <dc:creator>Rui_Dantas</dc:creator>
      <dc:date>2009-05-04T15:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595530#M1275354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all your replies. I applied sort and Binary search in the code.&lt;/P&gt;&lt;P&gt;Index is not affecting the performance as SELECT is not taking much time.&lt;/P&gt;&lt;P&gt;But i still have the runtime error problem but it is because of the Funtion module i am calling&lt;/P&gt;&lt;P&gt;in the loop. Data overflow is occuring at one field which is an amount field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 11:20:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595530#M1275354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T11:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595531#M1275355</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;just check the data type of the amount field in the FM and also compare it with the database table.... if its same then paste the code....&lt;/P&gt;&lt;P&gt;if it differs then probably try changing the data type of the FM or try to search for a different FM or check if you can get different logic...&lt;/P&gt;&lt;P&gt;also paste the code so that we can think of an alternative as well...&lt;/P&gt;&lt;P&gt;paste the FM in the loop which you are using and also the structure of the internal table ...&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 11:27:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595531#M1275355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T11:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: Timed out error - how to avoid it</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595532#M1275356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cannot change the FM and the field in the FM in which data overflow is occuring is not used in my program code. I have reported the same so probably requirement would be modified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 14:34:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timed-out-error-how-to-avoid-it/m-p/5595532#M1275356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T14:34:03Z</dc:date>
    </item>
  </channel>
</rss>

