<?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: Reg: Dump due to insert statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-dump-due-to-insert-statement/m-p/5040050#M1172012</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the quick reply friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hai TT,&lt;/P&gt;&lt;P&gt;Could you please explain more on how i can sync NLS_LANG variable on the client and server....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hai Christine,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data in the internal table matches according to the data types as debugged and updating the internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regds&lt;/P&gt;&lt;P&gt;Sujeel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Jan 2009 13:17:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-12T13:17:24Z</dc:date>
    <item>
      <title>Reg: Dump due to insert statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-dump-due-to-insert-statement/m-p/5040046#M1172008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have got an support work to do for a program, where in it was working fine in development, quality and production for the past 3 months. But now, it is showing an error in quality only but still working in development.( Not checked in production system, as user cant delete from the database table.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Requesting you all to give your reviews as it been hrs i am trying to resolve it.&lt;/P&gt;&lt;P&gt;Heres the dump shown:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database error text........: "ORA-12899: value too large for column&lt;/P&gt;&lt;P&gt; "SAPAR3"."YCONT"."MASSG" (actual: 10, maximum: 6)"&lt;/P&gt;&lt;P&gt;Internal call code.........: "[RSQL/INSR/YCONT ]"&lt;/P&gt;&lt;P&gt;Please check the entries in the system log (Transaction SM21).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may able to find an interim solution to the problem&lt;/P&gt;&lt;P&gt;in the SAP note system. If you have access to the note system yourself,&lt;/P&gt;&lt;P&gt;use the following search criteria:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------------" /&gt;&lt;P&gt;"DBIF_RSQL_SQL_ERROR" CX_SY_OPEN_SQL_DBC&lt;/P&gt;&lt;P&gt;"YFI_CONTRACT_EMPLOYEE_SCREEN" or "YFI_CONTRACT_EMPLOYEE_PAI"&lt;/P&gt;&lt;P&gt;"USER_COMMAND_0200"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  228     LOOP AT ITAB INTO WA_ITAB.&lt;/P&gt;&lt;P&gt;  229      SELECT SINGLE KUNNR INTO WA_ITAB-KUNNR FRO&lt;/P&gt;&lt;P&gt;  230      WA_ITAB-BUKRS = YBRA-BUKRS.&lt;/P&gt;&lt;P&gt;  231      WA_ITAB-YHRCHD = SY-DATUM.&lt;/P&gt;&lt;P&gt;  232      WA_ITAB-YUNAME = SY-UNAME.&lt;/P&gt;&lt;P&gt;  233&lt;/P&gt;&lt;P&gt;  234      IF WA_ITAB-ENDDA IS INITIAL.&lt;/P&gt;&lt;P&gt;  235        WA_ITAB-ENDDA = '99991231'.&lt;/P&gt;&lt;P&gt;  236      ENDIF.&lt;/P&gt;&lt;P&gt;  237&lt;/P&gt;&lt;P&gt;  238        CALL FUNCTION 'BAPI_CONTROLLINGAREA_FIND&lt;/P&gt;&lt;P&gt;  239         EXPORTING&lt;/P&gt;&lt;P&gt;  240           COMPANYCODEID           = YBRA-BUKRS&lt;/P&gt;&lt;P&gt;  241        IMPORTING&lt;/P&gt;&lt;P&gt;  242          CONTROLLINGAREAID        = WA_ITAB-KOK&lt;/P&gt;&lt;P&gt;  243        WA_ITAB-YSTAT2 = '3'.&lt;/P&gt;&lt;P&gt;  244       CONDENSE WA_ITAB-YEMP.&lt;/P&gt;&lt;P&gt;  245       CONDENSE WA_ITAB-KUNNR.&lt;/P&gt;&lt;P&gt;  246       CONDENSE WA_ITAB-KOSTL.&lt;/P&gt;&lt;P&gt;  247&lt;/P&gt;&lt;P&gt;  248       MODIFY ITAB FROM WA_ITAB .&lt;/P&gt;&lt;P&gt;  249       CLEAR:WA_ITAB.&lt;/P&gt;&lt;P&gt;  250       ENDLOOP.&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;         INSERT YCONT FROM TABLE ITAB.&lt;/P&gt;&lt;P&gt;  252         IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;  253           COMMIT WORK.&lt;/P&gt;&lt;P&gt;  254            MESSAGE S011.&lt;/P&gt;&lt;P&gt;  255         ELSE.&lt;/P&gt;&lt;P&gt;  256            MESSAGE S012.&lt;/P&gt;&lt;P&gt;  257         ENDIF.&lt;/P&gt;&lt;P&gt;**************************************************&lt;/P&gt;&lt;P&gt;The data declaration for the above table ycont is with respect to the ddic itself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 12:50:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-dump-due-to-insert-statement/m-p/5040046#M1172008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-12T12:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Dump due to insert statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-dump-due-to-insert-statement/m-p/5040047#M1172009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Possible reasons for the ORA-03106 errors include:&lt;/P&gt;&lt;P&gt;1. Incompatibilities between the client application and the RDBMS server.&lt;/P&gt;&lt;P&gt;For example, version incompatibilities, or a client trying to use a feature not supported by the database kernel.&lt;/P&gt;&lt;P&gt;2. When using database links or gateways.&lt;/P&gt;&lt;P&gt;3. Network or SQL*Net problems.&lt;/P&gt;&lt;P&gt;4. Corruptions.&lt;/P&gt;&lt;P&gt;5. PL/SQL - language related.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One way to resolve this is to&lt;/P&gt;&lt;P&gt;Try synching the NLS_LANG variable on the client and server....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 12:55:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-dump-due-to-insert-statement/m-p/5040047#M1172009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-12T12:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Dump due to insert statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-dump-due-to-insert-statement/m-p/5040048#M1172010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Database error text........: "ORA-12899: value too large 
for column
"SAPAR3"."YCONT"."MASSG" (actual: 10, maximum: 6)"
Internal call code.........: "RSQL/INSR/YCONT "
Please check the entries in the system log 
(Transaction SM21).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This should tell you all you need to know.  The value in this field in your internal &lt;/P&gt;&lt;P&gt;table is too wide for the corresponding field in the database table.  &lt;/P&gt;&lt;P&gt;You've said that you've based your itab on the database table, but I cannot &lt;/P&gt;&lt;P&gt;see that this can be the case unless the itab field can somehow hold a value that &lt;/P&gt;&lt;P&gt;is wider than it's defined width and I don't think that is possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, debug the program and try to find out which record holds the extra wide value.  &lt;/P&gt;&lt;P&gt;Or, if you can't do it in debug, add a check to the program itself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 12:59:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-dump-due-to-insert-statement/m-p/5040048#M1172010</guid>
      <dc:creator>christine_evans</dc:creator>
      <dc:date>2009-01-12T12:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Dump due to insert statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-dump-due-to-insert-statement/m-p/5040049#M1172011</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;it telling that one of the field in the table has length less than the data length it is  fiiling into.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please check it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 13:04:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-dump-due-to-insert-statement/m-p/5040049#M1172011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-12T13:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Dump due to insert statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-dump-due-to-insert-statement/m-p/5040050#M1172012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the quick reply friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hai TT,&lt;/P&gt;&lt;P&gt;Could you please explain more on how i can sync NLS_LANG variable on the client and server....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hai Christine,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data in the internal table matches according to the data types as debugged and updating the internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regds&lt;/P&gt;&lt;P&gt;Sujeel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 13:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-dump-due-to-insert-statement/m-p/5040050#M1172012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-12T13:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Dump due to insert statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-dump-due-to-insert-statement/m-p/5040051#M1172013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; hai Christine,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; The data in the internal table matches according to the data types as debugged and updating the internal table. &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; regds&lt;/P&gt;&lt;P&gt;&amp;gt; Sujeel&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I'm sorry but if you're getting an Oracle error saying that you're trying to insert too large a value into a database table, then that is exactly what you're doing.  The fact that you're only getting the error in only one of your systems supports this theory that it is an error caused by data.  If you're using conversion exits that might be a possible cause of the problem.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To identify the problem record, change the program so that it loops at your itab and inserts each record into the database table one by one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 17:26:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-dump-due-to-insert-statement/m-p/5040051#M1172013</guid>
      <dc:creator>christine_evans</dc:creator>
      <dc:date>2009-01-12T17:26:54Z</dc:date>
    </item>
  </channel>
</rss>

