Getting Dump CALL_FUNCTION_SYSCALL_ONLY

Hi Expert ,
while finished the   SM:SELFDIAGNOSIS  this job in Solution manager system so in that moment i'm getting a CALL_FUNCTION_SYSCALL_ONLY dump in quality server.
Runtime Errors         CALL_FUNCTION_SYSCALL_ONLY
Date and Time          25.08.2011 01:43:31
     Short text
         You are not authorized to logon to the target system (error code 0).
     What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPLSYST" 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
         RFC calls (Remote Function Calls) were sent with the invalid user
         ID "DDIC ". The receiving system regarded the first call as a system
         call and therefore accepted it without a valid user ID.
         However, the last call was to an external function module and
         was thus rejected.
         The action was carried out by caller "DDIC " with client 100 from within
         system "SOL " and transaction " ".
     How to correct the error
         In the trusted relation, a logon failure can be caused either by the
         fact that the entered security key for system "SOL " is invalid or that the
          trusted system data has lost its validity due to a timeout.
         The error code of the trusted system was 2.
         Meaning:
           0    Correct logon as trusted system mode
           1 No trusted system entry for the caller system "SOL " or the
                security key entry for system "SOL " is invalid
           2 User "DDIC " has no RFC authorization (authorization object
                S_RFCACL) for caller "DDIC " with client 100.
           3    The timestamp of the logon data is invalid
         The error code of the SAP logon procedure was 0.
         Meaning:
           0    Logon was correct
           1    Wrong password or invalid user ID
           2    User is locked
           3    Too many logon attempts
Runtime Errors         CALL_FUNCTION_SYSCALL_ONLY
D     ate and Time          25.08.2011 01:43:31     
           5    Error in authorization buffer (internal error)
           6    No external user check
           7    Invalid user type
           8    Validity period of user exceeded
     System environment
         SAP-Release 701
         Application server... "QAserver"
         Network address...... "192.168.1.6"
         Operating system..... "AIX"
         Release.............. "6.1"
         Hardware type........ "000A154AD400"
         Character length.... 16 Bits
         Pointer length....... 64 Bits
         Work process number.. 0
         Shortdump setting.... "full"
         Database server... "QAserver"
         Database type..... "DB6"
         Database name..... "QAS"
         Database user ID.. "SAPQAS"
         Terminal.......... " "
         Char.set.... "C"
         SAP kernel....... 701
         created (date)... "Sep 23 2010 21:55:35"
         create on........ "AIX 2 5 00CB5A5B4C00"
         Database version. "DB6_81 "
         Patch level. 111
         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, AIX 1 7"
         Memory consumption
         Roll.... 16192
         EM...... 4189848
         Heap.... 0
         Page.... 0
         MM Used. 1226088
         MM Free. 2961160
     User and Transaction
         Client.............. 000
         User................ "SAPSYS"
         Language Key........ "E"
         Transaction......... " "
         Transactions ID..... "858DCEE0F1E5F1B3AAFCE61F137E15A3"
         Program............. "SAPLSYST"
         Screen.............. "SAPMSSY1 3004"
         Screen Line......... 2
Runtime Errors         CALL_FUNCTION_SYSCALL_ONLY
D     ate and Time          25.08.2011 01:43:31     
         Information on caller of Remote Function Call (RFC):
         System.............. "SOL"
         Database Release.... 701
         Kernel Release...... 701
         Connection Type..... 3 (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.)
         Call Type........... "synchron and non-transactional (emode 0, imode 0)"
         Inbound TID.........." "
         Inbound Queue Name..." "
         Outbound TID........." "
         Outbound Queue Name.." "
         Client.............. 100
         User................ "DDIC"
         Transaction......... " "
         Call Program........."CL_DSMOP_RFC_WATCHER==========CP"
         Function Module..... "RFCPING"
         Call Destination.... "SM_QASCLNT100_TRUSTED"
         Source Server....... "solid_SOL_01"
         Source IP Address... "192.168.1.2"
         Additional information on RFC logon:
         Trusted Relationship "X"
         Logon Return Code... 0
         Trusted Return Code. 2
         Note: For releases < 4.0, information on the RFC caller are often
         only partially available.
     Information on where terminated
         Termination occurred in the ABAP program "SAPLSYST" - in "TABLE_COMPRESS".
         The main program was "SAPMSSY1 ".
         In the source code you have the termination point in line 67
         of the (Include) program "SAPMSSY1".
     Source Code Extract
     Line     SourceCde
        37     endmodule.
        38     
        39     module %_rfcdia_call output.
        40         "Do not display screen !
        41         call 'DY_INVISIBLE_SCREEN'.
        42         perform remote_function_diacall.
        43     endmodule.
        44     
        45     module %_cpic_start.
        46       if sy-xprog(4) = '%RFC'.
        47         perform remote_function_call using rfctype_external_cpic.
        48       else.
        49         call 'APPC_HD' id 'HEADER' field header id 'CONVID' field convid.
        50         perform cpic_call using convid.
        51       endif.
        52     endmodule.
        53     
        54     
Runtime Errors         CALL_FUNCTION_SYSCALL_ONLY
D     ate and Time          25.08.2011 01:43:31     
        55     form cpic_call using convid type c.
        56       communication send id convid buffer header.
        57       if sy-subrc eq 0.
        58         perform (sy-xform) in program (sy-xprog).
        59       else.
        60         message a800.
        61       endif.
        62     endform.
        63     
        64     form remote_function_call using value(type).
        65       data rc type i value 0.
        66       do.
     >>>>>         call 'RfcImport' id 'Type' field type.
        68         if sy-xprog = 'JAVA'.
        69           system-call plugin
        70                       id 'JAVA' value 'FORW_JAVA'
        71                       id 'RC'   value rc.
        72     *   if there is no rollout on the JAVA side which
        73     *   rolls both, JAVA and ABAP, we return to the
        74     *   C-Stack and reach this point
        75     
        76     *   in case there was an rollout, the ABAP-C stack is lost
        77     *   and we jump direkt to this point
        78     
        79     *   here we trigger the rollout on this Abap side with
        80     *   the following statement
        81           system-call plugin
        82                       id 'JAVA' value 'ROLL_OUT'
        83                       id 'RC'   value rc.
        84         else.
        85           perform (sy-xform) in program (sy-xprog).
        86           rsyn >scont sysc 00011111 0.
     Contents of system fields
     Name     Val.
     SY-SUBRC     0
     SY-INDEX     2
     SY-TABIX     0
     SY-DBCNT     1
     SY-FDPOS     0
     SY-LSIND     0
     SY-PAGNO     0
     SY-LINNO     1
     SY-COLNO     1
     SY-PFKEY     
     SY-UCOMM     
     SY-TITLE     CPIC and RFC Control
     SY-MSGTY     
     SY-MSGID     
     SY-MSGNO     000
     SY-MSGV1     
     SY-MSGV2     
     SY-MSGV3     
     SY-MSGV4     
     SY-MODNO     0
     SY-DATUM     20110825
     SY-UZEIT     014330
     SY-XPROG     SAPLSYST
Runtime Errors         CALL_FUNCTION_SYSCALL_ONLY
D     ate and Time          25.08.2011 01:43:31     
     SY-XFORM     RFCPING
     Active Calls/Events
     No.   Ty.          Program                             Include                             Line
           Name
         2 FORM         SAPMSSY1                            SAPMSSY1                               67
           REMOTE_FUNCTION_CALL
         1 MODULE (PBO) SAPMSSY1                            SAPMSSY1                               30
           %_RFC_START
     Chosen variables
     Name
         Val.
     No.          2     Ty.      FORM
     Name      REMOTE_FUNCTION_CALL
     %_DUMMY$$
         0000
         0000
         2222
         0000
     SY-REPID
         SAPMSSY1
         0000000000000000000000000000000000000000
         0000000000000000000000000000000000000000
         5454555322222222222222222222222222222222
         310D339100000000000000000000000000000000
     SYST-REPID
         SAPMSSY1
         0000000000000000000000000000000000000000
         0000000000000000000000000000000000000000
         5454555322222222222222222222222222222222
         310D339100000000000000000000000000000000
     HEADER
         000000000000
         000000000000
     TYPE
         3
         0000
         0003
     SY-XPROG
         SAPLSYST
         0000000000000000000000000000000000000000
         0000000000000000000000000000000000000000
         5454555522222222222222222222222222222222
         310C393400000000000000000000000000000000
     %_ARCHIVE
         0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
         0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
         2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
         0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Runtime Errors         CALL_FUNCTION_SYSCALL_ONLY
D     ate and Time          25.08.2011 01:43:31     
     RC
         0
         0000
         0000
     SY-XFORM
         RFCPING
         000000000000000000000000000000
         000000000000000000000000000000
         544544422222222222222222222222
         26309E700000000000000000000000
     %_SPACE
         0
         0
         2
         0
     No.          1     Ty.      MODULE (PBO)
     Name      %_RFC_START
     %_PRINT
             000                                                                                0###
         0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
         0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
         2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000
         0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
     RFCTYPE_INTERNAL
         3
         0000
         0003
     Internal notes
         The termination was triggered in function "PrepareSignOnRabax"
         of the SAP kernel, in line 5385 of the module
          "//bas/701_REL/src/krn/rfc/abrfcfun.c#13".
         The internal operation just processed is "CALY".
         Internal mode was started at 20110825014330.
         The called function module was "RFCPING ".
         Caller system......: "SOL "
         Caller.............: "DDIC "
         Caller client......: 100
         RFC user ID........: "DDIC "
         RFC client.........: 100
         Transaction code...: " "
         Logon return code..: 0
         Trusted return code: 2
         Note: For releases < 4.0, information on the caller may not exist
     Active Calls in SAP Kernel
     Lines of C Stack in Kernel (Structure Differs on Each Platform)
     => 64 bit R/3 Kernel
     => 64 bit AIX Kernel
     => Heap limit      = unlimited
     => Stack limit     = 4294967296
     => Core limit      = 1073741312
     => File size limit = unlimited
Runtime Errors         CALL_FUNCTION_SYSCALL_ONLY
D     ate and Time          25.08.2011 01:43:31     
     => Heap address  = 0x0x11cd64d20
     => Stack address = 0xfffffffffff4850
     => Stack low     =  0xfffffffffff4850
     => Stack high    =  0xffffffffffff810
     => Stack Trace:
          AixStack() at 0x10007fd28
          CTrcStack2() at 0x10007fe20
          rabax_CStackSave__Fv() at 0x100068b10
          ab_rabax() at 0x1000650a4
          PrepareSignOnRabax() at 0x100e3beb0
          ab_rfcimport() at 0x100e3a7e4
          ab_jcaly__Fv() at 0x10005aeb8
          ab_extri__Fv() at 0x10052701c
          ab_xevent__FPCUs() at 0x100a31b84
          ab_dstep() at 0x100805368
          dynpmcal() at 0x100d7f2b4
          dynppbo0() at 0x100d7cdf8
          dynprctl() at 0x100d84bc4
          dynpen00() at 0x100d786a8
          Thdynpen00() at 0x10009b01c
          TskhLoop() at 0x10009ffa8
          ThStart() at 0x1000b7dd0
          DpMain() at 0x1015518ec
          nlsui_main() at 0x101a4b620
     List of ABAP programs affected
     Index     Typ     Program     Group     Date     Time     Size     Lang.
          0     Prg     SAPMSSY1          0     11.04.2005     09:27:15         21504     E
          1     Prg     SAPLSRFC          1     17.12.2008     07:36:53         43008     E
          2     Prg     SAPRFCSL          0     13.02.2005     17:31:45         17408     E
          3     Typ     RFCSYSACL          0     13.02.2005     17:31:45          7168     
          4     Prg     SAPLSYST          4     29.11.2010     01:19:16         35840     E
          5     Typ     SYST          0     09.09.2004     14:18:12         31744     
     Directory of Application Tables
     Name                                     Date       Time       Lngth
         Val.
     Program      SAPMSSY1
     SYST                                       .  .       :  :     00004612
         \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001\0\0\0
     Program      SAPRFCSL
     RFCSYSACL                                  .  .       :  :     00001760
         SOL                             QAS
Please assist me asap.
Regards
Shubh
Edited by: Shiv ji Mishra on Sep 17, 2011 9:38 AM

Hello,
It seems some trusted RFC issue. Check the RFCs, somewhere it might be possible that the DDIC user is being used and it doesn't have proper RFC authorization. Try to use some different user.
See the extract from the dump
The action was carried out by caller "DDIC " with client 100 from within system "SOL " and transaction " ". How to correct the error In the trusted relation, a logon failure can be caused either by the fact that the entered security key for system "SOL " is invalid or that the trusted system data has lost its validity due to a timeout. The error code of the trusted system was 2. Meaning: 0 Correct logon as trusted system mode 1 No trusted system entry for the caller system "SOL " or the security key entry for system "SOL " is invalid 2 User "DDIC " has no RFC authorization (authorization object S_RFCACL) for caller "DDIC " with client 100
Thanks

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