<?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: Runtime Error in SQL command .. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349315#M175406</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all for your answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some important fact is that the same SQL command works so good for one company and aborts the program for the bigest company; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and (i have a break point in both executions) the data searched by the SQL do not exist in the table for both cases (i look this by search myself the data via SE16)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i execute with one company (not the bigest) the program continues and the table are empty; when i execute with the bigest company, the program aborts; but i know the result table would be empty too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, if the problem is the huge BD access, does somebody knows how can i eliminate the error ??  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could not change the program logic for reduces the SQL acces, because the program has been working since before and it's defined by the final user.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a technical way to solve this ?? Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Frank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 May 2006 00:18:32 GMT</pubDate>
    <dc:creator>former_member425121</dc:creator>
    <dc:date>2006-05-24T00:18:32Z</dc:date>
    <item>
      <title>Runtime Error in SQL command ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349309#M175400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a report wich terminates with a dump message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error is in an SQL command, here the program aborts:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT KUNNR KKBER KLIMK SAUFT SKFOR SSOBL&lt;/P&gt;&lt;P&gt;    INTO TABLE I_KNKK&lt;/P&gt;&lt;P&gt;    FROM KNKK&lt;/P&gt;&lt;P&gt;   WHERE KUNNR IN R_KUNNR&lt;/P&gt;&lt;P&gt;     AND KKBER IN R_KKBER&lt;/P&gt;&lt;P&gt;     AND SBGRP IN S_SBGRP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF I_KNKK OCCURS 0,&lt;/P&gt;&lt;P&gt;      KUNNR LIKE KNKK-KUNNR,&lt;/P&gt;&lt;P&gt;      KKBER LIKE KNKK-KKBER,&lt;/P&gt;&lt;P&gt;      KLIMK LIKE KNKK-KLIMK,&lt;/P&gt;&lt;P&gt;      SAUFT LIKE KNKK-SAUFT,&lt;/P&gt;&lt;P&gt;      SKFOR LIKE KNKK-SKFOR,&lt;/P&gt;&lt;P&gt;      SSOBL LIKE KNKK-SSOBL,&lt;/P&gt;&lt;P&gt;      SBGRP LIKE KNKK-SBGRP,&lt;/P&gt;&lt;P&gt;      END OF I_KNKK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In first moment, i saw the table and SQL filter have the SBGRP field but the SQL fields selection has not this field. But, these same program works good with others selection parameters, in fact this SQL only terminates the program for the bigest company, wich causes the program make many BD access because all previous SQL. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dump log says:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime errors         DBIF_RSQL_INVALID_RSQL&lt;/P&gt;&lt;P&gt;Exception              CX_SY_OPEN_SQL_DB&lt;/P&gt;&lt;P&gt;Occurred on            23.05.2006 at   17:27:15&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error in the module RSQL accessing the database interface.&lt;/P&gt;&lt;P&gt;An exception occurred. The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB',  neither caught nor passed along using a RAISING clause, in the procedure "(FORM)" . Since the caller of the procedure could not have expected this except to occur, the running program was terminated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason for the exception is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SQL statement generated from the SAP Open SQL Statement violates restriction imposed by the database system used in R/3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Possible errors:&lt;/P&gt;&lt;P&gt; o The maximum size of an SQL statement has been exceeded.&lt;/P&gt;&lt;P&gt; o The statement contains too many input variables.&lt;/P&gt;&lt;P&gt; o The space needed for the input data exceeds the    &lt;/P&gt;&lt;P&gt;    available memory.&lt;/P&gt;&lt;P&gt; o ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i be sure the dump is for a lot of BD access for all the SQL commands ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If these is the error, does somebody knows how can i eliminate this error ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Frank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2006 23:09:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349309#M175400</guid>
      <dc:creator>former_member425121</dc:creator>
      <dc:date>2006-05-23T23:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime Error in SQL command ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349310#M175401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this is happening because the fields of the internal table do not match the fields that are being selected from the database.  I would suggest adding SBGRP to your field selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA: BEGIN OF I_KNKK OCCURS 0,
KUNNR LIKE KNKK-KUNNR,
KKBER LIKE KNKK-KKBER,
KLIMK LIKE KNKK-KLIMK,
SAUFT LIKE KNKK-SAUFT,
SKFOR LIKE KNKK-SKFOR,
SSOBL LIKE KNKK-SSOBL,
SBGRP LIKE KNKK-SBGRP,
END OF I_KNKK.

SELECT KUNNR KKBER KLIMK SAUFT SKFOR SSOBL &amp;lt;b&amp;gt;SBGRP&amp;lt;/b&amp;gt;
INTO TABLE I_KNKK
FROM KNKK
WHERE KUNNR IN R_KUNNR
AND KKBER IN R_KKBER
AND SBGRP IN S_SBGRP.



&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or try using the INTO CORRESPONDING FIELDS extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

SELECT KUNNR KKBER KLIMK SAUFT SKFOR SSOBL 
INTO &amp;lt;b&amp;gt;CORRESPONDING FIELDS OF&amp;lt;/b&amp;gt; TABLE I_KNKK
FROM KNKK
WHERE KUNNR IN R_KUNNR
AND KKBER IN R_KKBER
AND SBGRP IN S_SBGRP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give it a try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2006 23:21:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349310#M175401</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-05-23T23:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime Error in SQL command ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349311#M175402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Frank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this is happnening only for huge amount of data, probably an analysis of the dump by a BASIS person might help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2006 23:22:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349311#M175402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-23T23:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime Error in SQL command ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349312#M175403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Guess you might find answers in OSS notes. Try doing a search for the exception you will find a few of useful info.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; This is very similar to the problem you are facing, so quite possible it could be because of large database select. You can find more info on the OSS notes....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Symptom&lt;/P&gt;&lt;P&gt;When you are searching for documents (information objects) by attribute instance, the system may issue an ABAP DBIF_RSQL_INVALID_RSQL runtime error with a CX_SY_OPEN_SQL_DB exception. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other terms&lt;/P&gt;&lt;P&gt;DBIF_RSQL_INVALID_RSQL&lt;/P&gt;&lt;P&gt;CX_SY_OPEN_SQL_DB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reason and Prerequisites&lt;/P&gt;&lt;P&gt;Due to a program error, an overly large SQL statement is issued in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;VJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2006 23:53:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349312#M175403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-23T23:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime Error in SQL command ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349313#M175404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the field discrepancy is a red herring here. Not guilty! I agree that using the 'CORRESPONDING FIELDS OF' is safer though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error could be happening because your range variables have lots of entries in them which makes the generated sql huge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To break it up you could use the 'package size' option of the select. This will work it's way through the input in chunks (or packages) of the size you specify.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could change it to:&lt;/P&gt;&lt;P&gt;SELECT KUNNR KKBER KLIMK SAUFT SKFOR SSOBL  &lt;/P&gt;&lt;P&gt; INTO TABLE I_KNKK package size 2000 "or a variable value       &lt;/P&gt;&lt;P&gt;FROM KNKK                                   &lt;/P&gt;&lt;P&gt;WHERE KUNNR IN R_KUNNR                      &lt;/P&gt;&lt;P&gt;AND KKBER IN R_KKBER                        &lt;/P&gt;&lt;P&gt;AND SBGRP IN S_SBGRP.                       &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;process current contents of i_knkk here                                            &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;endselect.      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or ,&lt;/P&gt;&lt;P&gt;SELECT KUNNR KKBER KLIMK SAUFT SKFOR SSOBL  &lt;/P&gt;&lt;P&gt; appending TABLE I_KNKK package size 2000        &lt;/P&gt;&lt;P&gt;FROM KNKK                                   &lt;/P&gt;&lt;P&gt;WHERE KUNNR IN R_KUNNR                      &lt;/P&gt;&lt;P&gt;AND KKBER IN R_KKBER                        &lt;/P&gt;&lt;P&gt;AND SBGRP IN S_SBGRP.                       &lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2006 23:57:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349313#M175404</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-05-23T23:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime Error in SQL command ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349314#M175405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thaks Rich ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will to try that first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The rare thing is that the same SQL command works so good for some data and and aborts the program for other data, and in both cases the data searched for the SQL do not exist in the table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Frank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 00:03:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349314#M175405</guid>
      <dc:creator>former_member425121</dc:creator>
      <dc:date>2006-05-24T00:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime Error in SQL command ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349315#M175406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all for your answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some important fact is that the same SQL command works so good for one company and aborts the program for the bigest company; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and (i have a break point in both executions) the data searched by the SQL do not exist in the table for both cases (i look this by search myself the data via SE16)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i execute with one company (not the bigest) the program continues and the table are empty; when i execute with the bigest company, the program aborts; but i know the result table would be empty too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, if the problem is the huge BD access, does somebody knows how can i eliminate the error ??  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could not change the program logic for reduces the SQL acces, because the program has been working since before and it's defined by the final user.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a technical way to solve this ?? Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Frank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 00:18:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349315#M175406</guid>
      <dc:creator>former_member425121</dc:creator>
      <dc:date>2006-05-24T00:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime Error in SQL command ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349316#M175407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Frank,&lt;/P&gt;&lt;P&gt;do your range variables have lots of entries? If they do the generated sql will be correspondingly large and can exceed the limit and cause the dump..even if your result set is going to be empty.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 00:27:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349316#M175407</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-05-24T00:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime Error in SQL command ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349317#M175408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Neil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT ....  &lt;/P&gt;&lt;P&gt;FROM  KNKK&lt;/P&gt;&lt;P&gt;WHERE KUNNR IN R_KUNNR  AND&lt;/P&gt;&lt;P&gt;      KKBER IN R_KKBER  AND&lt;/P&gt;&lt;P&gt;      SBGRP IN S_SBGRP.        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In both cases the range variables are single values, and these are by the primary key of the table &lt;/P&gt;&lt;P&gt;(KNKK keys are just KUNNR and KKBER)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) normal company (program continues)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   R_KUNNR[] = IEQ0000100848&lt;/P&gt;&lt;P&gt;   R_KKBER[] = IEQ5000&lt;/P&gt;&lt;P&gt;   S_SBGRP[] = IEQ001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b) bigest company (program aborts)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   R_KUNNR[] = IEQ0050221503&lt;/P&gt;&lt;P&gt;   R_KKBER[] = IEQ5000&lt;/P&gt;&lt;P&gt;   S_SBGRP[] = IEQ001&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;So, i think the problem are the previous SQL commands (accessing BSID, BSAD, etc.) that preced this comand, because the large amount of records accessed for the bigest company.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to increment the size capability of a program for SQL access ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;P&gt;Frank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 00:58:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349317#M175408</guid>
      <dc:creator>former_member425121</dc:creator>
      <dc:date>2006-05-24T00:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime Error in SQL command ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349318#M175409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FRANK,&lt;/P&gt;&lt;P&gt;COULDN'T THE DUMP BE HAPPENING IN THE 'PRECEDING SQL' RATHER THAN THE ONE WE ARE LOOKING AT? What is the preceding sql? Is it another select into table or a wraparound select? Please show us.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 01:25:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349318#M175409</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-05-24T01:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime Error in SQL command ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349319#M175410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Neil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the dump is just exactly in the line of that SQL comand indicated, i have a break point in this line, and just pressing F5 and the programs abort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, i was checking the SQL commands programmed before that SQL command, and i'm finding things that i can not believe, many bugs (or worst things) that causes the SQL commands became very heavy; for example LOOP in some table A, fill some table B, but appends another table C .. then using FOR ALL ENTRIES with these erroneous tables and things like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So thanks all of you for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think i'm going to have a meeting with the process owner...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Frank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 02:14:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-sql-command/m-p/1349319#M175410</guid>
      <dc:creator>former_member425121</dc:creator>
      <dc:date>2006-05-24T02:14:56Z</dc:date>
    </item>
  </channel>
</rss>

