<?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: Problem with Running a Standard ABAP Program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-running-a-standard-abap-program/m-p/4689047#M1102226</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;Is there any clue on what could be wrong in the Call?&lt;/P&gt;&lt;P&gt;Any suggestions on how to overcome this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Keerthi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: keerthivasan r on Jun 23, 2009 3:35 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: keerthivasan r on Jun 23, 2009 3:38 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 01 Nov 2008 10:35:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-01T10:35:00Z</dc:date>
    <item>
      <title>Problem with Running a Standard ABAP Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-running-a-standard-abap-program/m-p/4689045#M1102224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am tryin to run the Standard ABAP Program "&lt;STRONG&gt;SAPLMGAD&lt;/STRONG&gt;", and every time it ends with an ABAP Runtime Error "&lt;STRONG&gt;CONVT_OVERFLOW&lt;/STRONG&gt;" . I am not able to figure out the reason for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find below the error information  and the code snippet returned with the Runtime Error: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;"The termination occurred in line 117 of the source code of the (Include)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt; &lt;EM&gt;&lt;STRONG&gt;program "LMGADF01"&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;of the source code of program "LMGADF01" (when calling the editor 1170).&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;The program "SAPLMGAD" was started as a background job.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Processing was terminated because the exception "CX_SY_CONVERSION_OVERFLOW"&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt; &lt;EM&gt;&lt;STRONG&gt;occurred in the&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;procedure "UEBERNEHMEN" "(FORM)" but was not handled locally, not declared in&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt; &lt;EM&gt;&lt;STRONG&gt;the&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;RAISING clause of the procedure."&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ELSEIF FIELDTYPE = 'C'.       " charfelder direkt, häufigster Fall
   MOVE SOURCE TO TARGET.     " MAKT-MAKTX = BMMH1-MAKTX
ELSEIF   (  FIELDTYPE = 'N'        " Numerische Daten
         OR FIELDTYPE = 'P' ).
   " Konvertieren
   IF USERS_DEC = DEC_KOMMA.
      TRANSLATE SOURCE USING '. '. " Tausenderpunkte weg
      TRANSLATE SOURCE USING ',.'. " Dezimalkomma -&amp;gt; Punkte
   ELSE.
      TRANSLATE SOURCE USING ', '. " Tausenderkommas weg
   ENDIF.
   TRANSLATE SOURCE USING '+ '.    " + braucht man nicht
   CONDENSE SOURCE NO-GAPS.        " Zusammenstauchen
   HILF_C = SOURCE.                " Hilfsstring
   REPLACE '.' WITH ' ' INTO HILF_C.
   REPLACE '-' WITH ' ' INTO HILF_C.
   IF ( NOT SOURCE CO ' 1234567890.-' )
        OR HILF_C CA '.-'          " Kein - . mehr in hilf_c
        OR SOURCE CO '.- '.        " Keine Zahlen in source
      PERFORM CONV_EXIT_ERROR TABLES ERRDAT USING FELDNAME SOURCE
                                                  TARGET.
      RETCODE = 4.
      CLEAR TARGET.
      EXIT.
   ENDIF.
-----&amp;gt;&amp;gt;   *MOVE SOURCE TO TARGET.*&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help on this issue will be extremely helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Keerthi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Nov 2008 10:14:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-running-a-standard-abap-program/m-p/4689045#M1102224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-01T10:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Running a Standard ABAP Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-running-a-standard-abap-program/m-p/4689046#M1102225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;set ur break-point in the code (form below) and check in which 'CONVERSION_EXIT_     _INPUT'  it is giving &lt;/P&gt;&lt;P&gt;error and try correct the it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM UEBERNEHMEN TABLES ERRDAT STRUCTURE MERRDAT&lt;/P&gt;&lt;P&gt;                 USING SOURCE        " Inhalt source&lt;/P&gt;&lt;P&gt;                       TARGET        " ergebnis&lt;/P&gt;&lt;P&gt;                       FIELDTYPE LIKE DFIES-INTTYPE&lt;/P&gt;&lt;P&gt;                       CONVEXIT  LIKE DFIES-CONVEXIT&lt;/P&gt;&lt;P&gt;                       LOWERCASE LIKE DFIES-LOWERCASE&lt;/P&gt;&lt;P&gt;                       FELDNAME type c  " Feldname 21-stellig&lt;/P&gt;&lt;P&gt;                       RETCODE like sy-subrc.  " alles geklappt ? "Uni&lt;/P&gt;&lt;P&gt;  DATA: ROUTINE(30) VALUE 'CONVERSION_EXIT_     _INPUT'.&lt;/P&gt;&lt;P&gt;  DATA: HILF_FLTP LIKE RCOFVP-ATFLV,      " FLTP-Zahl&lt;/P&gt;&lt;P&gt;        OK,                               " wurde konvertiert&lt;/P&gt;&lt;P&gt;        HILF_C(30).                       " hilfsstring zur Konvertierun&lt;/P&gt;&lt;P&gt;  RETCODE = 0.     " Vorbelegen&lt;/P&gt;&lt;P&gt;  IF LOWERCASE = SPACE.&lt;/P&gt;&lt;P&gt;     TRANSLATE SOURCE TO UPPER CASE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  " Muss ein konvertierungsexit ausgeführt werden ?&lt;/P&gt;&lt;P&gt;  IF CONVEXIT &amp;lt;&amp;gt; SPACE.&lt;/P&gt;&lt;P&gt;     ROUTINE+16(5) = CONVEXIT.&lt;/P&gt;&lt;P&gt;     CONDENSE ROUTINE NO-GAPS.&lt;/P&gt;&lt;P&gt;     " Konvertierungsroutine aufrufen&lt;/P&gt;&lt;P&gt;     CALL FUNCTION ROUTINE----&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------" /&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;P&gt; here is the error if SY-SUBRC ne 0 &lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;               INPUT  = SOURCE&lt;/P&gt;&lt;P&gt;          IMPORTING&lt;/P&gt;&lt;P&gt;               OUTPUT = TARGET&lt;/P&gt;&lt;P&gt;          EXCEPTIONS&lt;/P&gt;&lt;P&gt;               UNIT_NOT_FOUND = 01&lt;/P&gt;&lt;P&gt;               OTHERS         = 99.&lt;/P&gt;&lt;P&gt;     IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;        PERFORM CONV_EXIT_ERROR TABLES ERRDAT USING FELDNAME SOURCE&lt;/P&gt;&lt;P&gt;                                                    TARGET.&lt;/P&gt;&lt;P&gt;*JB/4.6C&lt;/P&gt;&lt;P&gt;        IF CONVEXIT = 'CUNIT'.&lt;/P&gt;&lt;P&gt;          TARGET = SOURCE.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Nov 2008 10:31:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-running-a-standard-abap-program/m-p/4689046#M1102225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-01T10:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Running a Standard ABAP Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-running-a-standard-abap-program/m-p/4689047#M1102226</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;Is there any clue on what could be wrong in the Call?&lt;/P&gt;&lt;P&gt;Any suggestions on how to overcome this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Keerthi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: keerthivasan r on Jun 23, 2009 3:35 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: keerthivasan r on Jun 23, 2009 3:38 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Nov 2008 10:35:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-running-a-standard-abap-program/m-p/4689047#M1102226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-01T10:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Running a Standard ABAP Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-running-a-standard-abap-program/m-p/4689048#M1102227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This program is part of MM01.&lt;/P&gt;&lt;P&gt;Since you said you are calling it in background so I suppose either you are using RMDATIND or BAPI_MATERIAL_SAVEDATA or may be BDC on MM01 in background.&lt;/P&gt;&lt;P&gt;If you look closely at the dump you will find that the problem comes when moving from a sourec field into a target field.&lt;/P&gt;&lt;P&gt;The target field if of type P or N.&lt;/P&gt;&lt;P&gt;So possibly some incorrect value is being passed to a numeric field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the dump details.&lt;/P&gt;&lt;P&gt;It will show you what value the field FELDNAME had when the dump occured.&lt;/P&gt;&lt;P&gt;Check the value passed to that field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jun 2009 13:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-running-a-standard-abap-program/m-p/4689048#M1102227</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-23T13:47:19Z</dc:date>
    </item>
  </channel>
</rss>

