Ztable going dump

hi all,
here is my problem . I have ztable with some 1000 records. According to new requirement i changed the domain of a field String to dec. then went se14 adjust & activate.. now table was going dump.
plz give me suggestions where i am went wrong.
Regards
Raju Mummidi

Hi Raju,
First of all, activate the Domain and the data element. Then activate the table.
You are not required to delete any data, as the string could contain any form of data such as packed decimal or integer. When you modify the data type of the domain, it will just change the type, but there won't be any kind of checking with the data you created.
you need to delete your maintenance generator that you have created priviously and generate new maintenance generator.
Hope it will solve the problem of dump.
Please check and reply in case of dump again.
Regards,
Arun kayal

Similar Messages

  • HR ABAP Posiition Holder Org Unit value going dump

    Hi Experts,
    I am working now HR ABAP. My issue is,  I am using standard Program RHXPEP01. This Program is nothing but. Profile Match up Position/Holder.
    Once i execute this program and enter the  value of Org. Unit Value is 60010128. Then after 15mints it will be going dump.
    The error message is going to many iterations are going on.
    If I execute 60010129 it is working fine. This Org Units are avilable in Production.
    Can you plz help me on this.
    Thank You
    Sri

    Hi ,
    Please check this thread might be helpful.
    Runtime Errors STORAGE_PARAMETERS_WRONG_SET
    Regards,
    Siraj.

  • If i run oops alv in background, its going dump

    If I run oops alv in background its going dump?
    can any one suggest me to do this or to overcome
    thanks and regards
    setty

    ALV's can be run in background if you use a docking container instead of a custom container.
    Please search the forum for "ALV in background". You will find tons of threads with solutions.
    Re: How to run ALV reports in batch
    Sample code to have ALV Grid in Background

  • Copy of transction MD05 to ZD05 going dump.

    Hi experts,
    I have copied the transacion MD05's prorgram SAPMM61R to ZSAPMM61R with some changes.  But it is going dump. I checked the program in debugging.  In the include MM61RF30_DISPOLISTE_SAMMEL the structures CM61X and CM61B are not getting data.
    Also I checked the standard program also in debugging mode.  I didn't find where these structures are getting data.
    Help needed sooner or later..
    Thanks,
    sreenivas.
    Edited by: Rob Burbank on May 19, 2009 3:37 PM

    Hi,
    How can we findout if the program is dynamically creating any structures.
    Thanks,
    sreenivas.

  • Going dump for ME41 t-code

    Hi Friends,
    I activated MM06E005 using  SMOD t-code.
    if run ME41 system going dump and it is saying
    Program "SAPLXM06" tried to use screen 0301.
    The screen does not exist.
    Can any body help what may be the wrong.
    It is working fine for ME21, Me51.
    I am into 4.7
    Regards,
    Naresh.

    Hi,
    The FMs in the enhancement MM06E005 are for importing and exporting values to and from the screens mentioned in the Screen Areas tab in SMOD.
    So unless you activate the screens you can't use the FMs.
    Hope this helps.
    Thanks,
    Balaji

  • My import FM is going DUMP

    Hi All,
    I have import request and i got sucess .My 3 function modules are import to client system.2 FM are working properly but 1 function module is going for DUMP.
    I have gone dump analysis its saying
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR',
    was neither
    caught nor passed along using a RAISING clause, in the procedure
    "MO_IMPORT_MODIFICATIONS" "(METHOD)"
    "Length error occurred during the IMPORT statement."
    "The system found when importing that the target object was longer or
    shorter than the object to be imported."
    where did i mistake while import ? or while transport?
    That FM is working properly in our DEV.
    Thanks in Advance,
    Madhu.

    Hello,
    I would like to know how did you solve the issue as i came across the same issue.
    Thanks,
    FBK

  • MARA table going DUMP due to append structure

    Hi all,
    I have created the structure and i have Appended  to MARA table. Since then MARA Table is Partially  Active State. So, i tried to delete the structure. But i am unable to delete that Structure, because it was used in MARA Table. Even i tried SE14 Transaction also.Here i did Adjust and Activate table, But it is showing SHORT DUMP. Even if check the Error in SE11, it is showing "No inconvience found, but i activate the table again it is going to dump ".
    How to solve this .
    My requirement is to bring back the MARA table into its origional state. and how to delete the Appended structure in MARA table ?
    Thanks in advance
    KR

    Hi,
       An APPEND structure is a DDIC structure that is assigned to a single DB table. In the ABAP dictionary (SE11) you call the corresponding DB table and create the APPEND structure for this table.
    In which scenario do we create APPEND structures? Obviously, the attributes available in the DB table are not sufficient to meet your requirements. Thus, you append the missing fields to the table.
    http://help.sap.com/saphelp_erp2005/helpdata/en/cf/21eb61446011d189700000e8322d00/frameset.htm
    Regards

  • Going Dump in J2IU

    Hi All,
    whil executing the transaction J2IU in ECC 6.0 it is going to dump can any body please let me know why it is going for dump i have even searched for notes. I didnt find any relevant notes also. please let me know.

    Yes It is going for a dump, i have faced the same problem the basic reason is
    While executing the transaction J2IU it is calling a subroutine determine_default_values in the program J_1IUPBO. Then that subroutine is there in the other program SAPMJ1II.
    While sending the parameters the structures in the calling program and called program are different.
    The TOTALS structure in main program is,
    DATA : BEGIN OF TOTALS ,               "structure to store the total val
              BED     LIKE J_1IEXCHDR-EXBED,
              AED     LIKE J_1IEXCHDR-EXAED,
              SED     LIKE J_1IEXCHDR-EXSED,
              CESS    LIKE J_1IEXCHDR-CESS ,
    *NCCD changes starts
              nccd     like j_1iexchdr-nccd,
    *NCCD changes ends
               ecs     like j_1iexchdr-ecs,
              zero    type c,              "T=zero value, F=some value
           END OF TOTALS.
    The TOTALS structure in the include program where that subroutine exits is,
    DATA : BEGIN OF totals ,               "structure to store the total val
              bed     LIKE j_1iexchdr-exbed,
              aed     LIKE j_1iexchdr-exaed,
              sed     LIKE j_1iexchdr-exsed,
              cess    LIKE j_1iexchdr-cess ,
        NCCD Changes begin
              nccd    LIKE j_1iexchdr-nccd,
        NCCD Changes ends
              zero    TYPE c,              "T=zero value, F=some value
           END OF totals.
    Like that all the structures are different. Basically ECS field has not been added in the include program. Thatu2019s why the program is going to dump.
    The structures which are different are max_bal, rg23a, rg23c and st_pla.
    Regards,
    Sunil Kumar Mutyala.

  • Back ground job is going dump

    Hi, experts,
    When excuting the program in background, the call to MB5B  returns an error message to choose at least one scope of list
    category.  Need to pass these values to the SUBMIT in order for program to execute successfully in background.
    in  the program this  is the function module code  in this i am geting dump(error  : raise not found 
    TABLES: T439I, T001W, T439G.
      DATA: V_DIFF TYPE I,
            V_T439I LIKE T439I,
            V_T439I_2 LIKE T439I.
    * check plant
      SELECT SINGLE WERKS FROM T001W INTO T001W-WERKS
                                             WHERE WERKS EQ IN_WERKS.
      IF SY-SUBRC NE 0.
        RAISE INVALID_PLANT.
      ENDIF.
    * check planning period
      SELECT SINGLE WERKS FROM T439G INTO T439G-WERKS
                     WHERE WERKS EQ IN_WERKS AND MRPPP EQ IN_MRPPP.
      IF SY-SUBRC NE 0.
        RAISE INVALID_MRPPP.
      ENDIF.
    * convert date to week and date range
      IF IN_WEEK IS INITIAL.
        IF IN_DATE IS INITIAL.
          RAISE INVALID_DATE.
        ENDIF.
        SELECT * INTO V_T439I FROM T439I UP TO 1 ROWS WHERE
              WERKS EQ IN_WERKS AND
              MRPPP EQ IN_MRPPP AND
              PPVON LE IN_DATE AND PPBIS GE IN_DATE.
          CONTINUE.
        ENDSELECT.
      ELSE.
    * convert week to dates
        IN_DATE(4) = IN_WEEK(4).
        IN_DATE+4(4) = '0101'.
        SELECT * INTO V_T439I FROM T439I UP TO 1 ROWS WHERE
              WERKS EQ IN_WERKS AND
              MRPPP EQ IN_MRPPP AND
              PPERI EQ IN_WEEK+4(2) AND
              PPBIS GE IN_DATE.
          CONTINUE.
        ENDSELECT.
      ENDIF.
      IF SY-SUBRC NE 0.
        RAISE NOT_FOUND..........................................here i am geting error
      ENDIF.
    * check for full week
      V_T439I_2 = V_T439I.
      V_DIFF = V_T439I_2-PPBIS - V_T439I-PPVON.
      IF V_DIFF NE 6.
    * odd week - first check for next week
        IN_DATE = V_T439I-PPBIS + 1.
        SELECT * INTO V_T439I_2 FROM T439I UP TO 1 ROWS WHERE
              WERKS EQ V_T439I-WERKS AND
              MRPPP EQ V_T439I-MRPPP AND
              PPVON LE IN_DATE AND PPBIS GE IN_DATE.
          CONTINUE.
        ENDSELECT.
        IF SY-SUBRC NE 0.
          RAISE MISSING_WEEK.
        ELSE.
          V_DIFF = V_T439I_2-PPBIS - V_T439I-PPVON.
          IF V_DIFF NE 6.
    * still odd week - now check for prev week
            V_T439I_2 = V_T439I.
            IN_DATE = V_T439I-PPVON - 1.
            SELECT * INTO V_T439I FROM T439I UP TO 1 ROWS WHERE
                  WERKS EQ IN_WERKS AND
                  MRPPP EQ IN_MRPPP AND
                  PPVON LE IN_DATE AND PPBIS GE IN_DATE.
              CONTINUE.
            ENDSELECT.
            IF SY-SUBRC NE 0.
              RAISE NOT_FULL_WEEK.
            ELSE.
              V_DIFF = V_T439I_2-PPBIS - V_T439I-PPVON.
              IF V_DIFF NE 6.
                RAISE INVALID_WEEK.
              ENDIF.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
      IF SY-SUBRC NE 0.
        RAISE INVALID_WEEK.
      ENDIF.
      OUT_WEEK(4) = V_T439I_2-PPBIS(4).
      OUT_WEEK+4(2) = V_T439I_2-PPERI.
      OUT_FIRST_DAY = V_T439I-PPVON.
      OUT_LAST_DAY = V_T439I_2-PPBIS.
    ENDFUNCTION.
    Title changed - please use code tags
    Edited by: Rob Burbank on Nov 15, 2010 1:37 PM

    That  is custom FM   Z_coors_week
    CALL FUNCTION 'Z_COORS_WEEK'
           EXPORTING
            IN_WEEK       = 000000
                in_date       = p_date
            IN_WERKS      = '0010'
            IN_MRPPP      = '001'
           IMPORTING
                out_week      = t_hdtxt-cweek
                out_first_day = dt_start
                out_last_day  = dt_end
           EXCEPTIONS
                invalid_week  = 1
                invalid_date  = 2
                invalid_plant = 3
                invalid_mrppp = 4
                not_full_week = 5
                missing_week  = 6
                not_found     = 7
                OTHERS        = 8.
    they have used two times in the program
    CALL FUNCTION 'Z_COORS_WEEK'
               EXPORTING
                    in_date  = t_hdtxt-stdate
               IMPORTING
                    out_week = t_hdtxt-cweek.
    please let me know ...for second time  exceptions not used ..

  • RFC going dump

    HI to all,
      I have developed a  RFC fucntion module for to calculate tax for every employee nubmer. Its showing tax details in portal. But when we execute same RFC in  SE37 its showing dump. Why it can happen like that.can u suggest reason for that.

    hort text
       Exception condition "T500P_NOT_FOUND" raised.
    hat happened?
       The current ABAP/4 program encountered an unexpected
       situation.
    hat can you do?
       Note down which actions and inputs caused the error.
       To process the problem further, contact you SAP system
       administrator.
       Using Transaction ST22 for ABAP Dump Analysis, you can look
       at and manage termination messages, and you can also
       keep them for a long time.
    rror analysis
       A RAISE statement in the program "SAPLHRPADINA1" raised the exception
       condition "T500P_NOT_FOUND".
       Since the exception was not intercepted by a superior
       program, processing was terminated.
       Short description of exception condition:
       Region  not found for personal area
       For detailed documentation of the exception condition, use
       Transaction SE37 (Function Library). You can take the called
       function module from the display of active calls.
    ow to correct the error
       If the error occures in a non-modified SAP program, you may be able to
       find an interim solution in an SAP Note.
       If you have access to SAP Notes, carry out a search with the following
       keywords:
       "RAISE_EXCEPTION" " "
      "SAPLHRPADINA1" or "LHRPADINA1U03"
      "HR_IN_GET_ALGRP_ELIG"
      or
      "SAPLHRPADINA1" "T500P_NOT_FOUND"
      or
      "RS_TESTFRAME_CALL " "T500P_NOT_FOUND"
      If you cannot solve the problem yourself and want to send an error
      notification to SAP, include the following information:
      1. The description of the current problem (short dump)
         To save the description, choose "System->List->Save->Local File
      (Unconverted)".
      2. Corresponding system log
         Display the system log by calling transaction SM21.
         Restrict the time interval to 10 minutes before and five minutes
      after the short dump. Then choose "System->List->Save->Local File
      (Unconverted)".
      3. If the problem occurs in a problem of your own or a modified SAP
      program: The source code of the program
         In the editor, choose "Utilities->More
      Utilities->Upload/Download->Download".
      4. Details about the conditions under which the error occurred or which
      actions and input led to the error.
    nformation on where terminated
       Termination occurred in the ABAP program "SAPLHRPADINA1" - in
        "HR_IN_GET_ALGRP_ELIG".
       The main program was "RS_TESTFRAME_CALL ".
       In the source code you have the termination point in line 78
       of the (Include) program "LHRPADINA1U03".

  • Going for dump while using field symbols

    Hi all,
       I am using field symbols in my program. Program is going dump for some company codes and working fine for some company codes.
    I am confused. Please check this code where the error is shown.
    LOOP AT i_final ASSIGNING <fs_final>.
        AT NEW belnr.
         if  <fs_final>-wt_withcd  = 'SF' or  <fs_final>-wt_withcd  = 'XF' OR  <fs_final>-  wt_withcd  = 'WF'.
          MOVE <fs_final> TO wa_final1.
          g_qsatz = wa_final1-qsatz.
          APPEND wa_final1 TO i_final1.
          CLEAR wa_final1.
         ENDIF.
        ENDAT.
        READ TABLE i_final1 ASSIGNING <fs_final1> WITH KEY belnr = <fs_final>-belnr.
        IF <fs_final>-wt_withcd  = 'SF'.
          <fs_final1>-wt_withcd1 = <fs_final>-wt_withcd.
          <fs_final1>-wt_qbshb1  = <fs_final>-wt_qbshb.
          <fs_final1>-qsatz      = <fs_final1>-qsatz + <fs_final>-qsatz.
        ENDIF.
        IF <fs_final>-wt_withcd  = 'XF'.
          <fs_final1>-wt_withcd2 = <fs_final>-wt_withcd.
          <fs_final1>-wt_qbshb2  = <fs_final>-wt_qbshb.
          <fs_final1>-qsatz      = <fs_final1>-qsatz + <fs_final>-qsatz.
        ENDIF.
        IF <fs_final>-wt_withcd = 'WF'.
          <fs_final1>-wt_withcd = <fs_final>-wt_withcd.
          <fs_final1>-wt_qbshb  = <fs_final>-wt_qbshb.
          <fs_final1>-qsatz      = <fs_final1>-qsatz + <fs_final>-qsatz.
        ENDIF.
        AT END OF belnr.
          <fs_final1>-qsatz = <fs_final1>-qsatz - g_qsatz.
          clear g_qsatz.
        ENDAT.
      ENDLOOP.
    Please check the code and help me.
    Thanks in advance,
    Shalem

    HI Shalem
    Please check this code:
    LOOP AT i_final ASSIGNING <fs_final>.
      AT NEW belnr.
         if <fs_final>-wt_withcd = 'SF' or
            <fs_final>-wt_withcd = 'XF' OR
            <fs_final>- wt_withcd = 'WF'.
            MOVE <fs_final> TO wa_final1.
            g_qsatz = wa_final1-qsatz.
            APPEND wa_final1 TO i_final1.
            CLEAR wa_final1.
         ENDIF.
      ENDAT.
      READ TABLE i_final1 ASSIGNING <fs_final1> WITH KEY belnr = <fs_final>-belnr.
      IF sy-subrc EQ 0.
         CASE <fs_final>-wt_withcd.
         WHEN 'SF'.
              <fs_final1>-wt_withcd1 = <fs_final>-wt_withcd.
              <fs_final1>-wt_qbshb1 = <fs_final>-wt_qbshb.
         WHEN 'XF'.
              <fs_final1>-wt_withcd2 = <fs_final>-wt_withcd.
              <fs_final1>-wt_qbshb2 = <fs_final>-wt_qbshb.
         WHEN 'WF'.
              <fs_final1>-wt_withcd = <fs_final>-wt_withcd.
              <fs_final1>-wt_qbshb = <fs_final>-wt_qbshb.
         ENDCASE.
         <fs_final1>-qsatz = <fs_final1>-qsatz + <fs_final>-qsatz.
         AT END OF belnr.
            <fs_final1>-qsatz = <fs_final1>-qsatz - g_qsatz.
            clear g_qsatz.
         ENDAT.
      ENDIF.
    ENDLOOP.
    Kind Regards
    Eswar

  • Reg: VA01 sales order going to dump

    Dear all,
    In our develpment server(ecc 6.0),while creating sales order in VA01 for a sales area, when ever entering material number(variant configuration material)  and quantity and press enter, it is giving runtime error as i shown below.
    The following syntax error occurred in program
    "CL_LORD_OBJECT================CP " in include
    "CL_LORD_OBJECT================CM005 " in
    line 40:
    ""OBJECT-" expected, not "IF_OBJECT_""
    method class_constructor.
    Register to event CHANGED of all LORD object instances
      set handler on_lord_object_changed for all instances activation 'X'.---->VA01 is going dump from here
    Register to event AUART_CHANGED of all LORD header instances
      set handler on_lord_auart_changed for all instances activation 'X'.
    endmethod.
    can any one guide me in this issue

    Check
    Note 1304648 - SAP ERP Enhan.Pk.5 SP Stack 01(07/2010) - Release Info. Note
    There is one internal note (0001460737) mentioned there which talks about syntax error in CL_LORD_OBJECT class. This is enhancement package 5 for ECC 6
    The note 1304648  is talking about applying enhancement package 5, so it is not just syntax issue that it will resolved. You need to get your BASIS team involved as this issue it seems can be resolved by applying EhP5

  • Dump while testing Idoc from WE19-OBJECTS_OBJREF_NOT_ASSIGNED

    Hi Experts,
    I am trying to Post inbound PO idoc from we19 tcode.
    MessageType:PORDCR1
    Idoctype:PORDCR102
    FM:BAPI_IDOC_INPUT1
    while testing this Idoc it is going dump.
    Runtime Errors     :    OBJECTS_OBJREF_NOT_ASSIGNED
    Short text            :    Access via 'NULL' object reference not possible.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
         caught in
        procedure "PROCESS_COMPONENTS" "(FORM)", nor was it propagated by a RAISING
         clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        You attempted to use a 'NULL' object reference (points to 'nothing')
        access a component (variable: "L_ITEM").
        An object reference must point to an object (an instance of a class)
        before it can be used to access components.
        Either the reference was never set or it was set to 'NULL' using the
        CLEAR statement.
    Could you plz suggest how to resolve this issue.
    regards,
    Bhuvan.

    Hi,
    Please implement the OSS Note 1409498 (Relavent to your problem).
    I am sure it will resolve your issue.
    If not solving your than You can serch for relavent SAP note on SAP serivce market place.
    Regards,
    Lokesh.
    Edited by: Lokesh Tarey on Apr 15, 2010 2:31 PM
    Edited by: Lokesh Tarey on Apr 15, 2010 2:33 PM

  • Smartform Dump problem

    Hi Friends,
    I created one main window in second page . When i excute the transaction F150(Dunning Form) it is going dump.
    Dump analysis is showing the following matter.
    Error analysis
        A RAISE statement in the program "SAPLSTXBC" raised the exception
        condition "ERROR".
        Since the exception was not intercepted by a superior
        program, processing was terminated.
        Short description of exception condition:
        For detailed documentation of the exception condition, use
        Transaction SE37 (Function Library). You can take the called
        function module from the display of active calls.
    When i delete the main window it 's not going dump.
    Please let me know if any one knows this.
    Regards,
    Vijay

    Yes. Only One Main window Per Smartform. Dont forget that. You can copy & paste the main window existing in the first Page and use it in the second page.
    You cant create a new MAIN window for every page...dont forget that.
    VIshwa.

  • Extractor Checker(RSA3)getting DUMP

    Hi Friends,
                     When i try to execute the datasource 0CFM_DELTA_POSITIONS, it is giving the dump, actually i've given the parameters like this before going to be excuted:
    Data Records / Calls: 999999
    Diplay Extr. Calls: 10
    Update Mode: D
                    But if i give the less no fo Data Records/Calls 350 and display Extr. Calls 10, then it is showing the data around 4,000 change recors, so in this case, if the volume of data is high, then it is going dump.
               Ver:  ECC6
                Swap Memory: 16 GB
                 RAM: 4GB
    Awaiting for your inputs,
    Regards,
    BalajiReddy

    Hi,
    This problem comes when there is not enough table space for capturing your RSA3 data.
    You have to talk to your basis guy and ask him to increase the table space and also the time.
    Hope this helps
    Assign points if useful.
    Regards,
    Kiran

Maybe you are looking for