J1IF13 Getting dump

Dear all MM experts,
I am getting dump in J1IF13 tcode .
some time it is running smoothly some time giving error what is the actual problem.
The ABAP dump analysis is like see at line 702 .
Short text
    Conversion error
What happened?
    The current screen processing action was terminated since a situ
    occurred where the application could not continue.
    This is probably due to an error in the ABAP program or in the c
    screen.
Error analysis
    The program has been interrupted and cannot resume.
    Program "SAPMJ1IFN" attempted to display fields on screen 1210.
    An error occurred during the conversion of this data.
  692 &----
  693 *&      Module  STATUS_1210  OUTPUT
  694 &----
  695 *       text
  696 ----
  697 MODULE STATUS_1210 OUTPUT.
  698   sort itab_excdtl.
  699
  700   DESCRIBE TABLE itab_excdtl LINES V_LINES_TC_1210.
  701   tc_1210-lines = V_LINES_TC_1210.
  702 ENDMODULE.    " here cursor is coming and getting dump while debugging.
Please help me to come out from this issue.
thanks ,
Sanket.

close

Similar Messages

  • Getting dump when using do_sum in alv field cat in the output of the report

    Dear Freinds,
                 Iam getting the alv report when i click on the segma field (Sum) on my salary
    field iam getting dump. and also if i try to print my alv output iam getting dump , only
    happening to my custom report.
    i have used the following code pleae correct me .
    This perform is used for Layout settings
      perform st_layout_build  using gs_layout.
    form st_layout_build  using  st_ls_layout type slis_layout_alv.
       st_ls_layout-no_input          = 'X'.
      st_ls_layout-colwidth_optimize = 'X'.
    st_ls_layout-zebra             = 'X'.
    st_ls_layout-detail_popup      = 'X'.
    endform.                    " st_layout_build
    Field Catalog details
    perform st_fieldcat_init changing gt_fieldcat.
    form st_fieldcat_init  changing  fp_i_fieldcat type slis_t_fieldcat_alv.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 1.
      ls_fieldcat-fieldname    = 'ORGUNIT'.
      ls_fieldcat-seltext_l    = 'Orgunit'.
    ls_fieldcat-no_out       = 'X'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 2.
      ls_fieldcat-fieldname    = 'ORGTEXT'.
      ls_fieldcat-seltext_l    = 'Orgdesc'.
    ls_fieldcat-no_out       = 'X'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'SALARY'.
      ls_fieldcat-seltext_l    = 'Salary'.
      ls_fieldcat-col_pos      = 3.
      ls_fieldcat-outputlen   = 15.
      ls_fieldcat-do_sum       = 'X'.
      ls_fieldcat-datatype     = 'CURR'.    "CURR
      append ls_fieldcat to fp_i_fieldcat.
    endform.
    Variant
      perform st_variant_init  using gs_variant g_repid.
    form st_variant_init   using  st_gs_variant type disvariant
                                 st_repid      like sy-repid.
      clear st_gs_variant.
      st_gs_variant-report = st_repid.
    endform.                    " st_variant_init
      g_repid = sy-repid.
      perform st_comment_build  using gt_list_top_of_page[].
    form st_comment_build  using   st_lt_top_of_page type slis_t_listheader.
      data: ls_line type slis_listheader.
    Listenüberschrift: Typ H
      clear ls_line.
      ls_line-typ  = 'H'.
    LS_LINE-KEY:  not used for this type
      ls_line-info = text-000.
      append ls_line to st_lt_top_of_page.
    endform.                    " st_comment_build
         call function 'REUSE_ALV_GRID_DISPLAY'
          exporting
             i_buffer_active        = 'X'
            i_callback_top_of_page = 'TOP_OF_PAGE'
            i_callback_program     = g_repid
            is_layout              = gs_layout
            it_fieldcat            = gt_fieldcat[]
           i_structure_name       = 'i_final'   "c_i_final "'objec'
           i_save                 = g_save
            is_variant             = gs_variant
          tables
            t_outtab               = fp_i_pyrol_final
          exceptions
            program_error          = 1
            others                 = 2.
        if sy-subrc ne 0.
          message e018. " Displaying the ALV GRID has failed
        endif.
    Please could any  one let me know why iam getting dump when iam clicking for total
    on my salary field.
    Regards
    latha

    Dear Chandu,
    my code iam giving in details
    types : begin of ty_output_data,
            staffno     type pernr_d,
            staffname   type emnam,
            grade       type stell,
            orgunit     type orgeh,
            orgtext     type hr_mcstext,
            psgroup     type trfgr,      " Pay Scale Group
            salary      type maxbt,       "PAD_AMT7S,
            rrefunded   type pad_amt7s,
            leavepay    type pad_amt7s,
            mshortfal   type pad_amt7s,   " Medical Shortfall
            echkshfal   type pad_amt7s,   " Execute checkup shortfall
            ofindeduc   type pad_amt7s,   " Other Finance Deduction
            mtyprem     type pad_amt7s,   " maternity premium
            vpbonus     type pad_amt7s,   " VP/Bonus
            gratuity    type pad_amt7s,   " Gratuity
            vpay        type pad_amt7s,   " Variable pay
            mallowance  type pad_amt7s,   " Meal Allowance
            overtime    type pad_amt7s,   " overtime
            other       type  pad_amt7s,  "  OTHER
            pfundeecon  type pad_amt7s,   " PFund Employee's Contribution
            banktrnsfer type pad_amt7s,   " Bank Transfer
            count       type i,
            end of ty_output_data.
    data : i_final         type standard table of ty_output_data.
    iam getting all my data in the internal table  I_FINAL.
    perform get_final_alv  using  i_final.
    form get_final_alv  using   fp_i_pyrol_final type ty_t_output_data.
    *local variable declarations
      data : l_v_idx      type sy-tabix.
    *local work areas
      data : l_wa_final type ty_output_data.
      g_save = 'A'.
    This perform is used for Layout settings
      perform st_layout_build  using gs_layout.
    Field Catalog details
      perform st_fieldcat_init changing gt_fieldcat.
    Variant
      perform st_variant_init  using gs_variant g_repid.
      g_repid = sy-repid.
      perform st_comment_build  using gt_list_top_of_page[].
      if not fp_i_pyrol_final is initial.
        delete adjacent duplicates from fp_i_pyrol_final comparing all fields.
        call function 'REUSE_ALV_GRID_DISPLAY'
          exporting
             i_buffer_active        = 'X'
            i_callback_top_of_page = 'TOP_OF_PAGE'
            i_callback_program     = g_repid
            is_layout              = gs_layout
            it_fieldcat            = gt_fieldcat[]
           i_structure_name       = 'i_final'   "c_i_final "'objec'
           i_save                 = g_save
            is_variant             = gs_variant
          tables
            t_outtab               = fp_i_pyrol_final
          exceptions
            program_error          = 1
            others                 = 2.
        if sy-subrc ne 0.
          message e018. " Displaying the ALV GRID has failed
        endif.
      endif.
    endform.                    " get_final_alv
    form st_layout_build  using  st_ls_layout type slis_layout_alv.
       st_ls_layout-no_input          = 'X'.
      st_ls_layout-colwidth_optimize = 'X'.
    st_ls_layout-zebra             = 'X'.
    st_ls_layout-detail_popup      = 'X'.
    endform.                    " st_layout_build
    form st_fieldcat_init  changing  fp_i_fieldcat type slis_t_fieldcat_alv.
      data: ls_fieldcat type slis_fieldcat_alv.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 1.
      ls_fieldcat-fieldname    = 'ORGUNIT'.
      ls_fieldcat-seltext_l    = 'Orgunit'.
    ls_fieldcat-no_out       = 'X'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 2.
      ls_fieldcat-fieldname    = 'ORGTEXT'.
      ls_fieldcat-seltext_l    = 'Orgdesc'.
    ls_fieldcat-no_out       = 'X'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 5.
      ls_fieldcat-fieldname    = 'STAFFNAME'.
    ls_fieldcat-no_out       = 'X'.
      ls_fieldcat-seltext_l    = 'StaffName'.
      append ls_fieldcat to fp_i_fieldcat.
       clear ls_fieldcat.
      ls_fieldcat-col_pos      = 4.
      ls_fieldcat-fieldname    = 'STAFFNO'.
    ls_fieldcat-no_out       = 'X'.
      ls_fieldcat-seltext_l    = 'StaffNo.'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 6.
      ls_fieldcat-fieldname    = 'GRADE'.
      ls_fieldcat-seltext_l    = 'Grade'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 3.
      ls_fieldcat-fieldname    = 'COUNT'.
      ls_fieldcat-seltext_l    = 'Headcount'.
      append ls_fieldcat to fp_i_fieldcat.
    if the field name is 'Salary' then do a sum on this field.
    IF  fp_fname = c_betrg.
        l_wa_fieldcat-do_sum    = c_x.
    ENDIF.
    NOTE : IAM GETTING PROBLEM IN THE BELOW SALARY.
    IAM JUST CHECKING ITSELF NOT ALLOWING ME TO EXECUTE
      clear ls_fieldcat.
      ls_fieldcat-fieldname    = 'SALARY'.
      ls_fieldcat-seltext_l    = 'Salary'.
      ls_fieldcat-col_pos      = 7.
      ls_fieldcat-outputlen   = 20.
      ls_fieldcat-do_sum       = 'X'.
      ls_fieldcat-datatype     = 'CURR'.    "CURR
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 9.
      ls_fieldcat-fieldname    = 'LEAVEPAY'.
      ls_fieldcat-seltext_l    = 'Leave Pay'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 10.
      ls_fieldcat-fieldname    = 'MSHORTFAL'.
      ls_fieldcat-seltext_l    = 'Med.Sfall'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 11.
      ls_fieldcat-fieldname    = 'ECHKSHFAL'.
      ls_fieldcat-seltext_l    = 'EX.Chckup.Sfall'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 12.
      ls_fieldcat-fieldname    = 'OFINDEDUC'.
      ls_fieldcat-seltext_l    = 'Oth.Fin.Deduction'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 13.
      ls_fieldcat-fieldname    = 'MTYPREM'.
      ls_fieldcat-seltext_l    = 'Mat.Premium'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 14.
      ls_fieldcat-fieldname    = 'VPBONUS'.
      ls_fieldcat-seltext_l    = 'VP/Bonus'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 15.
      ls_fieldcat-fieldname    = 'GRATUITY'.
      ls_fieldcat-seltext_l    = 'Gratuity'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 16.
      ls_fieldcat-fieldname    = 'VPAY'.
      ls_fieldcat-seltext_l    = 'Variable Pay'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 17.
      ls_fieldcat-fieldname    = 'MALLOWANCE'.
      ls_fieldcat-seltext_l    = 'Meal.Allowance'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 18.
      ls_fieldcat-fieldname    = 'OVERTIME'.
      ls_fieldcat-seltext_l    = 'Overtime'.
      append ls_fieldcat to fp_i_fieldcat.
        clear ls_fieldcat.
      ls_fieldcat-col_pos      = 19.
      ls_fieldcat-fieldname    = 'OTHER'.
      ls_fieldcat-seltext_l    = 'Other'.
      append ls_fieldcat to fp_i_fieldcat.
    pfundeecon
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 20.
      ls_fieldcat-fieldname    = 'P FUND EMPLOYEES CONTRIBUTION'.
      ls_fieldcat-seltext_l    = 'P.Fund.Emp.Contrib'.
      append ls_fieldcat to fp_i_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-col_pos      = 21.
      ls_fieldcat-fieldname    = 'BANKTRNSFER'.
      ls_fieldcat-seltext_l    = 'Payment'.
      append ls_fieldcat to fp_i_fieldcat.
    endform.                    " st_fieldcat_init
    form st_variant_init   using  st_gs_variant type disvariant
                                 st_repid      like sy-repid.
      clear st_gs_variant.
      st_gs_variant-report = st_repid.
    endform.                    " st_variant_init
    form st_comment_build  using   st_lt_top_of_page type slis_t_listheader.
      data: ls_line type slis_listheader.
    Listenüberschrift: Typ H
      clear ls_line.
      ls_line-typ  = 'H'.
    LS_LINE-KEY:  not used for this type
      ls_line-info = text-000.
      append ls_line to st_lt_top_of_page.
    endform.                    " st_comment_build
          FORM TOP_OF_PAGE                                              *
    form top_of_page.
      data: l_i_detailheader type slis_t_listheader.
    To get the header for ALV
      perform detail_header changing l_i_detailheader.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        exporting
          it_list_commentary = l_i_detailheader.
    endform.                    "top_of_page
    form detail_header  changing fp_i_detailheader type slis_t_listheader.
      data: l_wa_header       type slis_listheader,
            l_v_time         type slis_edit_mask,
            l_v_date         type slis_edit_mask,
            l_v_abkrs        type char5,
            l_v_pabrj        type char8,
            l_v_pagno        type char10.
    Local Constants
      constants: l_c_h type char1 value 'H',
                 l_c_1  type i     value '1',
                 l_c_edit type char10 value '__.__.____',
                 l_c_slash  type c value '/'. " constant for slash
    To display the report Header
      l_wa_header-typ = l_c_h.
    WRITE sy-repid TO l_wa_header-info LEFT-JUSTIFIED.
      write text-014  to l_wa_header-info left-justified.
      append l_wa_header to fp_i_detailheader.
      clear l_wa_header.
    To display the Page no
      l_v_pagno =   sy-pagno + l_c_1.
      l_wa_header-typ = c_s.
      l_wa_header-key = text-008. " Page No:
      l_wa_header-info =  l_v_pagno.
      append l_wa_header to fp_i_detailheader.
      clear l_wa_header.
    To Display the User ID
      l_wa_header-typ = c_s.
      l_wa_header-key = text-009. " User ID
      l_wa_header-info = sy-uname.
      append l_wa_header to fp_i_detailheader.
      clear l_wa_header.
    To Display the Date/Time
      l_wa_header-typ = c_s.
      l_wa_header-key = text-010. " Date/Time:
      l_v_time = sy-uzeit.
      l_v_date = sy-datum.
      write: sy-uzeit to l_v_time.
      write sy-datum to l_v_date using edit mask l_c_edit.
      concatenate l_v_date
                  l_c_slash
                  l_v_time into l_wa_header-info+0(25) separated by space.
      append l_wa_header to fp_i_detailheader.
      clear: l_wa_header, l_v_date.
    To Display the Report Description
      l_wa_header-typ = c_s.
      l_wa_header-key = text-011.                " Report Description
      l_wa_header-info = text-012.
      append l_wa_header to fp_i_detailheader.
      clear l_wa_header.
      append l_wa_header to fp_i_detailheader.
    endform.                    " detail_header
    I will be greatful if any one can please help me in removing me the dump.
    REGARDS
    LATHA.

  • Getting dump with message  CALL_FUNCTION_GET_NAME_FAILED

    Hi,
    My requirement is to write a report which will be run in background every Monday and the result will be sent to a user as email with excel as attachment.
    I tried it by giving the email in 'Spool list recipient' in SM36. ut since the length of the output is more than 255 chars, so i thought of writing the email code as shown below.
    DATA: l_message_content LIKE soli OCCURS 10 WITH HEADER LINE,
            l_receiver_list LIKE soos1 OCCURS 5 WITH HEADER LINE,
            l_packing_list LIKE soxpl OCCURS 2 WITH HEADER LINE,
            l_listobject LIKE abaplist OCCURS 10,
            l_compressed_attachment LIKE soli OCCURS 100 WITH HEADER LINE,
            lw_object_hd_change LIKE sood1,
            l_compressed_size LIKE sy-index.
      l_receiver_list-recnam = sy-uname .
      l_receiver_list-esc_des = 'B'.
      APPEND l_receiver_list.
      lw_object_hd_change-objla = sy-langu.
      lw_object_hd_change-objnam = 'Selection'.
      lw_object_hd_change-objsns = 'P'.
    Mail subject
      lw_object_hd_change-objdes = 'KRB SAP Inconsistency Report'.
    Mail body
      APPEND 'Consisteny report between KRB and SAP' TO l_message_content.
      CALL FUNCTION 'TABLE_COMPRESS'
        IMPORTING
          compressed_size = l_compressed_size
        TABLES
          in              = <fs_table>
          out             = l_compressed_attachment.
      DESCRIBE TABLE l_compressed_attachment.
      CLEAR l_packing_list.
      l_packing_list-transf_bin = 'X'.
      l_packing_list-head_start = 0.
      l_packing_list-head_num = 0.
      l_packing_list-body_start = 1.
      l_packing_list-body_num = sy-tfill.
      l_packing_list-objtp = 'ALI'.
      l_packing_list-objnam = 'Selection'.
      l_packing_list-objdes = 'SAP KRB Consistency Report'.
      l_packing_list-objlen = l_compressed_size.
      APPEND l_packing_list.
      CALL FUNCTION 'SO_OBJECT_SEND'
        EXPORTING
          object_hd_change = lw_object_hd_change
          object_type      = 'RAW'
          owner            = sy-uname
        TABLES
          objcont          = l_message_content
          receivers        = l_receiver_list
          packing_list     = l_packing_list
          att_cont         = l_compressed_attachment.
    I am getting the mail which i checked in SBWP but when i clicked on the attachment i am getting  dump with message CALL_FUNCTION_GET_NAME_FAILED.
    Short text
        Error when starting a Remote Function Call.
    What happened?
        "CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 thRc=223#CPIC program connection ended (read
         error) "
        An error occurred when executing a Remote Function Call.
    Error analysis
        An error occurred when executing a Remote Function Call.
        "CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 thRc=223#CPIC program connection ended (read
         error) "
        Status of connection.... "RFC DRV=??? ???"
        Internal error code.... "RFC_IO4"
        Internal error: Invalid RFC handle.
    Trigger Location of Runtime Error
        Program                                 SAPMSSY1
        Include                                 SAPMSSY1
        Row                                     266
        Module type                             (FORM)
        Module Name                             XAB_RUN_DRIVER
    Please help in this.
    <removed by moderator>
    Edited by: Thomas Zloch on Sep 14, 2011 11:57 AM

    Hi,
    Check your RFC Connection Configuration. Also, check the used username & password.
    Reward points if the asnwer is helpful.
    Regards,

  • Getting dump in my Z program

    hi,
    i am  getting dump in my below code in the delete statement line.actually previously it worked fine but now suddenly we r getting dump  in the second delete statement below.can some body tell me the reason.
    error analysis: You attempted to change, delete or create a line in the
    internal table "\PROG=YBDISEMAT\DATA=INT_MARC", but no valid cursor exists
    for the table.
    Possible reasons:
    1. The relevant ABAP/4 statement does not include the addition
       "...INDEX...", although the statement is not
       inside a "LOOP...ENDLOOP" loop processing this table.
    2. The relevant ABAP/4 statement was called from within a
       "LOOP...ENDLOOP" loop after a DELETE "\PROG=YBDISEMAT\DATA=INT_MARC".
    LOOP AT int_marc INTO wa_marc.
            IF wa_marc-werks IN ra_source.
              READ TABLE int_disgr WITH KEY zdisgr = wa_marc-disgr
                                            zwerks = wa_marc-werks.
              IF sy-subrc NE 0.
                DELETE int_marc.
              ENDIF.
            ENDIF.
            IF wa_marc-werks IN ra_zmdc.
              READ TABLE int_disgr WITH KEY zdisgr = wa_marc-disgr
                                            zwerks = wa_marc-werks.
              IF sy-subrc NE 0.
                DELETE int_marc. _______________________________________________ getting dump here
              ENDIF.
            ENDIF.
            CLEAR wa_marc.
          ENDLOOP.

    Hi.
    First of all deleting an internal table inside the loop is not a good practise ..You are deleting the same internal table that you are looping..
    Instead of that you can make a small modification to your code.
    LOOP AT int_marc INTO wa_marc.
    IF wa_marc-werks IN ra_source.
    READ TABLE int_disgr WITH KEY zdisgr = wa_marc-disgr
    zwerks = wa_marc-werks.
    IF sy-subrc NE 0.
    move 'X' to any field in the internal table.
    or you can have an additinal field in the end of the internal table like flag type char01.
    and move 'X' to wa_marc-flag.
    ENDIF.
    ENDIF.
    Now outside the loop you can delete
    delete int_marc where flag = 'X'.
    Regards
    Ansari

  • Getting dump while posting goods receipt through TCode migo

    Hi,
    I am getting dump after I click on post button in TCode 'MIGO'.
    Short text
        The current application triggered a termination with a short dump.
    Short text of error message:
    Document number 9 5000000000 2010 was already assigned
    Long text of error message:
      Diagnosis
          Document number 5000000000 in company code 9 and fiscal year 2010
          has already been assigned.
      System Response
          Termination of processing.
      Procedure
          Check document number range 50 in company code 9 and fiscal year
          2010 and correct the number range status if necessary.
    Technical information about the message:
    Message class....... "F5"
    Number.............. 152
    Variable 1.......... 9
    Variable 2.......... 5000000000
    Variable 3.......... 2010
    Variable 4.......... 50
    So please help me what I can do?
    Thanks,
    Moderator Message: The short dump is self-explanatory.
    Edited by: kishan P on Nov 18, 2010 11:17 AM

    Hi,
    plx try to chane the status in IE02
    Go to edit ,manual options , in that delete the HU assignemtn
    and then save it and come out of it ..
    Hope that helps

  • Getting Dump at the time of opening WF

    Hi,
    we had created workflow WS93600011 in our development server. Till Friday 10.07.2009 it was working fine. We did some small change and activated the workflow. Till that time we were able to open the workflow template. On 13.06.2009 when we tried to open the workflow then it was giving dump, so accordingly we checked is this the problem with only 1 workflow template or all the workflow templates and we found that this is the problem with only 1 workflow template not all. So accordingly we did some analysis and I tried to check whether any SAP OSS Notes needs to be implemented but all the notes are already in place.
    Please see below the what dump says...
    Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED_NO
    Except.                     CX_SY_REF_IS_INITIAL
    Date and Time          07/20/2009 13:30:44
    Short text                                                                               
    Access via 'NULL' object reference not possible.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_WFD_TASK_PROXY=============CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    What 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.
    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 "CONSTRUCTOR" "(METHOD)", 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. 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.
    How to correct the error                                                                               
    Probably the only way to eliminate the error is to correct the program.
        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:
        "OBJECTS_OBJREF_NOT_ASSIGNED_NO" "CX_SY_REF_IS_INITIAL"
        "CL_WFD_TASK_PROXY=============CP" or "CL_WFD_TASK_PROXY=============CM001"
        "CONSTRUCTOR"
        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.
        The exception must either be prevented, caught within proedure
        "CONSTRUCTOR" "(METHOD)", or its possible occurrence must be declared in the                  
        RAISING clause of the procedure.                                                              
        To prevent the exception, note the following:                                                 
    System environment                                                                               
    SAP-Release 701                                                                               
    Application server... "ydedb"                                                                 
        Network address...... "9.57.177.109"                                                          
        Operating system..... "AIX"                                                                   
        Release.............. "6.1"                                                                   
        Hardware type........ "00C15EAF4C00"                                                          
        Character length.... 16 Bits                                                                  
        Pointer length....... 64 Bits                                                                 
        Work process number.. 4                                                                       
        Shortdump setting.... "full"                                                                               
    Database server... "ydedb"                                                                    
        Database type..... "DB6"                                                                      
        Database name..... "YDE"                                                                      
        Database user ID.. "SAPYDE"                                                                               
    Terminal.......... "IBM-BE014934612"                                                                               
    Char.set.... "C"                                                                               
    SAP kernel....... 701                                                                         
        created (date)... "Mar 30 2009 21:48:51"                                                      
        create on........ "AIX 2 5 00CB5A5B4C00"                                                      
        Database version. "DB6_81 "                                                                               
    Patch level. 37                                                                               
    Patch text.. " "                                                                               
    Database............. "DB6 08.02.*, DB6 09.*"                                                 
        SAP database version. 701                                                                     
        Operating system..... "AIX 1 5, AIX 2 5, AIX 3 5, AIX 1 6"                                                                               
    Memory consumption                                                                               
    Roll.... 16192                                                                               
    EM...... 8379696                                                                               
    Heap.... 0                                                                               
    Page.... 73728                                                                               
    MM Used. 3730104                                                                               
    MM Free. 457144                                                                               
    User and Transaction                                                                               
    Client.............. 210                                                                      
        User................ 013319744                                                                
        Language key........ "E"                                                                      
        Transaction......... "PFTC "                                                                  
        Transactions ID..... "4A62BD9572AD004BE10080000939B16D"                                                                               
    Program............. "CL_WFD_TASK_PROXY=============CP"                                       
        Screen.............. "SAPLRHWS 1001"                                                          
        Screen line......... 19                                                                       
    Information on where terminated                                                                   
        Termination occurred in the ABAP program "CL_WFD_TASK_PROXY=============CP" -                 
         in "CONSTRUCTOR".                                                                               
    The main program was "SAPLRHW4 ".                                                                               
    In the source code you have the termination point in line 91                                  
        of the (Include) program "CL_WFD_TASK_PROXY=============CM001".                               
        The termination is caused because exception "CX_SY_REF_IS_INITIAL" occurred in                
        procedure "CONSTRUCTOR" "(METHOD)", but it was neither handled locally nor                    
         declared                                                                               
    in the RAISING clause of its signature.                                                                               
    The procedure is in program "CL_WFD_TASK_PROXY=============CP "; its source                   
         code begins in line                                                                               
    1 of the (Include program "CL_WFD_TASK_PROXY=============CM001 ".                             
    Source Code Extract                                                                               
    Line  SourceCde                                                                               
    61       a_task = l_task.                                                                      
       62     ENDIF.                                                                               
    63 *-- load task                                                                               
    64     IF in_task IS NOT INITIAL.                                                              
       65       a_task = in_task.                                                                     
       66     ENDIF.                                                                               
    67     CALL METHOD deserialize                                                                 
       68       EXPORTING                                                                               
    69         in_display          = in_display                                                    
       70       EXCEPTIONS                                                                               
    71         task_not_exists     = 1                                                             
       72         task_already_locked = 2                                                             
       73         OTHERS              = 3.                                                            
       74     IF sy-subrc = 2.                                                                        
       75 *---- we couldn't lock in update mode -> create a proxy in display                          
       76 *---- mode                                                                               
    77       CALL METHOD deserialize                                                               
       78         EXPORTING                                                                               
    79           in_display          = 'X'                                                         
       80         EXCEPTIONS                                                                          
       81           task_not_exists     = 1                                                           
       82           task_already_locked = 2                                                           
       83           OTHERS              = 3.                                                          
       84     ENDIF.                                                                               
    85     IF sy-subrc <> 0.                                                                       
       86       RAISE task_not_found.                                                                 
       87     ENDIF.                                                                               
    88   ENDIF.                                                                               
    89 * create before image on the container                                                      
       90   TRY.                                                                               
    >>>>>       CALL METHOD a_container->create_before_image                                          
       92         EXPORTING                                                                               
    93           include_extensions = 'X'.                                                         
       94     CATCH cx_swf_cnt_container .                                                            
       95   ENDTRY.                                                                               
    96                                                                               
    97 ENDMETHOD.                    "constructor                                                  
    If any body is having any idea to resolve this issue then please let me know. We are into the last stage of the development.
    Thanks in advance for replying this issue.
    Best Regards,
    Prashant Raichurkar

    Hi Rick,
    The small change I did into the business object and added those parameter into the task and workflow through binding. And you are right the changed I did was on 10/07 and I am getting dump from 13/07.
    Also I already copied to copy the workflow template into another, in the new template everything is blank including workflow container and template. It is as like new template.
    Also one thing I want to tell you that I thought to activate previous version so the moment I click on choose version again I got the same dump.
    Please let me know if you have any idea to resolve this issue.
    Thanks & Regards,
    Prashant

  • Getting dump after pressing save button in web interface

    Hi all!
    When i press save button in my web interface. i'm getting dump:
    The following error text was processed in the system EDW : Syntax error in program GP1ARALDY6TX0M51YNJ5FNELBCI .
    The error occurred on the application server kurmutau_EDW_01 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Form: VALUE_TO_SID_CONVERT1 of program SAPLRRSI
    Form: VALUE_TO_SID_CONVERT1 of program SAPLRRSI
    Form: VALUE_TO_SID_CONVERT of program SAPLRRSI
    Function: RRSI_VAL_SID_SINGLE_CONVERT of program SAPLRRSI
    Form: GET_SID of program GP5VHI3S252BZAWN36WKBAS71QH
    Form: GET_DIMID_DA of program GP5VHI3S252BZAWN36WKBAS71QH
    Form: WRITEIC of program GP5VHI3S252BZAWN36WKBAS71QH
    Form: WRITEIC of program GPEP1KAM5Q04J9717R7T5PDWE0W
    Form: APO_WRITEIC of program GPEP1KAM5Q04J9717R7T5PDWE0W
    Method: _WRITE_TO_CUBE of program CL_RSDRI_INFOCUBE=============CP
    Infocube and web interface were imported from BW3.5 system...
    How can i solve this problem?
    Thanks in advance...

    Go in ST22 and post the short dump to better ubderstand.
    Regards

  • Getting Dump  COMMIT_IN_PERFORM_ON_COMMIT

    Hi Experts,
    I am getting Dump  COMMIT_IN_PERFORM_ON_COMMIT in the module pool program.
    Can you please suggest.
    Regards,
    IFF

    Hi,
    Are you updating the records in any DB tables? After getting dump, can you check in the transaction SM13 for analysis.
    Can you more elaborate your question to answer?
    Thanks,
    Shiva.

  • Getting Dump from a select query

    Dear All,
    Am selecting records from KEKO  and storing into  E1KEKO  internal table. But am getting dump error. I need to send those E1KEKO records as idoc. Kindly help me out how to fix this dump.
      SELECT * INTO CORRESPONDING FIELDS OF e1keko
        FROM keko
        WHERE keko~matnr = p_matnr
          AND keko~werks = p_werks
          AND keko~bwtar = 'Z06'
          AND keko~bwvar = 'Z06'.
        CLEAR t_idoc_data.
        t_idoc_data-segnam = c_segnam_e1keko.
        t_idoc_data-mandt = sy-mandt.
        t_idoc_data-sdata  = e1keko.
        APPEND t_idoc_data.
        CLEAR e1keph.
    endselect
    Thanks in advance.
    Anandhan

    Hi,
    If i use the below select query in a test program,  that time also am getting the same dump.
    DATA: e1keph TYPE e1keph,
          e1keko TYPE e1keko.
       SELECT * INTO CORRESPONDING FIELDS OF e1keko
        FROM keko
        WHERE keko~matnr = '000000000010801071'.
      endselect.
    (code}
    The dump showing the below message
      The reason for the exception is:
      In a SELECT access, the read file could not be placed in the target
      field provided.
      Either the conversion is not supported for the type of the target field
      the target field is too small to include the value, or the data does no
      have the format required for the target field.
    Thanks in advance
    Anandhan

  • Getting dump in table maintainance generator

    hi friends ,
    in dev system and production iam able to maintain data in the table ,but in quality i am getting dump.
    my error is bellow,
    Runtime Errors         DYNPRO_FIELD_CONVERSION
    Date and Time          20.03.2009 14:11:59
    Short text
         Conversion error
    What happened?
         The current screen processing action was terminated since a situation
         occurred where the application could not continue.
         This is probably due to an error in the ABAP program or in the current
         screen.
    Error analysis
         The program has been interrupted and cannot resume.
         Program "SAPLY_J_2IRG1BAL" attempted to display fields on screen 0001.
         An error occurred during the conversion of this data.
    Trigger Location of Runtime Error
         Program                                 SAPLY_J_2IRG1BAL
         Include                                 LSVIMOXX
         Row                                     253
         Module type                             (MODULE PBO)
         Module Name                             LISTE_SHOW_LISTE

    Hi Sudheer,
    Did you add any FLTP field in table and generating table maintenance generator for the same? FLTP type of field can't be displayed on screen or in SM30, They need to be converted to CHAR before displaying. Please check for the same.
    Edited by: Gaurav Mishra on Mar 20, 2009 12:08 PM

  • Getting Dump   GETWA_NOT_ASSIGNED, In ALV

    Hi Experts,
    Once ALV report is generated then when I am downloaing to xls, I am getting dump
    GETWA_NOT_ASSIGNED.
    Please advice.
    Regards,
    IFF

    Possibly the field catalog and output table is not synch.
    Try to create the field catalog automatically (LVC_FIELDCATALOG_MERGE). and not by mannual ( hardcoded)
    If you mentioned any coloring in alv , for testing purpose (just comment the coloring part) and try

  • Getting Dump in Production system

    Hi,
    we are getting dump in one customise program due to missing include program.
    how to transport this missing program.?
    regards,
    Ramesh

    Hi,
    run tcode SE10 in DEV system.
    click on create -> select workbench request -> enter description of request -> enter
    now double click on request -> click change end enter following
    In first row
    Program ID:    R3TR
    Object Type:  PROG
    Object Name: name of include. press enter
    in second row
    Program ID:    LIMU
    Object Type:  REPS
    Object Name: name of include. press enter
    then  click on release.
    import this request in PRD system.
    regards,
    kaushal

  • ZReport getting dump in Production but not in Quality and development

    Hi,
    There isa Zreport which displays daily stock  in PP module.
    It is getting dump in Production not in quality and development.
    Since four days it is getting dump. Before that it is fine.
    Please any one guide How to resolve.
    Advance Thanks.

    Runtime Error          SAPSQL_IN_ITAB_ILLEGAL_OPTION
           Occurred on     29.08.2007 at   08:50:13
    <u>Invalid value in OPTION field of value table for IN itab operator.</u>
    What happened?
    <b>Error in ABAP application program.</b>
    The current ABAP program "ZPPRDR417" had to be terminated because o
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and admin
    termination messages, especially those beyond their normal deletio
    date.
    <b>Error analysis</b>
    The current ABAP/4 program attempted to execute an ABAP/4 Open SQL
    statement in which the WHERE condition contains an IN itab operator
    The IN itab operator is used with internal tables which
    have the following structure:
       SIGN(1)   OPTION(2)   LOW LIKE db_field   HIGH LIKE db_field
    The OPTION column should contain only one of the following values:
       "EQ LE GE CP BT NE LT GT NP NB"
    The value " " is not allowed here.
    <b>How to correct the error</b>
    Use only one of the permitted values in the OPTION column.
    Information on where terminated
    The termination occurred in the ABAP program "ZPPRDR417" in "WIP_STOCK_REP
    The main program was "ZPPRDR417 ".
    The termination occurred in line 330 of the source code of the (Include)
    program "ZPPRDR417_FORM"
    of the source code of program "ZPPRDR417_FORM" (when calling the editor 33
    Source code extract
    Caution: Program has changed
    Caution: At time of termination,  Active source code no longer available
    003000 ?   r_bwart-low  =  '106'.
    003010 ?   append r_bwart.
    003020 ?
    003030 ?   r_bwart-low  =  '124'.
    003040 ?   append r_bwart.
    003050 ?
    003060 ?   r_bwart-low  =  '125'.
    003070 ?   append r_bwart.
    003080 ?
    003090 ?   select matnr
    003100 ?          werks
    003110 ?     into table i_marc
    003120 ?     from marc
    003130 ?    where ( matnr LIKE 'BILC%'
    003140 ?       OR   matnr LIKE 'LGN%'
    003150 ?       OR   matnr LIKE 'BRN%'
    003160 ?       OR   matnr LIKE 'EBB%' )
    003170 ?       AND  matnr NE 'BRN_DECLASSE'
    003180 ?       AND  matnr NE 'BRN_SAF'
    003190 ?       and  werks in r_werks.
    003200 ?
    003210 ?   r_material-sign = 'I'.
    003220 ?   r_material-option = 'EQ'.
    003230 ?
    003240 ?   loop at i_marc into wa_marc.
    003250 ?     r_material-low  = wa_marc-matnr.
    003260 ?     append r_material.
    003270 ?   endloop.
    003280 ?   clear r_material.
    003290 ?
         > ?   if not i_matdoc is initial.
    003310 ?    select MBLNR
    003320 ?           MJAHR
    003330 ?           ZEILE
    003340 ?           BWART
    003350 ?           MATNR
    003360 ?           WERKS
    003370 ?           SHKZG
    003380 ?           MENGE
    003390 ?           UMWRK
    003400 ?      into table i_mseg_qty
    003410 ?      from mseg
    003420 ?       for all entries in i_matdoc
    003430 ?     where MBLNR eq i_matdoc-MBLNR
    003440 ?       and MJAHR eq i_matdoc-MJAHR
    003450 ?       and BWART in r_bwart
    003460 ?       and matnr in r_material
    003470 ?       and werks in r_werks.
    003480 ?
    003490 ?    sort i_mseg_qty by matnr.

  • Getting dump for every senario

    Hi experts
    I am new to workflow i am getting dump on execution of every  senario......
    i am providing code of that one.... plz help me.
    The following syntax error occurred in the program
    CL_SWF_RUN_WIM_LOCAL==========CP :
    "You can only define attributes in the PUBLIC, PROTECTED or PRIVATE sec"
    Error in ABAP application program.
    The current ABAP program "CL_SWF_RUN_WIM_FACTORY========CP" had to be
    terminated because one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    Thanks,
    Prasad.

    Hi,
    This class CL_SWF_RUN_WIM_LOCAL  is essential in tRFC  to Execute the workflow.
    The class would have affected.
    1) Check any User exit or Badi used related to this Class, if so Deactivate those and  check.
    2) Then  Still you getting the dump, check for note corrections.
    Regards,
    Surjith

  • I am getting dump while downloading

    i am getting dump while downloading file  to presentaion server .
    please suggest me .
    code is like below.
    PARAMETERS : p_dwn   TYPE dxfile-filename.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_dwn.
        CALL FUNCTION 'F4_FILENAME'
      EXPORTING
        PROGRAM_NAME        =
        DYNPRO_NUMBER      =
        FIELD_NAME                =
           IMPORTING
             file_name           = p_dwn.
        CALL FUNCTION 'GUI_DOWNLOAD'
             EXPORTING
                  filename              = p_dwn
                  filetype              = 'ASC'
                  write_field_separator = 'X'
             TABLES
                  data_tab              = t_zvtpmheader.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.

    Hi Veeru,
    This dump you are getting because of type mismatch, just change the file path as follows :-
    data declaration should be like this.
    PARAMETERS : p_dwn TYPE STRING. <<<----
    it will surely work.
    cheers
    Dhirendra

Maybe you are looking for