TIME_OUT ABAP DUMP executing KE30 in Business time

HI All,
when or users areexecuting KE30  in peak load time  , say from 8:00 AM to 6:00 PM it times out , but on weekends and evenings where there is less load on system it executes properly,  below are memory paramaters on app server
ztta/roll_area                6500000    Byte  Roll area per workprocess (total)
ztta/roll_first               1          Byte  First amount of roll area used in a dialog WP
ztta/short_area               4000000    Byte  Short area per workprocess
rdisp/ROLL_SHM                24576      8 kB  Part of roll file in shared memory
rdisp/PG_SHM                  16384      8 kB  Part of paging file in shared memory
rdisp/PG_LOCAL                150        8 kB  Paging buffer per workprocess
em/initial_size_MB            8192       MB    Initial size of extended memory
em/blocksize_KB               4096       kB    Size of one extended memory block
em/address_space_MB           4092       MB    Address space reserved for ext. mem. (NT only)
ztta/roll_extension           4000000000 Byte  Max. extended mem. per session (external mode)
abap/heap_area_dia            4000000000 Byte  Max. heap memory for dialog workprocesses
abap/heap_area_nondia         4000000000 Byte  Max. heap memory for non-dialog workprocesses
abap/heap_area_total          4000000000 Byte  Max. usable heap memory
abap/heaplimit                40000000   Byte  Workprocess restart limit of heap memory
ar running on db2 9.7 fp4   Instance memory is 40GB, STMM is ON,  not sure what further i can tune on DB,
Regards
thumma

Hello Thumma,
1). When running the transaction, did you checked what are the tables its reading ? Try to run ST05 trace and create an Index for the table which spends most time on it.
2). On the tables that you see in SM50 for the t-code KE30, run Individual statistics in DB20.
3). How is your St02 buffers look like. Did you run SAPPFPAR Check ?
You can run like /usr/sap/<SYSTEMNAME>/SYS/exe/run/sappfpar check pf=/usr/sap/<SYSTMENAME>/SYS/profile/<Profile name> nr=<System number> name=<System name>
Tune the SWAPs as recommended by SAPPFPAR . Refer to below link
http://basishowto.blogspot.com/2011/07/sappfpar-tools-to-check-sap-server.html
Regards,
Arjun

Similar Messages

  • TIME_OUT ABAP Dumps

    Hi Guys,
    We are getting ABAP Dumps in our systems very frequently. We are currently using 4.6C (DB2, AIX). We are gettting the dumps in many programs, is this because of some error in application. We currently have kernel patch level 2307.
    We have already increased the value of "rdisp/max_wprun_time" from 900 to 2500.
    I was suggested by SAP to add a new parameter "rdisp/hold_keeps_time_slice"
    which we dont have in our systems. Can anybody pls suggest in this case.
    I am attaching the dump:
    ABAP runtime errors    TIME_OUT
           Occurred on     10/17/2007 at 20:57:15
    Time limit exceeded.
    What happened?
    The program "SAPLBDMON " has exceeded the maximum permitted runtime
    and has therefore been terminated.
    What can you do?
    Note the actions and input that caused the error.
    Inform your SAP system administrator.
    You can print out this message by choosing "Print". Transaction ST22
    allows you to display and manage termination messages, including keeping
    them beyond their normal deletion date.
    Error analysis
    After a certain time, the program terminates to free the work process
    for other users who are waiting.
    This is to stop work processes being blocked for too long by
    - Endless loops (DO, WHILE, ...),
    - Database acceses with large result sets,
    - Database accesses without an apporpriate index (full table scan)
    - database accesses producing an excessively large result set,
    The maximum runtime of a program is set by the profile parameter
    "rdisp/max_wprun_time".
    The current setting is 2500 seconds. After this, the system gives the
    program a second chance. During the first half (>= 2500 seconds), a
    call that is blocking the work process (such as a long-running SQL
    statement) can occur. While the statement is being processed, the
    database layer will not allow it to be interrupted. However, to
    stop the program terminating immediately after the statement has been
    successfully processed, the system gives it another 2500 seconds.
    Hence the maximum runtime of a program is at least twice the value of
    the system profile parameter "rdisp/max_wprun_time".
    How to correct the error
    Long-running programs should be started as background jobs. If
    this is not possible, you can increase the value of the system
    profile parameter "rdisp/max_wprun_time".
    One or more of the following may also be useful:
    following measures:
    - Endless loops: Correct in program;
    - Database access with large result set:
      Use "SELECT * INTO itab" instead of "SELECT ... ENDSELECT";
    - Database access without suitable index: Check the index generation.
    If the error occurred in a non-modified SAP program, you may be
    able to find a solution in the SAP note system.
    If you have access to the note system yourself, use the following
    search criteria:
    "TIME_OUT"
    "SAPLBDMON " or "LBDMONU15 "
    "ALE_CCMS_EVALUATE_GRP"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.
    Thank you.
    Irshad Mohammed

    hi
    use function module  progress_indicator. it resets the run time value.
    use this where ever extraction of data is more were program needs much time, just call this function module it works.
    check this code,
    This program uploads material number from excel sheet and does
    ******modifications to material number if required by the user
    ******and updates the table zmatnr with new material against the old material number
    REPORT  zmat_no message-id zebg.
    TYPE-POOLS  truxs.
    TABLES:zmatnr.
    DATA : itab LIKE alsmex_tabline OCCURS 0 WITH HEADER LINE.
    DATA row LIKE alsmex_tabline-row.
    data : g_matnr like mara-matnr.
    data : count type i.
    data : itab_count type i.
    data : gi_final like zmatnr occurs 0 with header line.
    *data : begin of gi_final occurs 0,
          mat_old like mara-matnr,
          mat_new like mara-matnr,
          end of gi_final.
    ***********************Selection Screen*************************
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETER : pfname LIKE rlgrap-filename OBLIGATORY.
    select-options : records for count.
    SELECTION-SCREEN END OF BLOCK b1.
    *********************At Selection Screen*************************
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pfname.
      PERFORM search.
    START-OF-SELECTION.
    perform process.
    form process.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                = pfname
          i_begin_col             = 1
          i_begin_row             = 2
          i_end_col               = 12
          i_end_row               = 65000
        TABLES
          intern                  = itab
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          OTHERS                  = 3.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      describe table itab lines itab_count.
       row = 1.
      loop at itab.
        if itab-row <> row.
          append gi_final.
          clear gi_final.
        endif.
        case itab-col.
          when '1'.
          CLEAR G_MATNR.
          gi_final-OLD_MATNR = itab-value.
          CONCATENATE 'NEW' gi_final-old_matnr INTO itab-value.
            gi_final-new_MATNR = itab-value.
          endcase.
        row = itab-row.
      endloop.
      append gi_final.
      clear gi_final.
      CALL FUNCTION 'PROGRESS_INDICATOR'
      EXPORTING
        I_TEXT  = 'File Has Been Successfully Uploaded from Workstation ' .
      if not gi_final[] is initial.
        if not records-low is initial .
          if not records-high is initial.
            records-high = records-high + 1.
            DESCRIBE TABLE gi_final LINES count.
            IF records-high < count.
              DELETE gi_final FROM records-high TO count.
            ENDIF.
            IF records-low <> 1.
              IF records-low <> 0.
                DELETE gi_final FROM 1 TO records-low.
              ENDIF.
            ENDIF.
          endif.
        endif.
      endif.
      IF NOT GI_FINAL[] IS INITIAL.
        CALL FUNCTION 'PROGRESS_INDICATOR'
         EXPORTING
           I_TEXT  = 'Processing zmatnr table'
           I_OUTPUT_IMMEDIATELY = 'X'.
          if itab_count <> count.
             message i000 with 'records are not matching'.
             exit.
          else.
             modify zmatnr from table gi_final.
             message i000 with 'data base table modified successfully'.
          endif.
      endif.
    endform.
    *&      Form  search
          text
    -->  p1        text
    <--  p2        text
    FORM search .
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        EXPORTING
          static    = 'X'
        CHANGING
          file_name = pfname.
    ENDFORM.                    " search
    regards
    siva

  • APD master data join - ABAP dump TSV_TNEW_PAGE_ALLOC_FAILED

    Hi,
    I have created an APD to join 3 ISU master data infoobjects
    1. left join 0UCPREMISE with 0UC_CONNOBJ
    2. left join 0UCINSTALLA with result of 1.
    3. Store the data in ODS
    When I did this in DEV (D4S) everything worked - but there is also much
    less data in the master data infoobjects.
    When running the APD in Test (Q4S) I get ABAP dump after a while (not
    time out): TSV_TNEW_PAGE_ALLOC_FAILED
    1. I have tried with the APD setting to store in internal memory to OFF
    but the same problems occur.
    2. I tried to create index (on /BI0/P* ) for fields part of the join
    which was not table key but same problem occurs.
    3. I have no filters for the joins as I want to get all master data in
    the output ODS.
    4. The size of the p-tables are:
    /BI0/PUCPREMISE = 1 385 792
    /BI0/PUC_CONNOBJ = 1 031 272
    /BI0/PUCINSTALLA = 2 445 742
    5. Components + SP level:
    SAP_ABA     700     0013     SAPKA70013
    SAP_BASIS     700     0013     SAPKB70013
    PI_BASIS     2005_1_700     0013     SAPKIPYJ7D
    ST-PI     2005_1_700     0005     SAPKITLQI5
    SAP_BW     700     0015     SAPKW70015
    BI_CONT     703     0005     SAPKIBIIP5
    Linux / Oracle 10.2.0.2.0
    6. Info from ABAP Dump:
    Error analysis
    The internal table "\CLASS=CL_RSMD_RS_UTILITIES\METHOD=DATA_TO_RETURN\DATA=L_SX
    RETURN-TVALUE" could not be further extended. To enable
    error handling, the table had to be delete before this log was written.
    As a result, the table is displayed further down or, if you branch to
    the ABAP Debugger, with 0 rows.
    At the time of the termination, the following data was determined for
    the relevant internal table:
    Memory location: "Session memory"
    Row width: 200
    Number of rows: 15
    Allocated rows: 15
    Newly requested rows: 64 (in 1 blocks)
    Last error logged in SAP kernel
    Component............ "EM"
    Place................ "SAP-Server q4s_Q4S_72 on host q4s (wp 12)"
    Version.............. 37
    Error code........... 7
    Error text........... "Warning: EM-Memory exhausted: Workprocess gets PRIV "
    Description.......... " "
    System call.......... " "
    Module............... "emxx.c"
    Line................. 1881
    The error reported by the operating system is:
    Error number..... " "
    |    Error text....... " "
    How to correct the error
    The amount of storage space (in bytes) filled at termination time was:
    Roll area...................... 2755600
    Extended memory (EM)........... 1977608256
    Assigned memory (HEAP)......... 2000733904
    Short area..................... " "
    Paging area.................... 24576
    Maximum address space.......... 4294967295
    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:
    "TSV_TNEW_PAGE_ALLOC_FAILED" " "
    "CL_RSMD_RS_UTILITIES==========CP" or "CL_RSMD_RS_UTILITIES==========CM006"
    |    "DATA_TO_RETURN"                    
    Anybody have any idea what i can do to be able to run this APD (in production I want to run it on a monthly basis). To me it seems the APD fills 2 gig of mem, I thought the APD option to not store the complete dataset in internal memory (using temp tables instead) would kick in before the 2 gigs was used. Basis team didn't want to raise mem paramenters if it could be sorted out any other way.
    Thanks,
    Johan

    I have searched on my problem before posting here ofcourse - but somehow I missed this one, mentioned in 794257:
    "InfoObject" data source
    A dump occurs because of a memory overflow in the SAPLRSDM_F4 function group in the SD_CHA_GET_VALUES function module.
    The InfoObject data source for reading master data is currently based on a function module that loads all data into the main memory in an inefficient data structure. As a result, the data source is only suitable for reading master data with a few data records. A memory overflow can occur for master data tables with lots of records such as business partners or products. This occurs regardless of how the "Process data in the memory" indicator was set.
    If this situation occurs, set the InfoObject in such a way that it is available as an InfoProvider. Then use the "InfoProvider" data source instead of the "InfoObject" data source in the analysis process.
    I'll try this...
    //Johan

  • ABAP Dump when executing DTP

    Dear gurus:
           I just faced an annoying problem when executing DTP in t-code RSA1. It appears an  ABAP dump here. The ABAP dump is briefly shown below. And I found that it seems to be an authorization problem, because when I use a new account which has SAP_ALL authorization, then it works. So it may lack of some authorizations, but it's hard to figure it out. T-code su53 cannot check it properly. Need your help and thanks a lot.
    Runtime Errors         MESSAGE_TYPE_X
    Date and Time          2007.06.20 11:17:30
    Short text
         The current application triggered a termination with a short dump.
    What happened?
         The current application program detected a situation which really
         should not occur. Therefore, a termination with a short dump was
         triggered on purpose by the key word MESSAGE (type X).
    Error analysis
         Short text of error message:
         Invalid program status
         Long text of error message:
         Technical information about the message:
         Message class....... "RSBK"
         Number.............. 299
         Variable 1.......... " "
         Variable 2.......... " "
         Variable 3.......... " "
         Variable 4.......... " "

    Hai Wei,
    This dump is due missing of OCX files while installing SAP GUI Front end just find out the exact files and copy and paste them in the Front end files files then ur prob will be solved.......
    If in case any issues let me know.
    Regards
    Madhavi

  • ABAP dump coming at the time of displaying error message.

    Hi to all
    I have written a code in user exit .
    At the time of saving ABAP dump is coming instead of showing error message.
    Error analysis
        The program attempted to issue a " " message during "Exit Command" processing.
    This is an illegal operation. The program was terminated.
    Screen name.............. "SAPMV45A"
    Screen number............ 4008
    My coding :
    >>>>>     IF vbak-vkbur IS NOT INITIAL.
       70       IF wa-vkbur NE vbak-vkbur.
       71         MESSAGE E000(yi01) WITH 'SALES OFFICE Mismatch Please Check for Customer-'vbak-kunnr
       72       ENDIF.
       73     ENDIF.
    Please guide to resolve the issue.
    This application is working fine for sales order creation.
    Regards
    Anubhav

    Hi
    Instead of error message, try using the following code.
    MESSAGE <your message> TYPE 'I' DISPLAY LIKE 'E'.
    Thanks
    Sourav

  • ABAP Dump when executing tcode CATS_APPR_LITE for multiple selection.

    Dear Members,
    Issue:
    When executing tcode CATS_APPR_LITE for Time Approval from the remote R/3 by selecting multiple selections and click on Approve, if you get a dump saying CALL_FUNCTION_REMOTE_ERROR
    Analysis:
    If there is an SAP Note applied in 1368487 and at CALL FUNCTION CATS_CHECK _PTEXDIR FM getting the dump because in source system for this function module Remote Enabled Module option is not checked.
    To resolve this correction note 1430042 has to be applied.
    Regards
    Durga

    Dear Members,
    Issue:
    When executing tcode CATS_APPR_LITE for Time Approval from the remote R/3 by selecting multiple selections and click on Approve, if you get a dump saying CALL_FUNCTION_REMOTE_ERROR
    Analysis:
    If there is an SAP Note applied in 1368487 and at CALL FUNCTION CATS_CHECK _PTEXDIR FM getting the dump because in source system for this function module Remote Enabled Module option is not checked.
    To resolve this correction note 1430042 has to be applied.
    Regards
    Durga

  • Not able to execute J1IFR T-code as it is going to ABAP Dump.

    Hello everybody,
    When we execute the command J1IFR, it generate the ABAP dump for challan with
    -ve Qty (Quantity of goods received).
    The details as follows
    Runtime Errors         DYNPRO_FIELD_CONVERSION
    ShrtText                                                                               
    A conversion error occurred.                                                                 
    Error analysis                                                                               
    The program flow was interrupted and could not be resumed.                                 
       Program "SAPMJ1IFN" tried to display fields on screen 1210. However, an                      
       error occurred while this data was being converted.                                                                               
    So please suggest How to solve the error?
    Thanks
    Ganesh

    This is happened due to
    -ve Qty (Quantity of goods received)

  • ABAP dump while executing transaction *PC00_M99_CIPE*

    Hi,
    Getting ABAP dump while executing transaction PC00_M99_CIPE  ,hence cannot do payroll posting .
        Information on where terminated
        Termination occurred in the ABAP program "CL_HRFPM_CD_CLOSING_HANDLER===CP" -
         in "GET_FM_POS_CHECK_DATA".
        The main program was "RPCIPE00 ".
        In the source code you have the termination point in line 13
        of the (Include) program "CL_HRFPM_CD_CLOSING_HANDLER===CM00E".
    We have recently upgraded our patch level.
    SAP_OCS(SPAM/SAINT)          SAPKD70026            SAPKD70033
    SAP_ABA                                SAPKA70012            SAPKA70018
    SAP_BASIS                              SAPKB70012           SAPKB70018
    PI_BASIS                                 SAPKIPYJ7B            SAPKIPYJ7I
    SAP_BW                                  SAPKW70012           SAPKW70020
    SAP_AP                                   SAPKNA7008           SAPKNA7015
    SAP_APPL                                SAPKH60009           SAPKH60015
    SAP_HR                                  SAPKE60028            SAPKE60039
    EA-HR                                     SAPKGPHD07          SAPKGPHD26
    Kindly guide me.
    Regards,
    Rachel

    thanks for the quick response.
    By applying  note 1137655,problem got resoved.
    FORM CHECK_CMTNT_UPDATE_CLOSED
    Delta001
    Context Block
    FORM check_cmtnt_update_closed
               USING
                  u_key_date TYPE begda
               CHANGING
                  c_flg_cmtnt_closed.
    Delete Block
      DATA ls_encumb_iv TYPE t77hrfpm_encumb.
      DATA l_gsval TYPE t77s0-gsval.
      DATA ls_fm_pos_key TYPE hrfpm_fm_doc_pos-key_pos.
      DATA lx TYPE REF TO cx_hrfpm.
      STATICS so_closing_handler TYPE REF TO cl_hrfpm_cd_closing_handler.
      CLEAR c_flg_cmtnt_closed .
    *--- old switch from note??? active?
    *--- if so: use the old logic
      cl_hr_t77s0=>read_gsval(
        EXPORTING
          grpid       = 'HRFPM'
          semid       = 'CHKAC'
        IMPORTING
          returnvalue = l_gsval ).
      TRY.
          IF NOT l_gsval IS INITIAL .
            TRY.
                c_flg_cmtnt_closed = 'X'.
    Insert Block
      DATA: ls_encumb_iv TYPE t77hrfpm_encumb.
      STATICS:
          s_gsval TYPE t77s0-gsval,
          s_gsval_read TYPE flag.
      IF s_gsval_read IS INITIAL .
        SELECT SINGLE gsval
           FROM t77s0
          INTO s_gsval
          WHERE grpid = 'HRFPM'
            AND semid = 'CHKAC' .
        s_gsval_read = 'X'.
      ENDIF.
      CLEAR c_flg_cmtnt_closed .
      TRY.
          c_flg_cmtnt_closed = 'X'.
    Delta002
    Context Block
        CATCH
            cx_hrfpm_db_operation
            cx_hrfpm_ad_customizing .
    Delete Block
            ENDTRY.
          ELSE.
    *--- using closed period functionality of PBC
            IF so_closing_handler IS INITIAL .
              CREATE OBJECT so_closing_handler.
            ENDIF.
            IF so_closing_handler->consumption_in_closed_period(
                       i_key_date = u_key_date
                       is_fm_pos_key = ls_fm_pos_key )
                 IS INITIAL.
              c_flg_cmtnt_closed = 'X'.
            ENDIF.
          ENDIF.
        CATCH cx_hrfpm INTO lx.
        lx->raise_sy_message( ).
      ENDTRY.
    ENDFORM.                    "check_cmtnt_update_closed
    Insert Block
      ENDTRY.
    ENDFORM.                    "check_cmtnt_update_closed

  • How to download run time ABAP dump in production environment

    Hello,
    I am getting run time ABAP dump in production environment. Please guide me onHow to download run time ABAP dump in production environment?
    Also, please tell me how best can analyze that dump. Like there are tools like gdb, purify etc. to analyze problems in other languages.
    Regards,
    Sameer.

    Hi,
    Go to ST22, and Double click on the error line, It will show you the detailed analysis.
    See the section How to correct the error for details on error correction and the instructions to download the log( you can download in the format you want - HTML would be a nice option).
    And there are no tools to analyze errors but ST22 has a large data regarding the location of the error, the reason and the source code which caused. So you need to use the debugger to reproduce the error and check the source code,
    Regards
    Karthik D

  • Regarding ABAP dump during time ticket confirmation.

    Hi PP Gurus,
    I'm getting an ABAP dump while doing time ticket confirmation for a process order using COR6N. The dump is coming only for one plant and all the plants are working fine.
    The reason for dump is
    The current application program detected a situation which really should not occur. Therefore, a termination with a short dump was triggered on purpose by the key word MESSAGE (type X).
    I tried to analyze the dump and got OSS# 385830. But this note only talking about the conversion of message from A to X type. What should be the reason (configuration/product error) behind that?
    If anybody came across the same, please comment on this
    Thanks & Regards,
    Abu Arbab

    Hi,
    Since this dump is happening only for a particular plant, compare the config set of this plant with the other plant which is working fine, you should be able to resolve it.
    Alternatively, ask your abaper to analyze the dump in ST22 & he / she should be able to let you know the exact reason why the dump is occurring.
    Regards,
    Vivek

  • RDDGENOL job getting cancelled with huge number of ABAP dumps

    Hi,
    In our Production system, we had applied Kernel upto patch level 263 and while
    applying SPAM 30 for release 640 it failed. We tried applying Basis patch 15 still
    it did not went through.
    Since then we are getting around 1500-2500 dumps daily. The job RDDGENOLis getting cancelled and the dumps RAISE_EXCEPTION and SYNTAX_ERROR is displayed in ST22. Today, there were around 2500 dumps in the system.
    When I now run the Database <-> ABAP Dictionary consistency check in
    DB02, I see number of errors for missing objects in the database. There
    are around of dozens of Primary Indexes, secondary Indexes, Tables,
    Views listed in the result:
    Objects Missing in database No.
    =========================== ===
    Primary indexes 6
    Secondary indexes 14
    Tables 37
    Views 26
    When I try to create each of them using SE16 or using SQL utility on OS
    level, it gives an SQL system error. We are also getting thousands of
    dumps each day (attached alongwith this message). Also I see the CPF327E error
    in the OS Level Joblog.
    Also we cannot transport any requests. There is some problem with or
    due to the conversions. Is it a problem with Kernel, ABAP dictionary or
    database.
    Following is the extract of the dumps due to DDIC in 000:
    ============================================================
    Runtime Error          SYNTAX_ERROR
    Date and Time         
    ShrtText
    Syntax error in program "CL_WB_CROSSREFERENCE==========CP ".
    What happened?
    Error in ABAP application program.
    The current ABAP program "SAPLSEWB" had to be terminated because one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    In program "CL_WB_CROSSREFERENCE==========CP ", the following syntax error
    occurred
    in the Include "CL_WB_CROSSREFERENCE==========CM00D " in line 8:
    |    "The type "KEYWORD_TAB" is unknown." 
    ============================================================
    ============================================================
    Runtime Error          RAISE_EXCEPTION
    Date and Time         
    ShrtText
    Exception condition "DESTINATION_NOT_OPEN" raised.
    What happened?
    The current ABAP/4 program encountered an unexpected
    situation.
    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 administer
    termination messages, especially those beyond their normal deletion
    date.
    is especially useful if you want to keep a particular message.
    Error analysis
    A RAISE statement in the program "SAPLCRFC" raised the exception
    condition "DESTINATION_NOT_OPEN".
    Since the exception was not intercepted by a superior program
    in the hierarchy, processing was terminated.
    Short description of exception condition:
    Specified destination is not open.
    For detailed documentation of the exception condition, use
    Transaction SE37 (Function Library). You can take the called
    function module from the display of active calls.
    How to correct the error
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "RAISE_EXCEPTION" C
    "SAPLCRFC" or "LCRFCU20"
    "RFC_CONNECTION_CLOSE"
    or
    "SAPLCRFC" "DESTINATION_NOT_OPEN"
    or
    "RADBAT01 " "DESTINATION_NOT_OPEN"
    If you cannot solve the problem yourself and you wish to send
    an error message to SAP, include the following documents:
    1. A printout of the problem description (short dump)
    To obtain this, select in the current display "System->List->
    Save->Local File (unconverted)".
    2. A suitable printout of the system log
    To obtain this, call the system log through transaction SM21.
    Limit the time interval to 10 minutes before and 5 minutes
    after the short dump. In the display, then select the function
    "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
    supply the source code.
    To do this, select the Editor function "Further Utilities->
    Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    System environment
    SAP Release.............. "640"
    Application server....... "TXTPDSAP"
    Network address.......... "172.16.0.140"
    Operating system......... "OS400"
    Release.................. "5.3"
    Hardware type............ "0065000655EC"
    Character length......... 8 Bits
    Pointer length........... 64 Bits
    Work process number...... 35
    Short dump setting....... "full"
    Database server.......... "TXTPDSAP"
    Database type............ "DB400"
    Database name............ "TXT"
    Database owner........... "R3TXTDATA"
    Character set............ "en_US.ISO8859-1"
    SAP kernel............... "640"
    Created on............... "Dec 11 2008 23:06:45"
    Created in............... "AIX 1 5 00538A4A4C00 (IBM iSeries with OS400)"
    Database version......... "DB4_52"
    Patch level.............. "263"
    Patch text............... " "
    Supported environment....
    Database................. "V5R2, V5R3, V5R4, V6R1"
    SAP database version..... "640"
    Operating system......... "OS400 2 5, OS400 3 5, OS400 4 5, OS400 1 6"
    Memory usage.............
    Roll..................... 696832
    EM....................... 16759712
    Heap..................... 0
    Page..................... 32768
    MM Used.................. 1383120
    MM Free.................. 3483600
    SAP Release.............. "640"
    User and Transaction
    Client.............. 000
    User................ "DDIC"
    Language key........ "E"
    Transaction......... " "
    Program............. "SAPLCRFC"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where terminated
    The termination occurred in the ABAP program "SAPLCRFC" in
    "RFC_CONNECTION_CLOSE".
    The main program was "RADBAT01 ".
    The termination occurred in line 22 of the source code of the (Include)
    program "LCRFCU20"
    of the source code of program "LCRFCU20" (when calling the editor 220).
    The program "SAPLCRFC" was started as a background job.
    Job name........ "RDDGEN0L"
    Job initiator... "DDIC"
    |    Job number...... 00032101    
    ============================================================
    Kindly let me know the immediate fix. Thanks!
    Regards,
    Nick

    Hi Nick,
    I would say, you are having a slight missperception of this forum ... it should not replace your basis ressources in your company.
    What you are doing is pretty complex (and the mixtrure of SPAM Update AND Basis SP seems to be wrong to me) and therefore, it will not be possible, to help you, just based on such a short dump.
    Sorry,
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.net - http://www.4soi.de - http://www.easymarketplace.de

  • Abap Dump Syntax_Error

    Hi , Gurus,
    I am configuring the EWA, i have configured finally when i try to schdule the service data processing, it's scheduling in background,
    in SM37 if i see that job status, job is cancelling and generating the abap dump, please help me
    here the dump of SYNTAX _ERROR
    RDSVASAEW_DBMSS____________060
    Runtime Errors         SYNTAX_ERROR
    Date and Time          22.11.2008 15:52:13
    Short text
         Syntax error in program "RDSVASAEW_DBMSS____________060 ".
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPLDSVAS_PROC" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
         The following syntax error occurred in program "RDSVASAEW_DBMSS____________060
          " in include "RDSVASAEW_DBMSS____________060 " in
         line 47:
         "INCLUDE report "/1CAGTF/IF_LOGFUNC_000208" not found."
         The include has been created and last changed by:
         Created by: "SAP "
         Last changed by: "SAP "
    please help me how to get the reports
    Cheers

    Hi Gopal,
    This is a well known issue.
    Follow the instructions of
    [SAP Note  727998 "Complete Replacement of Service Definitions for SDCC/SDCCN"|http://service.sap.com/sap/support/notes/727998 ]
    Best regards,
    Ruediger

  • ABAP Dumps while loading data form one DSO to another DSO

    Hi All,
    We are getting following ABAP dump while loading data from one DSO to another DSO.
    Please find below ABAP Dump we are getting.
    Please let us know how we can resolve this issue.
    Category          ABAP Programming Error
    Runtime Errors          MESSAGE_TYPE_X
    ABAP Program          CL_RSBK_CMD_DP_LOOP===========CP
    Application Component          BW-WHM-DST
    Date and Time          30.05.2014    07:10:03
    Short text
      The current application triggered a termination with a short dump.
    What happened?
      The current application program detected a situation which really
      should not occur. Therefore, a termination with a short dump was
      triggered on purpose by the key word MESSAGE (type X).
    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
      Short text of error message:
      Invalid program status
      Long text of error message:
      Technical information about the message:
      Message class....... "RSBK"
      Number.............. 299
      Variable 1.......... " "
      Variable 2.......... " "
      Variable 3.......... " "
      Variable 4.......... " "
    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:
      "MESSAGE_TYPE_X" " "
      "CL_RSBK_CMD_DP_LOOP===========CP" or "CL_RSBK_CMD_DP_LOOP===========CM00Q"
      "GET_LOG"
      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.
    System environment
      SAP Release..... 731
      SAP Basis Level. 0004
      Application server... "cab-bi-prod1"
      Network address...... "10.10.72.43"
      Operating system..... "Windows NT"
      Release.............. "6.1"
      Hardware type........ "4x AMD64 Level"
      Character length.... 16 Bits
      Pointer length....... 64 Bits
      Work process number.. 12
      Shortdump setting.... "full"
      Database server... "nguksvamds039"
      Database type..... "ORACLE"
      Database name..... "PWB"
      Database user ID.. "SAPSR3"
      Terminal.......... " "
      Char.set.... "C"
      SAP kernel....... 720
      created (date)... "Dec 20 2011 02:14:54"
      create on........ "NT 6.0 6002 S x86 MS VC++ 16.00"
      Database version. "OCI_11201_SHARE, 11.2.0.3.0 "
      Patch level. 117
      Patch text.. " "
      Database............. "ORACLE 10.1.0.*.*, ORACLE 10.2.0.*.*, ORACLE 11.2.*.*.*"
      SAP database version. 720
      Operating system..... "Windows NT 5.1, Windows NT 5.2, Windows NT 6.0, Windows
       NT 6.1"
      Memory consumption
      Roll.... 0
      EM...... 12569376
      Heap.... 0
      Page.... 24576
      MM Used. 3422928
      MM Free. 764192
    User and Transaction
      Client.............. 100
      User................ "THARDEEP"
      Language key........ "E"
      Transaction......... " "
      Transaction ID...... "03C1E7E3F560F14CA2AD00505698028E"
      EPP Whole Context ID.... "53873353A7E31150E10080000A0A2142"
      EPP Connection ID....... 00000000000000000000000000000000
      EPP Caller Counter...... 0
      Program............. "CL_RSBK_CMD_DP_LOOP===========CP"
      Screen.............. "SAPMSSY0 1000"
      Screen Line......... 6
      Debugger Active..... "none"
    Information on where terminated
      Termination occurred in the ABAP program "CL_RSBK_CMD_DP_LOOP===========CP" -
       in "GET_LOG".
      The main program was "RSBATCH_EXECUTE_PROZESS ".
      In the source code you have the termination point in line 7
      of the (Include) program "CL_RSBK_CMD_DP_LOOP===========CM00Q".
      The program "CL_RSBK_CMD_DP_LOOP===========CP" was started as a background job.
      Job Name....... "BIDTPR_10616_1"
      Job Initiator.. "THARDEEP"
      Job Number..... 07100200
    Source Code Extract
    Line  SourceCde
         1  METHOD get_log.
         2    DATA: l_r_request TYPE REF TO cl_rsbk_request.
         3    IF p_r_log IS INITIAL.
         4      TRY.
         5          l_r_request = cl_rsbk_request=>create_from_db( if_rsbk_cmd~n_requid ).
         6        CATCH cx_rs_not_found.
    >>>>>          MESSAGE x299(rsbk).
         8      ENDTRY.
         9      IF l_r_request->get_uses_new_log( ) = rs_c_false.
        10        p_r_log = cl_rsbm_log_cursor_process=>create_for_process( i_r_process ).
        11      ELSE.
        12
        13        TRY.
        14            DATA l_runid TYPE rsbrun.
        15            l_runid = l_r_request->get_runid( ).
        16            IF l_runid = 0.
        17              l_runid = 1.
        18            ENDIF.
        19            p_r_log = cl_rsbm_log_cursor_process_dtp=>create_new(
        20                i_requid               = if_rsbk_cmd~n_requid
        21                i_runid                = l_runid    ).
        22            IF n_datapakid IS NOT INITIAL.
        23              p_r_log->goto_datapackage( n_datapakid ).
        24            ENDIF.
        25          CATCH cx_rs_not_found .
        26            MESSAGE x299.
    Contents of system fields
    Name    Val.
    SY-SUBRC    0
    SY-INDEX    1
    SY-TABIX    0
    SY-DBCNT    1
    SY-FDPOS    25
    SY-LSIND    0
    SY-PAGNO    0
    SY-LINNO    1
    SY-COLNO    1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE    Execute Batch Process
    SY-MSGTY    X
    SY-MSGID    RSBK
    SY-MSGNO    299
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO    0
    SY-DATUM    20140530
    SY-UZEIT    071002
    SY-XPROG    SAPCNVE
    SY-XFORM    CONVERSION_EXIT
    Active Calls/Events
    No.  Ty.      Program            Include       Line
       Name
         7  METHOD      CL_RSBK_CMD_DP_LOOP===========CP            CL_RSBK_CMD_DP_LOOP===========CM00Q           7
       CL_RSBK_CMD_DP_LOOP=>GET_LOG
         6  METHOD      CL_RSBK_CMD_DP_LOOP===========CP            CL_RSBK_CMD_DP_LOOP===========CM00J          38
       CL_RSBK_CMD_DP_LOOP=>SET_DP_IN_PROCESS
         5  METHOD      CL_RSBK_CMD_DP_LOOP===========CP            CL_RSBK_CMD_DP_LOOP===========CM00B           9
       CL_RSBK_CMD_DP_LOOP=>IF_RSBK_CMD~SET_PROCESS_PARAMETERS
         4  METHOD      CL_RSBK_PROCESS===============CP            CL_RSBK_PROCESS===============CM00E          15
       CL_RSBK_PROCESS=>SET_MEMENTO
         3  METHOD      CL_RSBK_PROCESS===============CP            CL_RSBK_PROCESS===============CM003          30
       CL_RSBK_PROCESS=>IF_RSBATCH_EXECUTE~GET_OBJECT_REF
         2  FUNCTION      SAPLRSBATCH            LRSBATCHU13         428
       RSBATCH_EXECUTE_PROCESS
         1  EVENT      RSBATCH_EXECUTE_PROZESS            RSBATCH_EXECUTE_PROZESS         374
       START-OF-SELECTION
    Chosen variables
    Name
      Val.
    No.      7    Ty.     METHOD
    Name  CL_RSBK_CMD_DP_LOOP=>GET_LOG
    I_R_PROCESS
      {O:1*\CLASS=CL_RSBK_PROCESS}
      F0000000
      E0001000
      FE00000001000000
    SCREEN
      %_17NNS0005639652_%_%_%_%_%_%_
      2533445333333333352525252525252222222222222222222222222222222222222222222222222222222222222222
      5F17EE30005639652F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      25005F00310037004E004E00530030003000300035003600330039003600350032005F0025005F0025005F0025005F
    SPACE
      2
      0
      0
      0
      2000
    SY-REPID
      CL_RSBK_CMD_DP_LOOP===========CP
      4455544544454554445333333333334522222222
      3CF232BF3D4F40FCFF0DDDDDDDDDDD3000000000
      0000000000000000000000000000000000000000
      0000000000000000000000000000000000000000
      43004C005F005200530042004B005F0043004D0044005F00440050005F004C004F004F0050003D003D003D003D003D
    ME->IF_RSBK_CMD~N_REQUID
      0
      0000
      0000
      00000000
    L_R_REQUEST
      {O:initial}
      F0000000
      F0000000
      FF00000000000000
    %_DUMMY$$
      2222
      0000
      0000
      0000
      2000200020002000
    SY-XPROG
      SAPCNVE
      5454454222222222222222222222222222222222
      3103E65000000000000000000000000000000000
      0000000000000000000000000000000000000000
      0000000000000000000000000000000000000000
      53004100500043004E0056004500200020002000200020002000200020002000200020002000200020002000200020
    RSJOBINFO
                                      00000000000000                                  ##
      2222222222222222222222222222222233333333333333222222222222222222222222222222222200
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000
      2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
    %_ARCHIVE
      2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
    SY-MSGID
      RSBK
      55442222222222222222
      232B0000000000000000
      00000000000000000000
      00000000000000000000
      5200530042004B002000200020002000200020002000200020002000200020002000200020002000
    SY-MSGNO
      299
      333
      299
      000
      000
      320039003900
    SY-MSGV1
      22222222222222222222222222222222222222222222222222
      00000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000
      2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
    SY-MSGV2
      22222222222222222222222222222222222222222222222222
      00000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000
      2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
    SY-MSGV3
      22222222222222222222222222222222222222222222222222
      00000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000
      2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
    SY-MSGV4
      22222222222222222222222222222222222222222222222222
      00000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000
      2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
    %_##TVREG_001
      2
      0
      0
      0
      2000
    RS_C_FALSE
      2
      0
      0
      0
      2000
    No.      6    Ty.     METHOD
    Name  CL_RSBK_CMD_DP_LOOP=>SET_DP_IN_PROCESS
    I_R_PROCESS
      {O:1*\CLASS=CL_RSBK_PROCESS}
      F0000000
      E0001000
      FE00000001000000
    I_DATAPAKID
      000236
      333333
      000236
      000000
      000000
      300030003000320033003600
    L_TH_RANGE_X
      Table[initial]
    L_S_RANGE_X
      2222222222222222222222222222220022222222222222222222222222222222222222222222222222222222222222
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
    L_TH_RANGE
      Table[initial]
    L_S_RANGE
      2222222222222222222222222222220022222222222222222222222222222222222222222222222222222222222222
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
    RSBC_C_DPSTATE-ACTIVE
      5
      3
      5
      0
      0
      3500
    L_R_ROOT
      {O:1091*\CLASS=CX_RS_FAILED}
      B0004000
      C0003400
      BC00000043040000
    ME
      {O:72*\CLASS=CL_RSBK_CMD_DP_LOOP}
      B0004000
      70008000
      B700000048000000
    ME->P_R_LOG
      {O:initial}
      F0000000
      F0000000
      FF00000000000000
    No.      5    Ty.     METHOD
    Name  CL_RSBK_CMD_DP_LOOP=>IF_RSBK_CMD~SET_PROCESS_PARAMETERS
    I_MEMENTO
      ÿ#######4103##############D#####################D#A#T#A#P#A#K#I#D#¼####0#0#0#2#3#6#½#
      F00000803333000000000000004000000000000000000000404050405040404040B0000303030303030B0
      F621120041030000160000C0004900000000000000000000401040100010B09040C000C000000203060D4
      FF0602010102800034313033000000000106000000000C000000440900000000000000000000000000000000000000
    I_R_PROCESS
      {O:1*\CLASS=CL_RSBK_PROCESS}
      F0000000
      E0001000
      FE00000001000000
    SY-XFORM
      CONVERSION_EXIT
      444545544454545222222222222222
      3FE65239FEF5894000000000000000
      000000000000000000000000000000
      000000000000000000000000000000
      43004F004E00560045005200530049004F004E005F0045005800490054002000200020002000200020002000200020
    SY-SUBRC
      0
      0000
      0000
      00000000
    ME->N_DATAPAKID
      000236
      333333
      000236
      000000
      000000
      300030003000320033003600
    ME
      {O:72*\CLASS=CL_RSBK_CMD_DP_LOOP}
      B0004000
      70008000
      B700000048000000
    No.      4    Ty.     METHOD
    Name  CL_RSBK_PROCESS=>SET_MEMENTO
    I_TH_CMD_MEMENTO
      Table IT_42[5x52]
      \CLASS=CL_RSBK_PROCESS\METHOD=IF_RSBATCH_EXECUTE~GET_OBJECT_REF\DATA=L_S_PROCESS-TH_CMD_MEMENT
      Table reference: 21
      TABH+  0(20) = 10C64700DF070000000000000000000000000000
      TABH+ 20(20) = 150000002A000000050000003400000020000000
      TABH+ 40(16) = 045A0000A006000005000000A425C000
      store        = 0x10C64700DF070000
      ext1         = 0x0000000000000000
      shmId        = 0     (0x00000000)
      id           = 21    (0x15000000)
      label        = 42    (0x2A000000)
      fill         = 5     (0x05000000)
      leng         = 52    (0x34000000)
      loop         = 32    (0x20000000)
      xtyp         = TYPE#000010
      occu         = 5     (0x05000000)
      accKind      = 4     (ItAccessHashed)
      idxKind      = 0     (ItIndexNone)
      uniKind      = 1     (ItUniYes)
      keyKind      = 3     (user defined)
      cmpMode      = 2     (cmpSingleMcmpR)
      occu0        = 1
      stMode       = 0
      groupCntl    = 0
      rfc          = 0
      unShareable  = 0
      mightBeShared = 0
      sharedWithShmTab = 0
      isShmLockId  = 0
      isUsed       = 1
      isCtfyAble   = 1
      hasScndKeys  = 0
      hasRowId     = 0
      scndKeysOutdated = 0
      scndUniKeysOutdated = 0
      ----- Shareable Table Header Data -----
      tabi         = 0x607B4100DF070000
      pgHook       = 0x0000000000000000
      idxPtr       = 0xC08D5000DF070000
      id           = 36    (0x24000000)
      shmTabhSet   = 0x0000000000000000
      refCount     = 0     (0x00000000)
      tstRefCount  = 0     (0x00000000)
      lineAdmin    = 5     (0x05000000)
      lineAlloc    = 5     (0x05000000)
      shmVersId    = 0     (0x00000000)
      shmRefCount  = 1     (0x01000000)
      rowId        = 18446744073709551615
      scndKeyAdmin = 0x0000000000000000
      ##LOOP_DP             ###쀀
      00444554522222222222221000
      30CFF0F4000000000000004020
      0000000000000000000000000C
      00000000000000000000000000
      030000004C004F004F0050005F00440050002000200020002000200020002000200020002000200020002000140000
      ##X_DATASTORE         ###쀀
      00554454554542222222221000
      408F414134F250000000004030
      0000000000000000000000000C
      00000000000000000000000000
      0400000058005F004400410054004100530054004F0052004500200020002000200020002000200020002000140000
      ##ERROR_FILTER        ###쀀
      FF455455444545222222221000
      FF522F2F69C452000000004040
      FF00000000000000000000000C
      FF000000000000000000000000
      FFFFFFFF4500520052004F0052005F00460049004C0054004500520020002000200020002000200020002000140000
      ##TRFN                ###쀀
      FF554422222222222222221000
      EF426E00000000000000004040
      FF00000000000000000000000C
      FF000000000000000000000000
      FEFFFFFF5400520046004E002000200020002000200020002000200020002000200020002000200020002000140000
      ##U_ODSO              ###쀀
      00554454222222222222221000
      605FF43F000000000000004040
      0000000000000000000000000C
      00000000000000000000000000
      0600000055005F004F00440053004F0020002000200020002000200020002000200020002000200020002000140000
    %_DUMMY$$
      2222
      0000
      0000
      0000
      2000200020002000
    SYST
      ##########################A###P#######|#########<#############################T#########XC####
      0000000000000000000000100040005000000070000000003000000000000000000000000000105000100000540000
      10000010000010000000109010101000000000C000000000C000000000000000000000000000604000E00000830500
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000C
      0100000000000000000000000100000000000000000000000100000000000000000000000000000001000000190000
    SYST-REPID
      CL_RSBK_PROCESS===============CP
      4455544555444553333333333333334522222222
      3CF232BF02F3533DDDDDDDDDDDDDDD3000000000
      0000000000000000000000000000000000000000
      0000000000000000000000000000000000000000
      43004C005F005200530042004B005F00500052004F0043004500530053003D003D003D003D003D003D003D003D003D
    L_R_ERROR
      {O:initial}
      F0000000
      F0000000
      FF00000000000000
    L_S_CMD_MEMENTO
      ##LOOP_DP             ###쀀
      00444554522222222222221000
      30CFF0F4000000000000004020
      0000000000000000000000000C
      00000000000000000000000000
      030000004C004F004F0050005F00440050002000200020002000200020002000200020002000200020002000140000
    ME->P_TH_CMD_R
      Table IT_724[8x48]
      {O:1*\CLASS=CL_RSBK_PROCESS}\DATA=P_TH_CMD_R
      Table reference: 353
      TABH+  0(20) = 00306E00DF070000000000000000000000000000
      TABH+ 20(20) = 61010000D40200000800000030000000FFFFFFFF
      TABH+ 40(16) = 04E100005042030009000000BC25C800
      store        = 0x00306E00DF070000
      ext1         = 0x0000000000000000
      shmId        = 0     (0x00000000)
      id           = 353   (0x61010000)
      label        = 724   (0xD4020000)
      fill         = 8     (0x08000000)
      leng         = 48    (0x30000000)
      loop         = -1    (0xFFFFFFFF)
      xtyp         = TYPE#000037
      occu         = 9     (0x09000000)
      accKind      = 4     (ItAccessHashed)
      idxKind      = 3     (ItIndexList)
      uniKind      = 1     (ItUniYes)
      keyKind      = 3     (user defined)
      cmpMode      = 2     (cmpSingleMcmpR)
      occu0        = 1
      stMode       = 0
      groupCntl    = 0
      rfc          = 0
      unShareable  = 0
      mightBeShared = 1
      sharedWithShmTab = 0
      isShmLockId  = 0
      isUsed       = 1
      isCtfyAble   = 1
      hasScndKeys  = 0
      hasRowId     = 0
      scndKeysOutdated = 0
      scndUniKeysOutdated = 0
      ----- Shareable Table Header Data -----
      tabi         = 0x302E6E00DF070000
      pgHook       = 0x0000000000000000
      idxPtr       = 0x80306E00DF070000
      id           = 647   (0x87020000)
      shmTabhSet   = 0x0000000000000000
      refCount     = 1     (0x01000000)
      tstRefCount  = 0     (0x00000000)
      lineAdmin    = 9     (0x09000000)
      lineAlloc    = 9     (0x09000000)
      shmVersId    = 0     (0x00000000)
      shmRefCount  = 2     (0x02000000)
      rowId        = 18446744073709551615
      scndKeyAdmin = 0x0000000000000000
      ########P         Í#2# #
      000000005222222222C03020
      103000000000000000D02000
      000000000000000000000000
      000000000000000000000000
      010000000300000000000000000000005000200020002000200020002000200020002000CD00000032000000200000
      ########P         ·#H# #
      000000005222222222B04020
      300040100000000000708000
      000000000000000000000000
      000000000000000000000000
      030000000000000004000000010000005000200020002000200020002000200020002000B700000048000000200000
      ########X         ¶#I# #
      00FF00005222222222B04020
      40FF70108000000000609000
      00FF00000000000000000000
      00FF00000000000000000000
      04000000FFFFFFFF07000000010000005800200020002000200020002000200020002000B600000049000000200000
      ########T         °#O# #
      FF00FF005222222222B04020
      FF00EF40400000000000F000
      FF00FF000000000000000000
      FF00FF000000000000000000
      FFFFFFFF00000000FEFFFFFF040000005400200020002000200020002000200020002000B00000004F000000200000
      ########T         ®#Q# #
      FF0000005222222222A05020
      EF0060404000000000E01000
      FF0000000000000000000000
      FF0000000000000000000000
      FEFFFFFF0000000006000000040000005400200020002000200020002000200020002000AE00000051000000200000
    L_S_CMD_R
      ########P         ·#H# #
      000000005222222222B04020
      300040100000000000708000
      000000000000000000000000
      000000000000000000000000
      030000000000000004000000010000005000200020002000200020002000200020002000B700000048000000200000
    SY-REPID
      CL_RSBK_PROCESS===============CP
      4455544555444553333333333333334522222222
      3CF232BF02F3533DDDDDDDDDDDDDDD3000000000
      0000000000000000000000000000000000000000
      0000000000000000000000000000000000000000
      43004C005F005200530042004B005F00500052004F0043004500530053003D003D003D003D003D003D003D003D003D
    CX_RS_STEP_FAILED=>FAILED_IN_PARALLEL_MODE
    L_S_CMD_MEMENTO-NODE
      3
      0000
      3000
      03000000
    SY-SUBRC
      0
      0000
      0000
      00000000
    L_S_CMD_MEMENTO-MEMENTO
      ÿ#######4103##############D#####################D#A#T#A#P#A#K#I#D#¼####0#0#0#2#3#6#½#
      F00000803333000000000000004000000000000000000000404050405040404040B0000303030303030B0
      F621120041030000160000C0004900000000000000000000401040100010B09040C000C000000203060D4
      FF0602010102800034313033000000000106000000000C000000440900000000000000000000000000000000000000
    ME
      {O:1*\CLASS=CL_RSBK_PROCESS}
      F0000000
      E0001000
      FE00000001000000
    No.      3    Ty.     METHOD
    Name  CL_RSBK_PROCESS=>IF_RSBATCH_EXECUTE~GET_OBJECT_REF
    I_PROCESS_TYPE
      DTP_LOAD
      4555444422
      440FCF1400
      0000000000
      0000000000
      4400540050005F004C004F004100440020002000
    I_BATCH_ID
      DTPR_10616_1
      455553333353222222222222222222
      4402F10616F1000000000000000000
      000000000000000000000000000000
      000000000000000000000000000000
      44005400500052005F00310030003600310036005F0031002000200020002000200020002000200020002000200020
    I_BATCH_PROCESS
            238
      2222223332
      0000002380
      0000000000
      0000000000
      2000200020002000200020003200330038002000
    I_PARAMETER
      ۿĂȁ#ㄴ㌰##༅##(Ѐޱ##########PROCESSྫ##ꨨ##Ѐڪ##ꨌ##Ѐ###ꨄ##Ѐª##ꨂ##Ȁྭ##ꨴ##Ѐª##ꨨ###ྮ##갴##⠀¼#砠)   ㈀㌀㘀##ÿ#
      F008330000020B00000000005544455A002000A000000A000000A000000A003000A002100A003000B0220000000FF0
      F2104000500801000000000002F3533B008800A00C800A004800A002000D004800A008400E004F00C0090000000FF0
      0000330000000000000000000000000000A000000A000000A000000A000000A000000A000000A0020070333333FF00
      61201300F0004700000000000000000F00A004600A004800A004000A002F00A004000A008F00C0080080000236FF00
      FF060201010280003431303300000000050F0000000028000004B10700000000000000000000000000000000000000
    R_R_RSBATCH_EXECUTE
      {O:initial}
      F0000000
      F0000000
      FF00000000000000
    L_S_PROCESS-PROCESSTYPE
      2
      0
      0
      0
      2000
    L_S_PROCESS-NO_COMMIT
      2
      0
      0
      0
      2000
    L_R_PROCESS
      {O:1*\CLASS=CL_RSBK_PROCESS}
      F0000000
      E0001000
      FE00000001000000
    L_S_PROCESS-DATAPAKID
      000236
      333333
      000236
      000000
      000000
      300030003000320033003600
    RSJOBINFO
                                      00000000000000                                  ##
      2222222222222222222222222222222233333333333333222222222222222222222222222222222200
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000
      2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
    L_S_PROCESS-NODE
      -1
      FFFF
      FFFF
      FFFFFFFF
    L_S_PROCESS-TH_CMD_MEMENTO
      Table IT_42[5x52]
    No.      2    Ty.     FUNCTION
    Name  RSBATCH_EXECUTE_PROCESS
    ID
      DTPR_10616_1
      455553333353222222222222222222
      4402F10616F1000000000000000000
      000000000000000000000000000000
      000000000000000000000000000000
      44005400500052005F00310030003600310036005F0031002000200020002000200020002000200020002000200020
    I_DIALOG_DEBUG_MODE
      2
      0
      0
      0
      2000
    PROCESS
      238
      E000
      E000
      EE000000
    G_T_COLS[]
      Table[initial]
    SY-REPID
      SAPLRSBATCH
      5454554454422222222222222222222222222222
      310C232143800000000000000000000000000000
      0000000000000000000000000000000000000000
      0000000000000000000000000000000000000000
      5300410050004C00520053004200410054004300480020002000200020002000200020002000200020002000200020
    L_MODULE_TYPE
      M
      4
      D
      0
      0
      4D00
    G_PROCESS_TYPE
      2222222222
      0000000000
      0000000000
      0000000000
      2000200020002000200020002000200020002000
    %_FL2*CTRL_200_WAIT
      <initial>
      <initial>
      <initial>
      <<iinniittiiaall>>
    ICON_SELECT_DETAIL
      @16@
      4334
      0160
      0000
      0000
      4000310036004000
    L_S_CTRL-LANGU
      E
      4
      5
      0
      0
      4500
    SY-LANGU
      E
      4
      5
      0
      0
      4500
    SYST-REPID
      SAPLRSBATCH
      5454554454422222222222222222222222222222
      310C232143800000000000000000000000000000
      0000000000000000000000000000000000000000
      0000000000000000000000000000000000000000
      5300410050004C00520053004200410054004300480020002000200020002000200020002000200020002000200020
    SYST
      ##########################A###P#######|#########<#############################T#########XC####
      0000000000000000000000100040005000000070000000003000000000000000000000000000105000100000540000
      10000010000010000000109010101000000000C000000000C000000000000000000000000000604000E00000830500
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000C
      0100000000000000000000000100000000000000000000000100000000000000000000000000000001000000190000
    %_FL2*CTRL_1100
      <initial>
      <initial>
      <initial>
      <<iinniittiiaall>>
    %_DUMMY$$
      2222
      0000
      0000
      0000
      2000200020002000
    L_MODULE_NAME
      CL_RSBK_PROCESS
      4455544555444552222222222222222222222222
      3CF232BF02F35330000000000000000000000000
      0000000000000000000000000000000000000000
      0000000000000000000000000000000000000000
      43004C005F005200530042004B005F00500052004F0043004500530053002000200020002000200020002000200020
    %_SPACE
      2
      0
      0
      0
      2000
    G_T_BATCH_SERV
                                                                                       00
      22222222222222222222222222222222222222222222222222222222222222222222222222222222233
      00000000000000000000000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000000000000000000000000000000
      00000000000000000000000000000000000000000000000000000000000000000000000000000000000
      2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
    L_S_CTRL-PROCESS_TYPE
      DTP_LOAD
      4555444422
      440FCF1400
      0000000000
      0000000000
      4400540050005F004C004F004100440020002000
    G_SUBRC
      0
      0000
      0000
      00000000
    L_S_CTRL-BATCH_ID
      DTPR_10616_1
      455553333353222222222222222222
      4402F10616F1000000000000000000
      000000000000000000000000000000
      000000000000000000000000000000
      44005400500052005F00310030003600310036005F0031002000200020002000200020002000200020002000200020
    OKCODE
      2222222222222222222222222222222222222222222222222222222222222222222222
      0000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000
      2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
    L_S_CTRL-BATCH_PROCESS
            238
      2222223332
      0000002380
      0000000000
      0000000000
      2000200020002000200020003200330038002000
    SAVEOK
      2222222222222222222222222222222222222222222222222222222222222222222222
      0000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000
      2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
    L_PARAMETER
      ۿĂȁ#ㄴ㌰##༅##(Ѐޱ##########PROCESSྫ##ꨨ##Ѐڪ##ꨌ##Ѐ###ꨄ##Ѐª##ꨂ##Ȁྭ##ꨴ##Ѐª##ꨨ###ྮ##갴##⠀¼#砠)   ㈀㌀㘀##ÿ#
      F008330000020B00000000005544455A002000A000000A000000A000000A003000A002100A003000B0220000000FF0
      F2104000500801000000000002F3533B008800A00C800A004800A002000D004800A008400E004F00C0090000000FF0
      0000330000000000000000000000000000A000000A000000A000000A000000A000000A000000A0020070333333FF00
      61201300F0004700000000000000000F00A004600A004800A004000A002F00A004000A008F00C0080080000236FF00
      FF060201010280003431303300000000050F0000000028000004B10700000000000000000000000000000000000000
    L_R_BATCH_EXECUTE
      {O:initial}
      F0000000
      F0000000
      FF00000000000000
    L_RETURN
      <empty string>
      10000000
      40001000
      1400000001000000
    L_T_MSG
      Table[initial]
    %_TAG*CTRL_200_VAL
      <initial>
      <initial>
      <initial>
      <<iinniittiiaall>>
    G_CURSOR_LINE
      0
      0000
      0000
      00000000
    SY-SUBRC
      0
      0000
      0000
      00000000
    No.      1    Ty.     EVENT
    Name  START-OF-SELECTION
    L_T_CTRL
      Table IT_26[1x424]
      \PROGRAM=RSBATCH_EXECUTE_PROZESS\DATA=L_T_CTRL
      Table reference: 15
      TABH+  0(20) = D08B4C00DF070000000000000000000000000000
      TABH+ 20(20) = 0F0000001A00000001000000A8010000FFFFFFFF
      TABH+ 40(16) = 040000005090000004000000C130C000
      store        = 0xD08B4C00DF070000
      ext1         = 0x0000000000000000
      shmId        = 0     (0x00000000)
      id           = 15    (0x0F000000)
      label        = 26    (0x1A000000)
      fill         = 1     (0x01000000)
      leng         = 424   (0xA8010000)
      loop         = -1    (0xFFFFFFFF)
      xtyp         = TYPE#000013
      occu         = 4     (0x04000000)
      accKind      = 1     (ItAccessStandard)
      idxKind      = 0     (ItIndexNone)
      uniKind      = 2     (ItUniNo)
      keyKind      = 1     (default)
      cmpMode      = 8     (cmpManyEq)
      occu0        = 1
      stMode       = 0
      groupCntl    = 0
      rfc          = 0
      unShareable  = 0
      mightBeShared = 0
      sharedWithShmTab = 0
      isShmLockId  = 0
      isUsed       = 1
      isCtfyAble   = 1
      hasScndKeys  = 0
      hasRowId     = 0
      scndKeysOutdated = 0
      scndUniKeysOutdated = 0
      ----- Shareable Table Header Data -----
      tabi         = 0x10854C00DF070000
      pgHook       = 0x508C4C00DF070000
      idxPtr       = 0x0000000000000000
      id           = 21    (0x15000000)
      shmTabhSet   = 0x0000000000000000
      refCount     = 0     (0x00000000)
      tstRefCount  = 0     (0x00000000)
      lineAdmin    = 508   (0xFC010000)
      lineAlloc    = 12    (0x0C000000)
      shmVersId    = 0     (0x00000000)
      shmRefCount  = 1     (0x01000000)
      rowId        = 18446744073709551615
      scndKeyAdmin = 0x0000000000000000
      DTPR_10616_1                        238
      4555533333532222222222222222222222223332222222222222222222222222222222222222222222222222222222
      4402F10616F10000000000000000000000002380000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      44005400500052005F00310030003600310036005F0031002000200020002000200020002000200020002000200020
    SYST
      ##########################A###P#######|#########<#############################T#########XC####
      0000000000000000000000100040005000000070000000003000000000000000000000000000105000100000540000
      10000010000010000000109010101000000000C000000000C000000000000000000000000000604000E00000830500
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000C
      0100000000000000000000000100000000000000000000000100000000000000000000000000000001000000190000
    L_S_CTRL
      DTPR_10616_1                        238  BIDTPR_10616_1                  07100200cab-bi-prod1_
      4555533333532222222222222222222222223332244455553333353222222222222222222333333336662662776635
      4402F10616F100000000000000000000000023800294402F10616F100000000000000000007100200312D29D02F41F
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      44005400500052005F00310030003600310036005F0031002000200020002000200020002000200020002000200020
    SCREEN
      %_17NNS0005639652_%_%_%_%_%_%_
      2533445333333333352525252525252222222222222222222222222222222222222222222222222222222222222222
      5F17EE30005639652F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      25005F00310037004E004E00530030003000300035003600330039003600350032005F0025005F0025005F0025005F
    L_S_CTRL-BATCH_PROCESS
            238
      2222223332
      0000002380
      0000000000
      0000000000
      2000200020002000200020003200330038002000
    %_SPACE
      2
      0
      0
      0
      2000
    L_S_PAR-WP_NO
      12
      332
      120
      000
      000
      310032002000
    ID
      DTPR_10616_1
      455553333353222222222222222222
      4402F10616F1000000000000000000
      000000000000000000000000000000
      000000000000000000000000000000
      44005400500052005F00310030003600310036005F0031002000200020002000200020002000200020002000200020
    L_PROCESS
      238
      E000
      E000
      EE000000
    L_S_HEADER-HOLD_PAR_PROCS
      X
      5
      8
      0
      0
      5800
    SY
      ##########################A###P#######|#########<#############################T#########XC####
      0000000000000000000000100040005000000070000000003000000000000000000000000000105000100000540000
      10000010000010000000109010101000000000C000000000C000000000000000000000000000604000E00000830500
      0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
      000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000C
      0100000000000000000000000100000000000000000000000100000000000000000000000000000001000000190000
    PROCESS
      999999999
      FC93
      F9AB
      FFC99A3B
    Internal notes
      The termination was triggered in function "ab_jmess"
      of the SAP kernel, in line 1411 of the module
       "//bas/720_REL/src/krn/runt/abdynpro.c#7".
      The internal operation just processed is "MESS".
      Internal mode was started at 20140530071002.
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Callstack without Exception:
    App       : disp+work.EXE (pid=1724)
    When      : 5/30/2014 7:9:54.12
    Threads   : 2
    Computer Name       : NGUKSVRMDS040
    User Name           : pwbadm
    Number of Processors: 4
    Processor Type: Intel64 Family 6 Model 37 Stepping 1
    Windows Version     : 6.1 Current Build: 7601
    State Dump for Thread Id 1374
    0000000002178EF0 0000000140F6F2A1 0020002000200020 disp+work!DumpStacks [ntstcdbg.c (548)]
    0000000002178FF0 000000013FB0E304 0000000074D126B0 disp+work!NTDebugProcess [ntstcdbg.c (383)]
    0000000002179020 000000013FD1C439 0000000074D126B0 disp+work!CTrcStack2 [dptstack.c (354)]
    0000000002179070 000000013FD21A7F 0000000002179AD0 disp+work!rabax_CStackSave [abrabax.c (8649)]
    0000000002179980 000000013FCD37FC 000000000000005C disp+work!ab_rabax [abrabax.c (1419)]
    00000000021799C0 000000013FD0BBE1 0000000000000000 disp+work!ab_jmess [abdynpro.c (1418)]
    0000000002179B50 000000013FD7E5D8 0000000000000001 disp+work!ab_extri [abextri.c (721)]
    0000000002179BA0 000000013FD7EEC5 0000000000000001 disp+work!ab_xevent [abrunt1.c (278)]
    0000000002179C30 000000013FD5C589 000007DF000002A0 disp+work!ab_trigg [abrunt1.c (57)]
    0000000002179CC0 000000013FB77126 0000000000000016 disp+work!ab_run [absubmit.c (511)]
    0000000002179E70 000000013FB7BA2D 0000000000000000 disp+work!dynpmcal [dymainstp.c (2732)]
    0000000002179F00 000000013FB7ACDC 000000000217A0E0 disp+work!dynppai0 [dymainstp.c (1355)]
    0000000002179FD0 000000013FB34EEF 0000000000000020 disp+work!dynprctl [dymainstp.c (470)]
    000000000217F3C0 000000013F9C3CC0 0000000000000000 disp+work!dynpen00 [dymain.c (2026)]
    000000000217F690 000000013F9C44BC FFFFFFFFFFFFFF00 disp+work!TskhLoop [thxxhead.c (4871)]
    000000000217F6F0 000000013F8EC603 00000000000D9E9C disp+work!ThStart [thxxhead.c (1195)]
    000000000217F790 000000013F8C10A1 FFFFFFFF00000001 disp+work!DpMain [dpxxdisp.c (1174)]
    000000000217F7C0 0000000141246B8E 0000000000000001 disp+work!nlsui_main [thxxanf.c (80)]
    000000000217F7F0 000000007799652D 0000000000000000 disp+work!__tmainCRTStartup [crtexe.c (552)]
    000000000217F820 0000000077ACC541 0000000000000000 kernel32!BaseThreadInitThunk
    000000000217F870 0000000000000000 0000000000000000 ntdll!RtlUserThreadStart
    State Dump for Thread Id 290
    000000000E0BF880 000007FEFDAB3C2F 00000000DBAAC265 ntdll!NtFsControlFile
    000000000E0BF8F0 0000000141139FAF FFFFFFFFFFFFFFFE KERNELBASE!ConnectNamedPipe
    000000000E0BF990 0000000074C81D9F 00000000024BC0D0 disp+work!SigIMsgFunc [signt.c (717)]
    000000000E0BF9C0 0000000074C81E3B 0000000074D12AC0 MSVCR100!endthreadex
    000000000E0BF9F0 000000007799652D 0000000000000000 MSVCR100!endthreadex
    000000000E0BFA20 0000000077ACC541 0000000000000000 kernel32!BaseThreadInitThunk
    000000000E0BFA70 0000000000000000 0000000000000000 ntdll!RtlUserThreadStart
    List of ABAP programs affected
    Index   Typ  Program              Group  Date  Time Size Lang.
          0   Prg  RSBATCH_EXECUTE_PROZESS                   0  13.08.2013  12:28:38     45056 E
          1   Prg  SAPMSSY0                   1  13.08.2013  09:12:51    111616 E
          2   Prg  SAPMSSYD                   1  13.08.2013  10:17:05     23552 E
          3   Prg  SAPFSYSCALLS                   1  07.03.2005  18:01:13      8192 E
          4   Prg  RSDBRUNT                   0  13.08.2013  10:51:31    306176 E
          5   Prg  SAPLSPRI                   5  13.08.2013  10:49:40    407552 E
          6   Typ  PRI_PARAMS                   0  27.10.1998  15:01:35      5120
          7   Typ  ARC_PARAMS                   0  08.08.1997  14:45:20      5120
          8   Typ  PRI_LAYOUT                   0  04.09.2002  14:38:36      3072
          9   Typ  PRIPAR_EXT                   0  09.09.2011  20:56:18      3072
         10   Typ  PRIPAR_EX2                   0  09.09.2011  20:54:51      2048
         11   Typ  PRIPAR_EX3                   0  09.09.2011  20:54:52      3072
         12   Typ  TPRI_DEF                   0  01.02.2001  17:50:49      5120
         13   Prg  SAPLSPOO                  13  13.08.2013  10:14:36    181248 E
         14   Typ  TSP03                   0  13.08.1998  16:56:08      5120
         15   Typ  USR01                   0  09.09.2011  20:55:50      4096
         16   Typ  TSP1D                   0  09.09.2011  20:57:01      5120
         17   Prg  SAPLRSPOLSTDRV                  17  28.05.2009  08:18:25     64512 E
         18   Typ  TSPOPTIONS                   0  06.12.1996  16:09:18      2048
         19   Prg  SAPCNVE                  19  07.03.2005  18:01:13      9216 E
         20   Prg  SAPLSPOC                  20  09.09.2011  21:19:41    177152 E
         21   Typ  RSPOCHECK                   0  14.07.1997  13:01:20      4096
         22   Typ  DEVPAR                   0  09.09.2011  20:54:15      3072
         23   Typ  RSPOATTR                   0  19.01.2000  18:34:33      2048
         24   Typ  RSSCR                   0  23.11.1999  09:24:41      5120
         25   Prg  RSDBSPBL                   0  07.03.2005  18:01:13     84992 E
         26   Prg  SAPDB__S                   0  07.03.2005  18:01:13     21504 E
         27   Typ  VARID                   0  28.05.2009  08:12:55      5120
         28   Typ  SSCRFIELDS                   0  02.05.1997  13:16:39      5120
         29   Prg  RSDBSPVA                   0  13.08.2013  10:51:31    160768 E
         30   Prg  %_CSYDB0                   0  07.03.2005  18:01:13     40960 E
         31   Typ  RSVAMEMKEY                   0  16.12.1996  19:31:50      2048
         32   Prg  RSDBSPMC                   0  05.09.2006  14:14:08     92160 E
         33   Typ  DDSHDESCR                   0  28.11.1997  16:26:30      4096
         34   Typ  SPPARAMS                   0  07.03.1997  14:48:48      2048
         35   Prg  SAPLICON                  35  13.12.2007  11:37:48     31744 E
         36   Prg  %_CICON                  35  13.12.2007  11:37:48    126976 E
         37   Typ  ICONT                   0  05.09.2006  14:14:08      2048
         38   Prg  SAPLSABE                  38  09.09.2011  21:09:40     14336 E
         39   Prg  SAPLSECU                  39  13.08.2013  10:16:43    110592 E
         40   Typ  RSSUBINFO                   0  22.11.1999  21:15:17      3072
         41   Prg  RSDBSPVD                   0  09.09.2011  21:33:31    102400 E
         42   Typ  DFIES                   0  09.09.2011  20:54:19     10240
         43   Typ  VARI                   0  16.12.1996  19:38:11      6144
         44   Typ  RSDSFIELDS                   0  28.05.2009  08:12:29      3072
         45   Prg  %_CRSDS                   0  07.03.2005  18:01:13     11264 E
         46   Typ  RSDSEXPR                   0  16.12.1996  19:31:30      3072
         47   Typ  RVARI                   0  18.06.1999  11:23:08      4096
         48   Prg  SAPLSVAR                  48  13.08.2013  10:49:34    936960 E
         49   Typ  RSVARKEY                   0  16.12.1996  19:31:51      2048
         50   Prg  SAPLSSEL                  50  13.08.2013  10:42:32   1699840 E
         51   Prg  RSDBSPDS                   0  13.12.2007  11:37:48     66560 E
         52   Typ  RSEXFCODE                   0  18.07.1997  17:04:17      2048
         53   Prg  SAPLDSYA                  53  13.08.2013  10:45:29     52224 E
         54   Prg  SAPFSDS1                  53  07.03.2005  18:01:13     61440 E
         55   Typ  TDCLD                   0  14.07.1998  14:53:43      5120
         56   Prg  SAPLSDOD                  56  13.08.2013  10:42:31     50176 E
         57   Typ  DOKIL                   0  07.04.1997  18:29:04      3072
         58   Prg  SAPLLANG                  58  09.09.2011  21:12:32     11264 E
         59   Typ  T002                   0  25.09.2007  11:09:36      2048
         60   Prg  SAPFSPOR                   0  24.06.2008  18:36:49     16384 E
         61   Typ  RSPARINT                   0  10.03.1995  17:53:00      2048
         62   Prg  SAPLSCNT                  62  07.03.2005  18:01:13     34816 E
         63   Prg  SAPSHDTV                  62  13.08.2013  08:38:56     38912 E
         64   Prg  SAPFGUICNTL                   1  07.03.2005  18:01:13     27648 E
         65   Prg  SAPLOLEA                  65  13.08.2013  08:38:34    110592 E
         66   Prg  SAPLSGUI                  66  04.12.2009  20:43:32    105472 E
         67   Prg  SAPLSTTM                  67  09.09.2011  21:26:18     79872 E
         68   Prg  SAPLSBDC                  68  13.12.2007  10:50:07     49152 E
         69   Prg  SAPLSFES                  69  13.08.2013  10:47:09    316416 E
         70   Prg  SAPLTHFB                  70  13.08.2013  10:21:30    472064 E
         71   Typ  WPINFO                   0  28.05.2009  08:12:57      6144
         72   Prg  SAPLURFC                  72  13.08.2013  10:49:32     29696 E
         73   Prg  SAPLSPLUGIN                  73  09.09.2011  21:19:29      9216 E
         74   Typ  SWCBCONT                   0  09.09.2011  20:56:57      3072
         75   Typ  OLE_VERBS                   0  09.02.1995  13:23:37      2048
         76   Typ  OLE_PA                   0  13.01.1995  11:06:59      2048
         77   Typ  SSCRTEXTS                   0  15.08.1997  14:15:15      3072
         78   Prg  SAPLRSBATCH                  78  13.08.2013  12:29:38    689152 E
         79   Prg  /1BCDWBEN/SAPLREN0002                  79  23.11.2005  13:29:42    294912 E
         80   Prg  SAPLSENA                  80  28.05.2009  08:20:47     39936 E
         81   Prg  SAPLBTCH                  81  13.08.2013  10:51:12   2248704 E
         82   Prg  SAPLRS_GENERAL                  82  13.08.2013  12:20:02    120832 E
         83   Prg  /1BCDWBEN/SAPLREN0003                  83  23.11.2005  13:29:44    282624 E
         84   Prg  SAPLSYDB                  84  09.09.2011  21:28:17     65536 E
         85   Typ  MSXXLIST_V6                   0  28.05.2009  08:12:22      4096
         86   Typ  BAL_S_MSG                   0  09.09.2011  20:53:51      7168
         87   Prg  CL_RSBK_PROCESS===============CP                  87  10.09.2011  08:11:36    103424 E
         88   Prg  IF_RSBATCH_CALLBACK===========IP                  78  09.09.2011  22:39:45      9216 E
         89   Prg  IF_RSBATCH_EXECUTE============IP                  78  09.09.2011  22:39:45      8192 E
         90   Typ  RSBK_S_PROCESS                   0  09.09.2011  20:56:47      4096
         91   Typ  RSBK_S_CMD_MEMENTO                   0  09.09.2011  20:54:56      2048
         92   Prg  CL_RSBK_REQUEST===============CP                  92  13.08.2013  11:53:19    222208 E
         93   Prg  CL_RSBK_REQUEST_GENERAL=======CP                  93  10.09.2011  08:12:31     38912 E
         94   Prg  SAPLRRSI                  94  13.08.2013  12:29:38    393216 E
         95   Typ  RSD_S_COB_PRO                   0  09.09.2011  20:56:49     26624
         96   Prg  CL_RSR========================CP                  96  13.08.2013  12:06:59    180224 E
         97   Prg  CL_RS_BASE====================CP                  97  13.08.2013  12:27:37     15360 E
         98   Prg  CL_RSD_CHA====================CP                  98  13.08.2013  11:55:18    563200 E
         99   Prg  CL_RSD_IOBJ_VERS==============CP                  99  13.08.2013  12:03:26    301056 E
        100   Prg  SAPLRRMS                 100  13.08.2013  12:29:38     49152 E
        101   Prg  SAPLRRI1                 101  13.08.2013  12:29:38    496640 E
        102   Typ  RSR_S_DEBUGFLAGS                   0  13.08.2013  12:01:28     14336
        103   Prg  CL_RSDDTREX_CORE==============CP                 103  13.08.2013  12:29:38     49152 E
        104   Prg  SAPLRSDI                 104  09.09.2011  22:19:14     43008 E
        105   Prg  SAPLRSDG_IOBJ_DB_READ                 105  13.08.2013  12:29:38    355328 E
        106   Typ  RSD_S_AGGRINFO                   0  09.09.2011  20:55:04      2048
        107   Typ  RSD_S_VIOBJ                   0  09.09.2011  20:55:07     30720
        108   Prg  SAPLRSDN_IOBJ                 108  13.08.2013  12:29:38    163840 E
        109   Prg  CL_RSROA_VQ_SERVICES==========CP                 109  13.08.2013  12:29:37     86016 E
        110   Prg  CL_ABAP_ELEMDESCR=============CP                 110  28.05.2009  08:29:24     41984 E
        111   Prg  CL_ABAP_DATADESCR=============CP                 111  28.05.2009  08:29:18     21504 E
        112   Prg  CL_ABAP_TYPEDESCR=============CP                 112  13.08.2013  10:48:27     33792 E
        113   Prg  CL_ABAP_REFDESCR==============CP                 113  13.08.2013  10:48:27     34816 E
        114   Prg  CL_ABAP_STRUCTDESCR===========CP                 114  13.08.2013  10:48:27     49152 E
        115   Prg  CL_ABAP_COMPLEXDESCR==========CP                 115  28.05.2009  08:29:17     19456 E
        116   Prg  CL_ABAP_TABLEDESCR============CP                 116  09.09.2011  21:11:02     37888 E
        117   Prg  CL_ABAP_CLASSDESCR============CP                 117  28.05.2009  08:29:15     34816 E
        118   Prg  CL_ABAP_OBJECTDESCR===========CP                 118  28.05.2009  08:29:28     37888 E
        119   Prg  CL_ABAP_INTFDESCR=============CP                 119  28.05.2009  08:29:25     27648 E
        120   Prg  CL_ABAP_SOFT_REFERENCE========CP                 120  18.11.2005  14:35:28     10240 E
        121   Prg  CL_ABAP_REFERENCE=============CP                 121  07.03.2005  18:01:13      8192 E
        122   Prg  CL_RSRTS_METADATA=============CP                 122  13.08.2013  12:28:25    106496 E
        123   Prg  CL_RSRTS_METADATA_R3IS========CP                 123  13.08.2013  11:55:22    157696 E
        124   Prg  IF_RSRTS_METADATA=============IP                 117  13.08.2013  11:55:54     26624 E
        125   Prg  %_CABAP                 117  28.05.2009  08:14:56     36864 E
        126   Prg  IF_SERIALIZABLE_OBJECT========IP                 117  07.03.2005  18:01:13      5120 E
        127   Prg  CL_RSROA_VQ_METADATA==========CP                 127  13.08.2013  11:55:22    252928 E
        128   Prg  CL_RSL_ME_METADATA============CP                 128  13.08.2013  12:28:21    233472 E
        129   Prg  IF_RSDRV_TREX_NAME_MAPPER=====IP                 117  13.08.2013  12:29:31      8192 E
        130   Prg  CL_RSDDLTIP_IPROV_TABLE=======CP                 130  13.08.2013  11:55:15    147456 E
        131   Prg  CL_RSAN_PR_ANPR_PROV_TRANSIENTCP                 131  13.08.2013  11:55:06    117760 E
        132   Prg  CL_RSD_DTA====================CP                 132  13.08.2013  12:03:25    320512 E
        133   Typ  LVC_S_ROID                   0  19.01.2000  18:31:34      2048
        134   Typ  RSZCOMPKEY                   0  09.09.2011  20:55:16      3072
        135   Prg  IF_RSO_TLOGO_MAINTAIN=========IP                 117  09.09.2011  22:36:34     13312 E
        136   Prg  IF_RSD_DTA====================IP                 117  09.09.2011  22:35:40     30720 E
        137   Prg  CL_RSRTS_METADATA_ODP=========CP                 137  13.08.2013  12:03:31    396288 E
        138   Prg  IF_RSRTS_TRPR=================IP                 117  13.08.2013  12:10:34     10240 E
        139   Prg  CL_RSR_QPROV_METADATA=========CP                 139  13.08.2013  11:55:23    248832 E
        140   Typ  RSD_S_DTA_PRO                   0  09.09.2011  20:55:08     26624
        141   Typ  RSD_S_IOBJ_OBN                   0  09.09.2011  20:56:49      2048
        142   Prg  CX_RSD_IOBJ_NOT_FOUND=========CP                 142  09.09.2011  22:36:07     16384 E
        143   Prg  CX_RSD_IOBJ_EXCEPTION=========CP                 143  09.09.2011  22:36:07     14336 E
        144   Prg  CX_RS_STATIC_CHECK============CP                 144  09.09.2011  22:37:44     19456 E
        145   Prg  CX_RS_ERROR===================CP                 145  09.09.2011  22:37:36     13312 E
        146   Prg  CX_STATIC_CHECK===============CP                 146  18.11.2005  14:35:29     11264 E
        147   Prg  CX_ROOT=======================CP                 147  09.09.2011  21:51:41     13312 E
        148   Prg  CX_NO_CHECK===================CP                 148  18.11.2005  14:35:29     11264 E
        149   Typ  RSAROUT                   0  09.09.2011  20:49:50      4096
        150   Typ  RSAROUTT                   0  09.09.2011  20:50:52      2048
        151   Typ  RSDVDPA                   0  09.09.2011  20:56:49      9216
        152   Typ  RSDIOBJV                   0  09.09.2011  20:54:57      5120
        153   Typ  RSDKYF                   0  09.09.2011  20:46:44      5120
        154   Typ  RSDVTIM                   0  09.09.2011  20:56:49     12288
        155   Typ  RSDVUNI                   0  09.09.2011  20:56:49      9216
        156   Typ  RSDVCHA                   0  09.09.2011  20:55:09     14336
        157   Prg  CL_RSDRC_NCUM_GEN_TYPES=======CP                 157  13.08.2013  12:28:48      9216 E
        158   Prg  CL_RSD_IOBJ_UTILITIES=========CP                 158  09.09.2011  22:25:11     57344 E
        159   Prg  SAPLRSDN                 159  13.08.2013  12:29:38     86016 E
        160   Prg  SAPLRSVERS                 160  13.08.2013  12:29:38    371712 E
        161   Typ  RSNPAR                   0  09.09.2011  20:55:07      3072
        162   Prg  SAPLSTR4                 162  13.08.2013  10:42:32     74752 E
        163   Prg  %_CTRNSP                 162  07.03.2005  18:01:13     10240 E
        164

    Hi Hardeep,
    Looks like the transformation and DTP need to be activated again.
    The error is RSBK (299) - 'Invalid program status'. So please activate the transformation and DTP possibly activate the DSO's too.
    It should then work.
    Thanks
    Amit

  • Abap dump

    Hi,
    We are getting the following error in the  PRD system .
    Runtime Errors         COMPUTE_BCD_OVERFLOW
    Exception              CX_SY_ARITHMETIC_OVERFLOW
    Short text
         Overflow during the arithmetical operation (type P) in program
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "AQFKSD01========SD_STOCKS-01==" had to be termi
          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_ARITHMETIC_OVERFLOW', wa
          caught and
         therefore caused a runtime error.
    The reason for the exception is:
    An overflow was discovered in an ongoing arithmetical operation with
    operands of type P. Possible causes are:
    1. The result field of type P is too small for the result.
    2. The result or a intermediate result has more than 31 decimal places.
    i have tried searching in notes and etc but still not helpful.
    Did anyone solve the problem.
    Thanks in advance

    This seems to be a query, right (transaction SQ00/SQ01)
    The computation fields are too small, the values don´t fit into the types you defined.
    Markus

  • ABAP dump "GETWA_NOT_ASSIGNED" C

    HI,
    kindly suggest we are getting a abap dump while downloading a file and when i check the error in service market place its shows that we have to apply  support packages.can i directly apply support packages by downloading the market or i have to raise a query fro exact support packages to market place.
    my version-mssql2005-ecc5-640version.
    kindly see the below abap dump.
    Runtime Error          GETWA_NOT_ASSIGNED                                                          
    Date and Time          21.10.2008 11:25:01                                                         
    ShrtText                                                                               
    Field symbol has not yet been assigned.                                                       
    What happened?                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "SAPLKKBL" had to be terminated because one of the                   
        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 administer                      
         termination messages, especially those beyond their normal deletion                          
        date.                                                                               
    is especially useful if you want to keep a particular message.                                
    Error analysis                                                                               
    You attempted to access an unassigned field symbol                                            
        (data segment 169).                                                                               
    This error may occur for any of the following reasons:                                        
        - You address a typed field symbol before it is set using ASSIGN                              
        - You address a field symbol that points to a line in an internal table                       
          that has been deleted                                                                       
        - You address a field symbol that had previously been reset using                             
          UNASSIGN, or that pointed to a local field that no longer exists                            
        - You address a global function interface parameter, even                                     
          though the relevant function module is not active,                                          
          that is it is not in the list of active calls. You can get the list                         
          of active calls from the this short dump.                                                                               
    How to correct the error                                                                               
    You may able to find an interim solution to the problem                                       
        in the SAP note system. If you have access to the note system yourself,                       
        use the following search criteria:                                                                               
    "GETWA_NOT_ASSIGNED" C                                                                        
        "SAPLKKBL" or "LKKBLF99"                                                                      
        "GEN_FIELD_OUT2"                                                                               
    If you cannot solve the problem yourself and you wish to send                                 
        an error message to SAP, include the following documents:                                                                               
    1. A printout of the problem description (short dump)                                         
           To obtain this, select in the current display "System->List->                              
           Save->Local File (unconverted)".                                                                               
    2. A suitable printout of the system log                                                      
           To obtain this, call the system log through transaction SM21.                              
           Limit the time interval to 10 minutes before and 5 minutes                                 
           after the short dump. In the display, then select the function                             
           "System->List->Save->Local File (unconverted)".                                                                               
    3. If the programs are your own programs or modified SAP programs,                            
           supply the source code.                                                                    
           To do this, select the Editor function "Further Utilities->                                
           Upload/Download->Download".                                                                               
    4. Details regarding the conditions under which the error occurred                            
           or which actions and input led to the error.                                               
    System environment                                                                               
    SAP Release.............. "640"                                                                               
    Application server....... "TERHSAPTST01"                                                      
        Network address.......... "10.129.48.15"                                                      
        Operating system......... "Windows NT"                                                        
        Release.................. "5.2"                                                               
        Hardware type............ "4x Intel 801586"                                                   
        Character length......... 16 Bits                                                             
        Pointer length........... 32 Bits                                                             
        Work process number...... 0                                                                   
        Short dump setting....... "full"                                                                               
    Database server.......... "TERHSAPTST01"                                                      
        Database type............ "MSSQL"                                                             
        Database name............ "INQ"                                                               
        Database owner........... "inq"                                                                               
    Character set............ "C"                                                                               
    SAP kernel............... "640"                                                               
        Created on............... "Mar 21 2007 23:46:50"                                              
        Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"                      
        Database version......... "SQL_Server_8.00 "                                                                               
    Patch level.............. "175"                                                               
        Patch text............... " "                                                                               
    Supported environment....                                                                     
        Database................. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"                          
        SAP database version..... "640"                                                               
        Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"                                                                               
    Memory usage.............                                                                     
        Roll..................... 8176                                                                
        EM....................... 12542784                                                            
        Heap..................... 0                                                                   
        Page..................... 286720                                                              
        MM Used.................. 8264648                                                             
        MM Free.................. 95024                                                               
        SAP Release.............. "640"                                                                               
    User and Transaction                                                                               
    Client.............. 100                                                                      
        User................ "CHINNIJ"                                                                
        Language key........ "E"                                                                      
        Transaction......... "ZSDOST "                                                                
        Program............. "SAPLKKBL"                                                               
        Screen.............. "SAPLKKBL 0500"                                                          
        Screen line......... 3                                                                        
    Information on where terminated                                                                   
        The termination occurred in the ABAP program "SAPLKKBL" in "GEN_FIELD_OUT2".                  
        The main program was "ZSDSO_ORDER_STATUS ".                                                                               
    The termination occurred in line 3380 of the source code of the (Include)                     
         program "LKKBLF99"                                                                               
    of the source code of program "LKKBLF99" (when calling the editor 33800).                     
    Source Code Extract                                                                               
    Line  SourceCde                                                                               
    3350       else.                                                                               
    3351         assign <fs74> to <field>.                                                           
    3352         gs_fc = gs_sfc74.                                                                   
    3353       endif.                                                                               
    3354     when 075.                                                                               
    3355       if gs_out_flags-slave ne 'X'.                                                         
    3356         assign <fm75> to <field>.                                                           
    3357         gs_fc = gs_mfc75.                                                                   
    3358       else.                                                                               
    3359         assign <fs75> to <field>.                                                           
    3360         gs_fc = gs_sfc75.                                                                   
    3361       endif.                                                                               
    3362     when 076.                                                                               
    3363       if gs_out_flags-slave ne 'X'.                                                         
    3364         assign <fm76> to <field>.                                                           
    3365         gs_fc = gs_mfc76.                                                                   
    3366       else.                                                                               
    3367         assign <fs76> to <field>.                                                           
    3368         gs_fc = gs_sfc76.                                                                   
    3369       endif.                                                                               
    3370     when 077.                                                                               
    3371       if gs_out_flags-slave ne 'X'.                                                         
    3372         assign <fm77> to <field>.                                                           
    3373         gs_fc = gs_mfc77.                                                                   
    3374       else.                                                                               
    3375         assign <fs77> to <field>.                                                           
    3376         gs_fc = gs_sfc77.                                                                   
    3377       endif.                                                                               
    3378     when 078.                                                                               
    3379       if gs_out_flags-slave ne 'X'.                                                         
    >>>>>         assign <fm78> to <field>.                                                           
    3381         gs_fc = gs_mfc78.                                                                   
    3382       else.                                                                               
    3383         assign <fs78> to <field>.                                                           
    3384         gs_fc = gs_sfc78.                                                                   
    3385       endif.                                                                               
    3386     when 079.                                                                               
    3387       if gs_out_flags-slave ne 'X'.                                                         
    3388         assign <fm79> to <field>.                                                           
    3389         gs_fc = gs_mfc79.                                                                   
    3390       else.                                                                               
    3391         assign <fs79> to <field>.                                                           
    3392         gs_fc = gs_sfc79.                                                                   
    3393       endif.                                                                               
    3394     when 080.                                                                               
    3395       if gs_out_flags-slave ne 'X'.                                                         
    3396         assign <fm80> to <field>.                                                           
    3397         gs_fc = gs_mfc80.                                                                   
    3398       else.                                                                               
    3399         assign <fs80> to <field>.                                                           
    Contents of system fields                                                                         
    Name     Val.                                                                               
    SY-SUBRC 4                                                                               
    SY-INDEX 78                                                                               
    SY-TABIX 0                                                                               
    SY-DBCNT 0                                                                               
    SY-FDPOS 0                                                                               
    SY-LSIND 0                                                                               
    SY-PAGNO 1                                                                               
    SY-LINNO 7                                                                               
    SY-COLNO 1002                                                                               
    SY-PFKEY STANDARD                                                                               
    SY-UCOMM %PC                                                                               
    SY-TITLE Order Data ware house                                                                    
    SY-MSGTY                                                                               
    SY-MSGID                                                                               
    SY-MSGNO 000                                                                               
    SY-MSGV1                                                                               
    SY-MSGV2                                                                               
    SY-MSGV3                                                                               
    SY-MSGV4                                                                               
    Active Calls/Events                                                                               
    No.   Ty.          Program                             Include                             Line   
          Name                                                                               
    16 FORM         SAPLKKBL                            LKKBLF99                             3380  
          GEN_FIELD_OUT2                                                                               
    15 FORM         SAPLKKBL                            LKKBLF99                              777  
          GEN_LINE_OUT                                                                               
    14 FORM         SAPLKKBL                            LKKBLF98                             1314  
          DATA_OUT_SIMPLE                                                                               
    13 FORM         SAPLKKBL                            LKKBLF01                              360  
          LIST_OUTPUT_NEW                                                                               
    12 FORM         SAPLKKBL                            LKKBLF01                             6109  
          FIRST_LIST_DISPLAY                                                                          
       11 MODULE (PBO) SAPLKKBL                            LKKBLO01                               11  
          LIST_DISPLAY                                                                               
    10 FUNCTION     SAPLKKBL                            LKKBLU01                              419  
          K_KKB_LIST_DISPLAY                                                                               
    9 METHOD       CL_GUI_ALV_GRID===============CP    CL_GUI_ALV_GRID===============CM00R   455  
          CL_GUI_ALV_GRID=>PRINT_BACKEND                                                              
        8 METHOD       CL_GUI_ALV_GRID===============CP    CL_GUI_ALV_GRID===============CM008     3  
          CL_GUI_ALV_GRID=>EXPORT_TO_LOCAL_FILE                                                       
        7 METHOD       CL_GUI_ALV_GRID===============CP    CL_GUI_ALV_GRID===============CM007   481  
          CL_GUI_ALV_GRID=>EXECUTE_FCODE                                                              
        6 METHOD       CL_GUI_ALV_GRID===============CP    CL_GUI_ALV_GRID===============CM01E    58  
          CL_GUI_ALV_GRID=>SET_FUNCTION_CODE                                                          
        5 FORM         SAPLSLVC_FULLSCREEN                 LSLVC_FULLSCREENF01                  1167  
          PAI                                                                               
    4 MODULE (PAI) SAPLSLVC_FULLSCREEN                 LSLVC_FULLSCREENI01                     4  
          PAI                                                                               
    3 FUNCTION     SAPLSLVC_FULLSCREEN                 LSLVC_FULLSCREENU01                   186  
          REUSE_ALV_GRID_DISPLAY                                                                      
        2 FORM         ZSDSO_ORDER_STATUS                  ZSDSO_ORDER_STATUS                   1305  
          DATA_DISPLAY                                                                               
    1 EVENT        ZSDSO_ORDER_STATUS                  ZSDSO_ORDER_STATUS                    632  
          START-OF-SELECTION                                                                          
    Chosen variables                                                                               
    Name                                                                               
    Val.                                                                               
    No.      16 Ty.          FORM                                                                     
    Name  GEN_FIELD_OUT2                                                                               
    <FS76>                                                                               
    <FIELD>                                                                               
    222                                                                               
    000                                                                               
    000                                                                               
    000                                                                               
    GS_FC                                                                               
    ##M#MVGR5                         I_OUT                                                       
        0040454532222222222222222222222222454552222222222222222222222222222222222222222222222222222222
        10D0D672500000000000000000000000009FF540000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    GS_SFC76                                                                               
    0000222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    GFLG_FIELD                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    GS_SFC24                                                                               
    0000222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    GS_OUT-FIELD_COLCOUNT                                                                               
    78                                                                               
    4000                                                                               
    E000                                                                               
    GT_INFO_COUNTTAB_OUTTAB                                                                               
    Table[initial]                                                                               
    SY-REPID                                                                               
    SAPLKKBL                                                                               
    5454444422222222222222222222222222222222                                                      
        310CBB2C00000000000000000000000000000000                                                      
        0000000000000000000000000000000000000000                                                      
        0000000000000000000000000000000000000000                                                      
    GS_OUT_FLAGS-SLAVE                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    SPACE                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    <FM77>                                                                               
    222                                                                               
    000                                                                               
    000                                                                               
    000                                                                               
    GS_MFC77                                                                               
    ##M#MVGR5                         I_OUT                                                       
        0040454532222222222222222222222222454552222222222222222222222222222222222222222222222222222222
        10D0D672500000000000000000000000009FF540000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    <FS77>                                                                               
    GS_SFC77                                                                               
    0000222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    TC_FIELD_LIST-CX                                                                               
    <initial>                                                                               
    <initial>                                                                               
    <initial>                                                                               
    GT_INFO_FILTER_OUTTAB                                                                               
    Table[initial]                                                                               
    <FM78>                                                                               
    GS_MFC78                                                                               
    ##N#ZRELEASE                      I_OUT                                                       
        0040554444542222222222222222222222454552222222222222222222222222222222222222222222222222222222
        10E0A25C513500000000000000000000009FF540000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    <FS78>                                                                               
    GS_SFC78                                                                               
    0000222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    HEAD                                                                               
    22222222222222222222                                                                               
    00000000000000000000                                                                               
    00000000000000000000                                                                               
    00000000000000000000                                                                          
    G_INFO_POPUP                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    No.      15 Ty.          FORM                                                                     
    Name  GEN_LINE_OUT                                                                               
    GT_STACK2-S_SUBTOT_OPTIONS-OFFSET                                                                 
        0                                                                               
    0000                                                                               
    0000                                                                               
    %_DUMMY$$                                                                               
    2222                                                                               
    0000                                                                               
    0000                                                                               
    0000                                                                               
    SYST-REPID                                                                               
    SAPLKKBL                                                                               
    5454444422222222222222222222222222222222                                                      
        310CBB2C00000000000000000000000000000000                                                      
        0000000000000000000000000000000000000000                                                      
        0000000000000000000000000000000000000000                                                      
    GS_ACT_GROUP-SUBTOT                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    GS_OUT_FLAGS-SUM                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    EUINFO                                                                               
                            0000000000000000###
        2222222222222222222222222222222222222222222222200022222222222222222222222223333333333333333000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_SPACE                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    GS_OUT_FLAGS-HOTLINE                                                                               
    2                                                                               
    0                                                                               
    0                                                                               
    0                                                                               
    GS_OUT-COL                                                                               
    2                                                                               
    0000                                                                               
    2000                                                                               
    GS_OUT-INT                                                                               
    0                                                                               
    0000                                                                               
    0000                                                                               
    GS_OUT-ROWS                                                                               
    1                                                                               
    0000                                      

    Hi,
    We got a lot of short dumps with the same error when we upgraded from 46C to ECC6.
    They were all for reports that used ALV and in evry case, corrections were needed to the field catalog.
    I suggest that you double and triple check the table and field names in your field catalog. ALV is a lot more sensitive in ECC6 (or performs less checks) and it is possible that you're experiencing the same problem in ECC5.
    Hope that answers your question
    Alex Dixon

Maybe you are looking for