<?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: run time error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167304#M996243</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is my select query ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT LIPS~VBELN&lt;/P&gt;&lt;P&gt;         LIPS~POSNR&lt;/P&gt;&lt;P&gt;         LIKP~LFART&lt;/P&gt;&lt;P&gt;         LIPS~WERKS&lt;/P&gt;&lt;P&gt;         LIPS~MATNR&lt;/P&gt;&lt;P&gt;         LIPS~CHARG&lt;/P&gt;&lt;P&gt;         LIPS~LFIMG&lt;/P&gt;&lt;P&gt;         LIPS~BWART&lt;/P&gt;&lt;P&gt;         LIPS~VKGRP&lt;/P&gt;&lt;P&gt;         LIPS~MATKL&lt;/P&gt;&lt;P&gt;         LIKP~KUNNR&lt;/P&gt;&lt;P&gt;         LIPS~VRKME&lt;/P&gt;&lt;P&gt;         LIKP~KUNAG INTO TABLE GT_LIPS&lt;/P&gt;&lt;P&gt;         FROM ( LIPS INNER JOIN LIKP&lt;/P&gt;&lt;P&gt;         ON LIPS&lt;SUB&gt;VBELN = LIKP&lt;/SUB&gt;VBELN )&lt;/P&gt;&lt;P&gt;         WHERE LIPS~VBELN IN R_VBELN AND&lt;/P&gt;&lt;P&gt;               LIKP~LFART IN ('YLF','ZLSB','ZLSR') AND&lt;/P&gt;&lt;P&gt;               LIPS~WERKS = P_PLANT AND&lt;/P&gt;&lt;P&gt;               LIPS~SPART = '17' AND&lt;/P&gt;&lt;P&gt;               LIPS~VTWEG = '9E' AND&lt;/P&gt;&lt;P&gt;               LIPS~ERDAT GE GV_START AND&lt;/P&gt;&lt;P&gt;               LIPS~ERDAT LE GV_END AND&lt;/P&gt;&lt;P&gt;               LIPS~LFIMG &amp;gt; 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Jul 2008 14:19:10 GMT</pubDate>
    <dc:creator>SG141</dc:creator>
    <dc:date>2008-07-14T14:19:10Z</dc:date>
    <item>
      <title>run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167297#M996236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My program is ending with run time error..... &lt;STRONG&gt;SAPSQL_STMNT_TOO_LARGE&lt;/STRONG&gt; what does it mean.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 14:10:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167297#M996236</guid>
      <dc:creator>SG141</dc:creator>
      <dc:date>2008-07-14T14:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167298#M996237</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 SQL statement,I mean the SELECT Query you have written,&lt;/P&gt;&lt;P&gt;Runtime Error is occuring from that Section.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to SAP it occurs duu to System is unable to handle the Number of Objects you have selected through the SELECT Query.Diviode the data into smaller chunks and Seclect accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ABAP runtime environment does not support large WHERE conditions (&amp;gt; 64 KB).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 14:13:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167298#M996237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T14:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167299#M996238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Post your SELECT statement here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The WHERE clause could be too large or you have included lots of large ranges.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 14:14:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167299#M996238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T14:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167300#M996239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthik,&lt;/P&gt;&lt;P&gt;    Check  SAP Note: 434625.&lt;/P&gt;&lt;P&gt;also see this thread:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapfans.com/forums/viewtopic.php?p=118964&amp;amp;sid=40cc28887cb425484f244922868682b5" target="test_blank"&gt;http://www.sapfans.com/forums/viewtopic.php?p=118964&amp;amp;sid=40cc28887cb425484f244922868682b5&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 14:14:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167300#M996239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T14:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167301#M996240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the SELECT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might have moving the data into Workarea instead of table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change SELECT&lt;/P&gt;&lt;P&gt;              FROM&lt;/P&gt;&lt;P&gt;               INTO TABLE&lt;/P&gt;&lt;P&gt;           WHERE conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kannaiah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 14:15:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167301#M996240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T14:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167302#M996241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kratik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This has occured because the number objects selected by the selection screen are not handled by the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sravanthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 14:15:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167302#M996241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T14:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167303#M996242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Are you using select-options, if that is the case then 'IN' statement of your select query used has a limitation that if the no. of entries are large ( may be more than 3000 ) then you &lt;/P&gt;&lt;P&gt;will get a short dump . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With luck,&lt;/P&gt;&lt;P&gt;Pritam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 14:16:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167303#M996242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T14:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167304#M996243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is my select query ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT LIPS~VBELN&lt;/P&gt;&lt;P&gt;         LIPS~POSNR&lt;/P&gt;&lt;P&gt;         LIKP~LFART&lt;/P&gt;&lt;P&gt;         LIPS~WERKS&lt;/P&gt;&lt;P&gt;         LIPS~MATNR&lt;/P&gt;&lt;P&gt;         LIPS~CHARG&lt;/P&gt;&lt;P&gt;         LIPS~LFIMG&lt;/P&gt;&lt;P&gt;         LIPS~BWART&lt;/P&gt;&lt;P&gt;         LIPS~VKGRP&lt;/P&gt;&lt;P&gt;         LIPS~MATKL&lt;/P&gt;&lt;P&gt;         LIKP~KUNNR&lt;/P&gt;&lt;P&gt;         LIPS~VRKME&lt;/P&gt;&lt;P&gt;         LIKP~KUNAG INTO TABLE GT_LIPS&lt;/P&gt;&lt;P&gt;         FROM ( LIPS INNER JOIN LIKP&lt;/P&gt;&lt;P&gt;         ON LIPS&lt;SUB&gt;VBELN = LIKP&lt;/SUB&gt;VBELN )&lt;/P&gt;&lt;P&gt;         WHERE LIPS~VBELN IN R_VBELN AND&lt;/P&gt;&lt;P&gt;               LIKP~LFART IN ('YLF','ZLSB','ZLSR') AND&lt;/P&gt;&lt;P&gt;               LIPS~WERKS = P_PLANT AND&lt;/P&gt;&lt;P&gt;               LIPS~SPART = '17' AND&lt;/P&gt;&lt;P&gt;               LIPS~VTWEG = '9E' AND&lt;/P&gt;&lt;P&gt;               LIPS~ERDAT GE GV_START AND&lt;/P&gt;&lt;P&gt;               LIPS~ERDAT LE GV_END AND&lt;/P&gt;&lt;P&gt;               LIPS~LFIMG &amp;gt; 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 14:19:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167304#M996243</guid>
      <dc:creator>SG141</dc:creator>
      <dc:date>2008-07-14T14:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167305#M996244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Karthik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just refer:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="407146"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is exactly same what you are facing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 14:19:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167305#M996244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T14:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167306#M996245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;R_VBELN is probably filled in somewhere else in the program and has too many entries for the database to handle. You can correct this by using another JOIN or FOR ALL ENTRIES.&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, 14 Jul 2008 14:38:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/4167306#M996245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T14:38:45Z</dc:date>
    </item>
  </channel>
</rss>

