<?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 Error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-error/m-p/6330797#M1396060</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 should only use the variant ... INTO CORRESPONDING FIELDS ... with large volumes of data because otherwise the time required to compare the field names in the name table is too high&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;better to use into table ranther than into corresponding fields.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT FIELDS FROM LTAP&lt;/P&gt;&lt;P&gt;INTO TABLE ILTAP &lt;/P&gt;&lt;P&gt;WHERE LGNUM = T3_LGNUM&lt;/P&gt;&lt;P&gt;AND VLTYP IN IVLTYP &lt;/P&gt;&lt;P&gt;AND VLPLA IN IVLPLA &lt;/P&gt;&lt;P&gt;AND NLTYP IN INLTYP &lt;/P&gt;&lt;P&gt;AND NLPLA IN INLPLA &lt;/P&gt;&lt;P&gt;AND RLTYP IN IRLTYP &lt;/P&gt;&lt;P&gt;AND RLPLA IN IRLPLA &lt;/P&gt;&lt;P&gt;AND PQUIT IN PQUIT&lt;/P&gt;&lt;P&gt;AND LTAP_SEL-WHERE_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Works like ... INTO wa, except that the selected data is not assigned to the internal table itab line by line, but in packets of n lines. The old contents of itab are overwritten. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;n &amp;lt;= 0 causes a runtime error. &lt;/P&gt;&lt;P&gt;Internally, n is placed in a type I field. Here, the usual conversion rules apply . &lt;/P&gt;&lt;P&gt;After leaving the processing loop, the contents of the internal table itab are undefined. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nelson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Nov 2009 07:05:10 GMT</pubDate>
    <dc:creator>nelsonkarunakar_darla2</dc:creator>
    <dc:date>2009-11-17T07:05:10Z</dc:date>
    <item>
      <title>Time Out Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-error/m-p/6330796#M1396059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting Time Out Error in the following  select query while executing the Transaction  LT22 using one varient.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT (LTAP_FIELDS-FIELDS) FROM LTAP&lt;/P&gt;&lt;P&gt;  INTO CORRESPONDING FIELDS OF TABLE ILTAP PACKAGE SIZE MAX_LTAP&lt;/P&gt;&lt;P&gt;  WHERE LGNUM = T3_LGNUM&lt;/P&gt;&lt;P&gt;    AND ( VLTYP IN IVLTYP AND VLPLA IN IVLPLA  AND&lt;/P&gt;&lt;P&gt;          NLTYP IN INLTYP AND NLPLA IN INLPLA  AND&lt;/P&gt;&lt;P&gt;          RLTYP IN IRLTYP AND RLPLA IN IRLPLA )&lt;/P&gt;&lt;P&gt;    AND PQUIT IN PQUIT&lt;/P&gt;&lt;P&gt;    AND (LTAP_SEL-WHERE_TAB).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you suggest what should do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 06:04:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-error/m-p/6330796#M1396059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T06:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Time Out Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-error/m-p/6330797#M1396060</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 should only use the variant ... INTO CORRESPONDING FIELDS ... with large volumes of data because otherwise the time required to compare the field names in the name table is too high&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;better to use into table ranther than into corresponding fields.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT FIELDS FROM LTAP&lt;/P&gt;&lt;P&gt;INTO TABLE ILTAP &lt;/P&gt;&lt;P&gt;WHERE LGNUM = T3_LGNUM&lt;/P&gt;&lt;P&gt;AND VLTYP IN IVLTYP &lt;/P&gt;&lt;P&gt;AND VLPLA IN IVLPLA &lt;/P&gt;&lt;P&gt;AND NLTYP IN INLTYP &lt;/P&gt;&lt;P&gt;AND NLPLA IN INLPLA &lt;/P&gt;&lt;P&gt;AND RLTYP IN IRLTYP &lt;/P&gt;&lt;P&gt;AND RLPLA IN IRLPLA &lt;/P&gt;&lt;P&gt;AND PQUIT IN PQUIT&lt;/P&gt;&lt;P&gt;AND LTAP_SEL-WHERE_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Works like ... INTO wa, except that the selected data is not assigned to the internal table itab line by line, but in packets of n lines. The old contents of itab are overwritten. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;n &amp;lt;= 0 causes a runtime error. &lt;/P&gt;&lt;P&gt;Internally, n is placed in a type I field. Here, the usual conversion rules apply . &lt;/P&gt;&lt;P&gt;After leaving the processing loop, the contents of the internal table itab are undefined. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nelson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 07:05:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-error/m-p/6330797#M1396060</guid>
      <dc:creator>nelsonkarunakar_darla2</dc:creator>
      <dc:date>2009-11-17T07:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Time Out Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-error/m-p/6330798#M1396061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;nobody can really help you because the given information is useless:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your WHERE-condition is completely dynamic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+ the in-clause are dynamic you must specifiy their content,&lt;/P&gt;&lt;P&gt;+ and the last condition is a dynamic condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thread should be locked, and you should start with SQL_Trace (see top thread) and come back with details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2009 09:02:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-error/m-p/6330798#M1396061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T09:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: Time Out Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-error/m-p/6330799#M1396062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message - Please see &lt;SPAN __jive_macro_name="thread" id="1283414"&gt;&lt;/SPAN&gt; before posting - post locked&lt;/SPAN&gt;&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, 17 Nov 2009 14:24:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-error/m-p/6330799#M1396062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-17T14:24:47Z</dc:date>
    </item>
  </channel>
</rss>

