<?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: TIME_OUT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536797#M1657085</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;only DOCNR in the table FAGLFLEXA and all key fields are used in where condition RYEAR, RBUKRS and DOCNR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please suggest the solution for TIME_OUT issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;P&gt;Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Feb 2012 03:50:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-02-01T03:50:03Z</dc:date>
    <item>
      <title>TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536795#M1657083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Team&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please check the below mentioned code and suggest me the solution, how to resolve TIME_OUT error issue &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code works like,&lt;/P&gt;&lt;P&gt;its looping 4 times &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 st time, it takes  it_bsis  - 500 records and cross check with table &lt;STRONG&gt;faglflexa&lt;/STRONG&gt; and append into itab&lt;/P&gt;&lt;P&gt;2nd time,  it takesit_bsas1 - 3500000 records and cross check with table &lt;STRONG&gt;faglflexa&lt;/STRONG&gt; and append into itab - here &lt;STRONG&gt;TIME_OUT&lt;/STRONG&gt; error fires&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;find the below mentioned code for your reference&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DO c_4 TIMES.

    CLEAR: gwa_whr_line.
    REFRESH git_whr.
    UNASSIGN &amp;lt;gfs_bsis_bsas&amp;gt;.

    CASE sy-index.
      WHEN c_1.
        CHECK NOT it_bsis IS INITIAL.
        ASSIGN it_bsis TO &amp;lt;gfs_bsis_bsas&amp;gt;.
        lv_flag = c_x.
      WHEN c_2.
        CHECK NOT it_bsas IS INITIAL.
        ASSIGN it_bsas TO &amp;lt;gfs_bsis_bsas&amp;gt;.
        lv_flag = c_x.
      WHEN c_3.
        CHECK NOT it_bsak IS INITIAL.
        ASSIGN it_bsak TO &amp;lt;gfs_bsis_bsas&amp;gt;.
        CONCATENATE 'BUZEI =' '&amp;lt;GFS_BSIS_BSAS&amp;gt;-BUZEI' INTO gwa_whr_line SEPARATED BY space.
        lv_flag = c_x.
      WHEN c_4.
        CHECK NOT it_bsad IS INITIAL.
        ASSIGN it_bsad TO &amp;lt;gfs_bsis_bsas&amp;gt;.
        lv_flag = c_x.
    ENDCASE.

    CHECK lv_flag = c_x.

 if not s_prctr[] is initial.
   SELECT RYEAR
          DOCNR
          RBUKRS
          RTCUR
          RACCT
          PRCTR
          WSL
          DRCRK
          BUDAT
          BUZEI
      FROM faglflexa
      APPENDING TABLE git_faglflexa
        FOR ALL ENTRIES IN &amp;lt;gfs_bsis_bsas&amp;gt;
       WHERE ryear  = &amp;lt;gfs_bsis_bsas&amp;gt;-gjahr
         AND rbukrs = &amp;lt;gfs_bsis_bsas&amp;gt;-bukrs
         AND docnr  = &amp;lt;gfs_bsis_bsas&amp;gt;-belnr
         AND (gwa_whr_line)
         AND prctr IN s_prctr.
 else.
  SELECT ryear
         docnr
         rbukrs
         rtcur
         racct
         prctr
         wsl
         drcrk
         budat
         buzei
         FROM faglflexa
         APPENDING TABLE git_faglflexa
         FOR ALL ENTRIES IN &amp;lt;gfs_bsis_bsas&amp;gt;
         WHERE ryear  = &amp;lt;gfs_bsis_bsas&amp;gt;-gjahr
          AND docnr  = &amp;lt;gfs_bsis_bsas&amp;gt;-belnr
          AND rbukrs = &amp;lt;gfs_bsis_bsas&amp;gt;-bukrs
          AND (gwa_whr_line).
 endif.

 clear lv_flag.
 ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance &lt;/P&gt;&lt;P&gt;Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jan 2012 19:10:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536795#M1657083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-31T19:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536796#M1657084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If docnr = belnr in the table, then you should use belnr rather than docnr in the select. Failing that, add ldnr to the select if you can determine what values to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jan 2012 19:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536796#M1657084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-31T19:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536797#M1657085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;only DOCNR in the table FAGLFLEXA and all key fields are used in where condition RYEAR, RBUKRS and DOCNR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please suggest the solution for TIME_OUT issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;P&gt;Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2012 03:50:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536797#M1657085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-01T03:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536798#M1657086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sekahr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you posted two threads on same and one is locked.Can you check the second one .&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>Wed, 01 Feb 2012 05:05:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536798#M1657086</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2012-02-01T05:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536799#M1657087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have declared types as per table &lt;STRONG&gt;faglflexa&lt;/STRONG&gt; field sequence&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before checking the for all entries with table &lt;STRONG&gt;faglflexa&lt;/STRONG&gt;, i was used DELETE ADJACENT DUPLICATES FROM it_bsas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after deleted the duplicate records in &lt;STRONG&gt;BSAS&lt;/STRONG&gt; table contains 3500000 records, because of this reason it goes to TIME_OUT error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please suggest the solution to resolve this TIME_OUT error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;P&gt;Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2012 07:40:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536799#M1657087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-01T07:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536800#M1657088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sekhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm seeing that table FAGLFLEXA does not have MANDT for first field but RCLNT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried this SELECT with the CLIENT-SPECIFIED option telling RCLNT = sy-MANDT ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm thinking there might be a problem for the optimizer to use the primary index (its key) of this table.... and this might help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2012 16:04:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536800#M1657088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-01T16:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536801#M1657089</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 do not know about your tables declaration.Declare hashed tables with key fields and see.You need check all the setting to increase your performance .Similarly check the selection criteria.&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>Wed, 01 Feb 2012 16:38:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536801#M1657089</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2012-02-01T16:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536802#M1657090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sekhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The where clause is not in sequence. Correct the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPENDING TABLE will take more time. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also the query is inside Do - ENDD0 which is also not recommended. If you can think of some other logic i believe you can avoid this dump. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also the performance depends on the no. of entries in the FAGLFLEXA table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prathvi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2012 09:17:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536802#M1657090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-02T09:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536803#M1657091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sekhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also after rearranging the sequence of the where clause, Create a secondary index with following fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RCLNT&lt;/P&gt;&lt;P&gt;RYEAR&lt;/P&gt;&lt;P&gt;DOCNR&lt;/P&gt;&lt;P&gt;RBUKRS&lt;/P&gt;&lt;P&gt;PRCTR&lt;/P&gt;&lt;P&gt;BUZEI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will improve the performance of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prathvi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2012 09:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536803#M1657091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-02T09:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536804#M1657092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sekhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;something I forgot to mention, the FOR ALL ENTRIES in problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer to note 48230 explaining why you might be better off with an INNER JOIN..... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Curt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2012 09:56:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536804#M1657092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-02T09:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536805#M1657093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;bsas1 - 3.500.000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what do you expect  ... FOR ALL ENTRIES with 3.5 mio records is nonsense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the result is supposed to be display in ALV or what?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the result good for? Will it be stored to db, then block-procressing is anyway necessary.&lt;/P&gt;&lt;P&gt;It is displayed? Who will view it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the result much smaller, 3.500.000 but much less are return, then do a join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it a db-change, then do not tranfer to ABAP at all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2012 15:13:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536805#M1657093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-02T15:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536806#M1657094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let me give you a reply based on an assumption that the table FAGLFLEXA is basically used for getting the profit centre info.&lt;/P&gt;&lt;P&gt;The given code will take too much time as depending on the number of entries for a given FI document the FOR ALL ENTRIES has to be executed. So i suggest if ur requirement is to get Profit centre info it is better to DELETE ADJACENT DUPLICATES after sorting and then get the required PRCTR info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will be better if you could specify the aim for the FOR ALL ENTRIES query that you have used now, as I believe rest of the info which you have specified in the query other than PRCTR will be available in BSIS and BSAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 11:12:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536806#M1657094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-03T11:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536807#M1657095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bsas1 - 3.500.000&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; what do you expect  ... FOR ALL ENTRIES with 3.5 mio records is nonsense.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; And the result is supposed to be display in ALV or what?&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; What is the result good for? Will it be stored to db, then block-procressing is anyway necessary.&lt;/P&gt;&lt;P&gt;&amp;gt; It is displayed? Who will view it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in real life, the next request at this stage usually is (when the requester recognizes, that the ALV is not working),&lt;/P&gt;&lt;P&gt;if it might be possible to implement a download to flat file, which is supposed to be locally uploaded&lt;/P&gt;&lt;P&gt;to an access database for further processing...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not kidding. &lt;/P&gt;&lt;P&gt;Came across such a thing when two guys where swamping my filesystems with GBs of CSV files...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Volker&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 20:00:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536807#M1657095</guid>
      <dc:creator>volker_borowski2</dc:creator>
      <dc:date>2012-02-03T20:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536808#M1657096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in real life, the next request at this stage usually is (when the requester recognizes, that the ALV is not working),&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Bear in mind that it was Siegfried who first mentioned ALV, not the OP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Who knows how this will be used?&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, 03 Feb 2012 20:10:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536808#M1657096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-03T20:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536809#M1657097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd got that, but I think Siegfrieds question it is a very valid one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am asking the same thing quite frequently when people are selecting tons of data,&lt;/P&gt;&lt;P&gt;and to my suprise people rather often like to extract stuff to process it in the described way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Volker&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 20:42:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536809#M1657097</guid>
      <dc:creator>volker_borowski2</dc:creator>
      <dc:date>2012-02-03T20:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: TIME_OUT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536810#M1657098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A few things I notice...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) 3.5 mil records !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I notice sometimes that certain programmers tend to fetch all the records and then worry about processing them later. Hope this isn't the case and all 3.5 mil are required. &lt;U&gt;If so I wouldn't suggest using for all entries for that much data. Maybe InnerJOINS&lt;/U&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) APPENDING TABLE and usage of (gwa_whr_line)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As your records increase this will be more taxing. Based on a quick test program...for 1 mil records in my system time taken was using 'APPENDING TABLE' was almost twice to INTO TABLE and append to a 'final table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also similar is the case when (gwa_whr_line) doesn't imply anything until sy-index = 3...its bogs down the statement until then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This time would again change for a lot worse if we are talking about SORTED TABLES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Where condition needs to be sequenced according the the key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;II'm not sure though in suggesting a use of 'Views' as my knowledge in that matter would be limited.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Feb 2012 15:07:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out/m-p/8536810#M1657098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-04T15:07:53Z</dc:date>
    </item>
  </channel>
</rss>

