<?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 ABAP runtime error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030543#M83660</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;  Can you send the dump details as it would help to analyse the problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Dec 2005 07:47:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-07T07:47:25Z</dc:date>
    <item>
      <title>time_out ABAP runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030541#M83658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to fix a program in which when I don't specify a material and storage location in the select-options in the selection screen and run the program it takes a long time to respond and it produces time out ABAP runtime error. Below is the select-options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK BLOCK1 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;PARAMETER: SP_PLANT LIKE MARD-WERKS OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: SO_MATNO FOR MARD-MATNR,&lt;/P&gt;&lt;P&gt;                SO_MGRP FOR MARA-MATKL DEFAULT 'PA001'  to  'PA006',&lt;/P&gt;&lt;P&gt;                SO_SLOC FOR MARD-LGORT.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK BLOCK1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So after entering the plant in the select options and press F8 after a while the above error is created. Is there a way to fix this? Thanks and good day!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 07:41:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030541#M83658</guid>
      <dc:creator>aris_hidalgo</dc:creator>
      <dc:date>2005-12-07T07:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: time_out ABAP runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030542#M83659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think Try to give some conditions to fetch the data..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think it is trying to read the Full table with large volume of data...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the selects also...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 07:46:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030542#M83659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-07T07:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: time_out ABAP runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030543#M83660</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;  Can you send the dump details as it would help to analyse the problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 07:47:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030543#M83660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-07T07:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: time_out ABAP runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030544#M83661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;      your program must be having a select query whihc is selecting records from a sap table like MARA or MARC, which may contains thousands of records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whenever you specify the the materlial and plant..th quey might have been fetchng the records based on that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NB. see the where condition of your select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if you dont specify..its trying to fetch all the thousands of record...it takes lots of time, specially if use select..endselect...and thats why the time out error might have come.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward points if it answer your query&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 07:49:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030544#M83661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-07T07:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: time_out ABAP runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030545#M83662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem with selects....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 07:49:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030545#M83662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-07T07:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: time_out ABAP runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030546#M83663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys I think the problem lies in the select statement of the program. Below is the select statement. Notice the where condition a&lt;SUB&gt;matnr IN so_matno AND a&lt;/SUB&gt;lgort IN so_sloc. Below is one of the select statements that contains these where clauses:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT A~WERKS&lt;/P&gt;&lt;P&gt;       A~MATNR&lt;/P&gt;&lt;P&gt;       A~LABST&lt;/P&gt;&lt;P&gt;       A~LGORT&lt;/P&gt;&lt;P&gt;       A~LGPBE&lt;/P&gt;&lt;P&gt;       B~MATKL&lt;/P&gt;&lt;P&gt;       B~MEINS&lt;/P&gt;&lt;P&gt;   INTO (ITAB_1-GD_RPLANT, ITAB_1-GD_RMATNO, ITAB_1-GD_RQTY,&lt;/P&gt;&lt;P&gt;         ITAB_1-GD_RSLOC, ITAB_1-GD_RSBIN, ITAB_1-GD_RMGRP,&lt;/P&gt;&lt;P&gt;         ITAB_1-GD_RUNIT)&lt;/P&gt;&lt;P&gt;   FROM ( MARD AS A INNER JOIN MARA AS B ON A&lt;SUB&gt;MATNR = B&lt;/SUB&gt;MATNR )&lt;/P&gt;&lt;P&gt;   WHERE A~WERKS = SP_PLANT     AND&lt;/P&gt;&lt;P&gt;         A~MATNR IN SO_MATNO    AND&lt;/P&gt;&lt;P&gt;         A~LGORT IN SO_SLOC     AND&lt;/P&gt;&lt;P&gt;         A~LGPBE IN SO_SBIN     AND&lt;/P&gt;&lt;P&gt;         A~LABST &amp;lt;&amp;gt; 0           AND&lt;/P&gt;&lt;P&gt;         B~MATKL IN SO_MGRP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND ITAB_1.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 08:00:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030546#M83663</guid>
      <dc:creator>aris_hidalgo</dc:creator>
      <dc:date>2005-12-07T08:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: time_out ABAP runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030547#M83664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Viraylab,&lt;/P&gt;&lt;P&gt;I think it is because the select ...end select consuming too much time.&lt;/P&gt;&lt;P&gt;Try to use INTO CORRESPONDING FIELDS OF TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF T_ITAB ,&lt;/P&gt;&lt;P&gt;       &lt;/P&gt;&lt;P&gt;       WERKS TYPE MARD-WERKS,&lt;/P&gt;&lt;P&gt;       MATNR TYPE MARD-MATNR, &lt;/P&gt;&lt;P&gt;       LABST TYPE MARD-LABST,&lt;/P&gt;&lt;P&gt;       LGPBE TYPE MARD-LGPBE,&lt;/P&gt;&lt;P&gt;       MATKL TYPE MARA-MATKL,&lt;/P&gt;&lt;P&gt;       MEINS TYPE MARA-MEINS,&lt;/P&gt;&lt;P&gt;       &lt;/P&gt;&lt;P&gt;       END OF T_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ITAB_1 TYPE T_ITAB OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT A~WERKS&lt;/P&gt;&lt;P&gt;A~MATNR&lt;/P&gt;&lt;P&gt;A~LABST&lt;/P&gt;&lt;P&gt;A~LGORT&lt;/P&gt;&lt;P&gt;A~LGPBE&lt;/P&gt;&lt;P&gt;B~MATKL&lt;/P&gt;&lt;P&gt;B~MEINS&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE ITAB_1 &lt;/P&gt;&lt;P&gt;FROM MARD AS A INNER JOIN MARA AS B &lt;/P&gt;&lt;P&gt;ON A&lt;SUB&gt;MATNR = B&lt;/SUB&gt;MATNR &lt;/P&gt;&lt;P&gt;WHERE A~WERKS = SP_PLANT AND&lt;/P&gt;&lt;P&gt;A~MATNR IN SO_MATNO AND&lt;/P&gt;&lt;P&gt;A~LGORT IN SO_SLOC AND&lt;/P&gt;&lt;P&gt;A~LGPBE IN SO_SBIN AND&lt;/P&gt;&lt;P&gt;A~LABST &amp;lt;&amp;gt; 0 AND&lt;/P&gt;&lt;P&gt;B~MATKL IN SO_MGRP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 08:17:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030547#M83664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-07T08:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: time_out ABAP runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030548#M83665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;If you don't specify any value for material and storage location then all the values will be fetched from the table.&lt;/P&gt;&lt;P&gt;Either make those fields as mandatory or use PARAMETERS for those fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Abdul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 08:18:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030548#M83665</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2005-12-07T08:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: time_out ABAP runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030549#M83666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT A~WERKS
A~MATNR
A~LABST
A~LGORT
A~LGPBE
B~MATKL
B~MEINS
INTO TABLE ITAB_1 
FROM MARD AS A INNER JOIN MARA AS B 
ON A~MATNR = B~MATNR 
WHERE A~WERKS = SP_PLANT AND
A~MATNR IN SO_MATNO AND
A~LGORT IN SO_SLOC AND
A~LGPBE IN SO_SBIN AND
A~LABST &amp;lt;&amp;gt; 0 AND
B~MATKL IN SO_MGRP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Into corresponding will icrease the load..&lt;/P&gt;&lt;P&gt;avoid that ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 08:21:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030549#M83666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-07T08:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: time_out ABAP runtime error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030550#M83667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you may restrict the number of records being selected. Use the addition UP TO n ROWS in the SELECT ... FROM statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It may be convenient to have a Parameter P_MAXREC type SYDBCNT on the selection-screen with a default of (you decide). Or try what is a good value to avoid timeouts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2005 09:03:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-abap-runtime-error/m-p/1030550#M83667</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2005-12-07T09:03:07Z</dc:date>
    </item>
  </channel>
</rss>

