Depreciation Key - Runtime error

Hi everyone,
In AS02, in depreciation area, I was trying to change depreciation ket assignment. By default it is coming 0000, when I am tring to select some other dep key, it goes into runtime error.
I am getting following message. Please guide me.
Runtime Errors         ASSERTION_FAILED
What happened?
    In the running application program, the ASSERT statement recognized a
    situation that should not have occurred.
    The runtime error was triggered for one of these reasons:
    - For the checkpoint group specified with the ASSERT statement, the
      activation mode is set to "abort".
    - Via a system variant, the activation mode is globally set to "abort"
      for checkpoint groups in this system.
    - The activation mode is set to "abort" on program level.
    - The ASSERT statement is not assigned to any checkpoint group.

Hi,
what is your support package stack for software component EA-APPL?
Have you searched for notes already? You find several ones where this runtime error goes along with the new depreciation calculation functionality as of ECC 6.0.
Regards,
Markus

Similar Messages

  • Error occurs  while changing  Depreciation key

    hi,experts
    I changed  the depreciation key  to MANU  and  did some  Manual Depreciation. now  I want to change the depreciation  key back and  let it do automatic depreciation But while I was doing that via AS02, an error  occured
    *E 633 Manual depreciation not allowed with depreciation key ***.
    Can you please provide some help  if you can.
    thanks a lot.

    Hi Experts.
    I have the similar isue .
    I changed the depreciation key to MANU and did some Manual Depreciation. now I want to change the depreciation key back and let it do automatic depreciation But while I was doing that via AS02, an error occured
    *E 633 Manual depreciation not allowed with depreciation key ***.
    Can some one provide advice on this please .
    Thanks
    Ravi.

  • Query 0: Runtime error There is already a line with the same key. with para

    Dear all,
    I have a query with several variables. One of the variables is Version. When I use certain values e.g. 1,2 or 3, I can generate the query without any problem. However, when I use the other values e,g, 4, 5, or 6, the query gives me with the following error messages :
    1. Query 0: Runtime error There is already a line with the same key. with parallel processing via RFC
    2. Error while reading data; navigation is possible
    3. >> Row: 174 Inc: LRSDRPU02 Prog: SAPLRSDRP
    Error 1
    Query 0: Runtime error There is already a line with the same key. with parallel processing via RFC
    Message no. DBMAN428
    Error 2
    Error while reading data; navigation is possible
    Message no. BRAIN289
    Diagnosis
    An error occurred while reading the data. The query result is therefore empty or inconsistent and is not buffered in the OLAP cache.
    Procedure
    You can continue to navigate or return to the last navigation step.
    Error 3
    >> Row: 174 Inc: LRSDRPU02 Prog: SAPLRSDRP
    Message no. RS_EXCEPTION301
    Diagnosis
    En error has been triggered. This message specifies where in the coding the error occurred. This helps you to localize the error quickly.
    May I know what causes this error and how to troubleshoot it?
    Thank you.

    Venkat,
    You are either a genius or working for SAP.
    In any case, your solution solved my problem.
    Thanks heaps!

  • Runtime error ASSIGN_TYPE_ILLEGAL_CAST while using ASSIGN key word

    Hi All,
    I'm getting a runtime error ASSIGN_TYPE_ILLEGAL_CAST while using ASSIGN keyword in the below statement,
    ASSIGN L_XVALUE(L_LENGTH) TO <TEXTLINE> TYPE 'C'. "see 581444
    Here L_XVALUE is of type X with value 'ENVIRONMENTALLY HAZARDOUS SUBSTANCE, LIQUID, N.O.S' , L_LENGTH is of type I with value 51 and <TEXTLINE> is of type C wih one character length .
    Should I have to declare <TEXTLINE> as same as that of L_XVALUE ( type X ).
    Thanks in Advance,
    Sabu.

    Decalre <TEXTLINE> as type any.

  • Runtime error in abap report

    error analysis as in ST22 TRANSACTION:
    AN EXCEPTION OCCURED THE EXCEPTION ASSIGNED TO CLASS CX_SY_CONVERSION_NO_NUMBER WAS NOT CAUGHT WHICH LED TO AN ERROR. THE REASON FOR THIS EXCEPTION IS :
    THE PROGRAM TRIED TO INTERPRET VALUE ':4' AS NUMBER SINCE THE VALUE CONTRAVENES THE CORRECT NUMBER FORMAT THIS WAS NOT POSSIBLE.
    ATTACHED IS MY PROGRAM
    REPORT ZVXR0303
          LINE-COUNT 60(3)
          LINE-SIZE 132
           MESSAGE-ID VN.
    Tables: VBEP, VBAP, NAST.
    DATA: BEGIN OF HEADER,
          ORDER(15) VALUE  'ORDER',
           LINE(5)  VALUE  'LINE',
      MATERIAL(14)  VALUE  'MATERIAL',
           DUE(15)  VALUE  'DUE (MAD)',
       CREATED(10)  VALUE  'CREATED',
           QTY(10)  VALUE  'QUANTITY',
            KEY(5)  VALUE  'KEY',
           TYPE(5)  VALUE  'TYPE',
           END OF HEADER.
    DATA: Begin of IDAT OCCURS 0,
      VBELN         LIKE VBAP-VBELN,
      POSNR         LIKE VBAP-POSNR,
      werks         LIKE VBAP-WERKS,
      cuobj         LIKE vbap-CUOBJ,
      MBDAT         LIKE vbep-mbdat,
      ERDAT         LIKE VBAP-ERDAT,
      MATNR         LIKE VBAP-MATNR,
      KWMENG        LIKE VBAP-KWMENG,
      QTY           TYPE I,
      END of IDAT.
    class cl_abap_char_utilities definition load.
    constants: tab type c value cl_abap_char_utilities=>HORIZONTAL_TAB.
    DATA: t_record(1000) TYPE C.
    DATA: C_KWMENG(20)   TYPE C.
    data: OUTFILE(50) value '/usr/users/ftpsapfi/locks_540318'.
    DATA: BEGIN OF TKOMCON OCCURS 50.
            INCLUDE STRUCTURE CONF_OUT.
    DATA: END   OF TKOMCON.
    DATA: iKEY         TYPE I,
          offset       TYPE I,
          KeyTypeLOC   TYPE I,
          KeyNumberLOC TYPE I,
          type(15)     TYPE C.
        select-options: sVBELN FOR VBEP-VBELN obligatory,
                        sMAD FOR VBEP-MBDAT obligatory,
                        sERDAT FOR VBAP-ERDAT,
                        sMATNR FOR VBAP-MATNR,
                        sWERKS FOR VBAP-WERKS,
                        sKWMENG FOR VBAP-KWMENG.
    SELECT
      vbap~vbeln
      vbap~POSNR
      vbap~werks
      vbap~cuobj
      VBEP~MBDAT
      VBAP~ERDAT
      VBAP~MATNR
      VBAP~KWMENG
    INTO CORRESPONDING FIELDS of IDAT
    FROM ( VBEP INNER JOIN VBAP ON vbepvbeln = vbapvbeln
    AND vbepposnr = vbapposnr )
    WHERE BMENG > 0
    AND vbep~MBDAT IN sMAD
    AND VBEP~VBELN in sVBELN
    AND VBAP~werks IN sWERKS
    AND VBAP~ERDAT IN sERDAT
    AND VBAP~MATNR IN sMATNR
    AND VBAP~KWMENG IN sKWMENG
    AND VBAP~ABGRU = SPACE.
      APPEND IDAT.
    ENDSELECT.
    PERFORM TOP-OF-PAGE.
    if sy-batch = 'x'.
    OPEN DATASET OUTFILE FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    TRANSFER t_record  TO OUTFILE.
    endif.
    IF SY-SUBRC = 0.
      LOOP at IDAT.
       write IDAT-KWMENG DECIMALS 0 TO C_KWMENG.
        REFRESH TKOMCON.
        CALL FUNCTION 'VC_I_GET_CONFIGURATION'
             EXPORTING
                  INSTANCE      = idat-cuobj
                  LANGUAGE      = NAST-SPRAS
             TABLES
                  CONFIGURATION = TKOMCON
             EXCEPTIONS
                  OTHERS        = 4.
        LOOP AT TKOMCON
          WHERE ATNAM = 'S_SK_SPEC_KEY' OR ATNAM = 'S_MK_SPEC_KEY'
          OR ATNAM = 'S_SK_CONSC_KEY' OR ATNAM = 'S_MK_CONSC_KEY'.
          IF TKOMCON-ATNAM = 'S_SK_CONSC_KEY'
          OR TKOMCON-ATNAM = 'S_MK_CONSC_KEY'.
            KeyTYPELOC = 0.
            keynumberloc = 2.
            TRANSLATE TKOMCON-ATWRT+KeyNumberLOC(4) USING ': '.
            IF TKOMCON-ATWRT+KeyNumberLOC(4) CO '0123456789 '.
              iKey = TKOMCON-ATWRT+KeyNumberLOC(4).
              IF ( TKOMCON-ATWRT+KeyTypeLOC(2) = 'FR' AND iKey >= 454 )
              OR ( TKOMCON-ATWRT+KeyTypeLOC(2) = 'XF' AND iKey >= 1150 ).
                PERFORM OUT-OF-RANGE-FOUND.
              ENDIF.
            ENDIF.
          Else.
            Offset = 0.
            DO.
              IF offset <= 9.
                offset = offset + 1.
                If TKOMCON-ATWRT+Offset(1) = ':'.
                  KeyTypeLOC = Offset + 1.
                  KeyNumberLOC = Offset + 3.
                  EXIT.
                ENDIF.
              ELSE.
                EXIT.
              ENDIF.
            ENDDO.
            TRANSLATE TKOMCON-ATWRT+KeyNumberLOC(4) USING ': '.
            IF TKOMCON-ATWRT+KeyNumberLOC(4) CO '0123456789 '.
              iKey = TKOMCON-ATWRT+KeyNumberLOC(4).
              IF ( TKOMCON-ATWRT+KeyTypeLOC(2) = 'FR' AND iKey >= 454 )
              OR ( TKOMCON-ATWRT+KeyTypeLOC(2) = 'XF' AND iKey >= 1150 ).
                IDAT-KWMENG = TKOMCON-ATWRT(3).
                PERFORM OUT-OF-RANGE-FOUND.
              ENDIF.
            ENDIF.
          ENDIF.
        ENDLOOP.
      ENDLOOP.
    ENDIF.
    CLOSE DATASET OUTFILE.
          FORM OUT-OF-RANGE-FOUND                                       *
    FORM OUT-OF-RANGE-FOUND.
      WRITE: / IDAT-VBELN.
      WRITE: 10 IDAT-POSNR.
      WRITE: 20 IDAT-MATNR.
      WRITE: 35 IDAT-MBDAT.
      WRITE: 50 IDAT-ERDAT.
      WRITE: 65(3) IDAT-KWMENG DECIMALS 0.
      WRITE: 75 TKOMCON-ATWRT+KeyTypeLOC(6).
      IF TKOMCON-ATNAM = 'S_SK_CONSC_KEY'
         OR TKOMCON-ATNAM = 'S_MK_CONSC_KEY'.
        WRITE: 85 'Consecutive'.
      ELSE.
        WRITE: 85 'Specific'.
      ENDIF.
      IF TKOMCON-ATNAM = 'S_SK_CONSC_KEY'
         OR TKOMCON-ATNAM = 'S_MK_CONSC_KEY'.
        TYPE = 'Consecutive'.
      ELSE.
        TYPE = 'Specific'.
      ENDIF.
    * PREPARING A RECORD TO BE SENT TO FILE
      CONCATENATE
      IDAT-VBELN
      IDAT-POSNR
      IDAT-MATNR
      IDAT-MBDAT
      IDAT-ERDAT
      C_KWMENG
      TKOMCON-ATWRT+KeyTypeLOC(6)
      TYPE
      INTO t_record SEPARATED BY tab.
      if sy-batch = 'x'.
      TRANSFER t_record  TO OUTFILE.
      endif.
    ENDFORM.
          FORM TOP-OF-PAGE                                              *
    FORM TOP-OF-PAGE.
      WRITE: / 'ORDER'.
      WRITE: 10 'LINE'.
      WRITE: 20 'MATERIAL'.
      WRITE: 35 'DUE (MAD)'.
      WRITE: 50 'CREATED'.
      WRITE: 65 'QTY'.
      WRITE: 75 'KEY'.
      WRITE: 85 'TYPE'.
    PREPARING A RECORD TO BE SENT TO FILE
      CONCATENATE
      header-ORDER
      header-LINE
      header-MATERIAL
      header-DUE
      header-CREATED
      header-QTY
      header-KEY
      header-TYPE
      INTO t_record SEPARATED BY tab.
    ENDFORM.
    THIS IS WORKING FINE WITH DIFFERENT RANGES BUT WHEN I USE RANGE
    Sales Order 1250000 TO 2250000
    MAD 01/18/2005 TO 03/02/2005
    Material LOCK9250FR TO LOCK9250XF
    PLANT 4500
    IT GIVES THE RUNTIME ERROR I MENTIONED ABOVE
    ANY HELP WOULD BE GREATLY APPRECIATED
    THANKS.

    HI ROB YOUR REPLY LOOKS TO BE VERY CLOSE OTHER GUYS SAID IT MIGHT BE PROBLEM WITH VARIABLE C_KWMENG BUT I REMOVED THAT PIECE OF CODE WITH C_KWMENG BUT STILL I WAS GETTING THE ERROR ATTACHED IS THE COMPLETE ERROR DETAILS FROM ST22
    Runtime Errors         CONVT_NO_NUMBER              
    Exception              CX_SY_CONVERSION_NO_NUMBER
           Occurred on     09/29/2005 at 14:33:21
    Unable to interpret "04:" as a number.                                        
    What happened?
    Error in ABAP application program.                                                                               
    The current ABAP program "ZVXR0303" 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.                                                                               
    Error analysis
    An exception occurred. This exception will be dealt with in more detail                  
    below. The exception, assigned to the class 'CX_SY_CONVERSION_NO_NUMBER', was            
    not caught, which                                                                       
    led to a runtime error. The reason for this exception is:                               
    The program attempted to interpret the value "04:" as a number, but                      
    since the value contravenes the rules for correct number formats,                        
    this was not possible.                                                                               
    How to correct the error
    Integers are represented in ABAP using a sequence of digits and, in some                 
    cases, a preceding sign.                                                                
    The system offers the following options for displaying floating point                    
    numbers:                                                                               
    [mantissa]E[sign][exponent]                                                      
      [whole number part].[fractional part]                                            
    e.g. -12E+34, +12E-34, 12E34, 12.34                                                                               
    If the error occurred in one of your own programs or in an SAP program                   
    that you modified, try to correct it yourself.                                                                               
    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:                                                                               
    "CONVT_NO_NUMBER" CX_SY_CONVERSION_NO_NUMBERC                                            
    "ZVXR0303" or "ZVXR0303"                                                                 
    "START-OF-SELECTION"                                                                     
    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.                                          
    System environment
    SAP Release.............. "620"                                                                               
    Application server....... "grrsap54"                                                     
    Network address.......... "10.80.96.102"                                                 
    Operating system......... "HP-UX"                                                        
    Release.................. "B.11.11"                                                      
    Hardware type............ "9000/800"                                                     
    Character length......... 8 Bits                                                         
    Pointer length........... 64 Bits                                                        
    Work process number...... 3                                                              
    Short dump setting....... "full"                                                                               
    Database server.......... "grrsap54"                                                     
    Database type............ "ORACLE"                                                       
    Database name............ "D01"                                                          
    Database owner........... "SAPR3"                                                                               
    Character set............ "en_US.iso88591"                                                                               
    SAP kernel............... "640"                                                          
    Created on............... "Aug 28 2005 20:25:49"                                         
    Created in............... "HP-UX B.11.00 A 9000/800"                                     
    Database version......... "OCI_920 "                                                                               
    Patch level.............. "88"                                                           
    Patch text............... " "                                                                               
    Supported environment....                                                                
    Database................. "ORACLE 8.1.7.., ORACLE 9.2.0.., ORACLE                    
    10.1.0.."                                                                             
    SAP database version..... "640"                                                          
    Operating system......... "HP-UX B.11"                                                   
    User, transaction...
    Client.............. 050                                                                 
    User................ "NSHAKER"                                                           
    Language key........ "E"                                                                 
    Transaction......... "SE38 "                                                             
    Program............. "ZVXR0303"                                                          
    Screen.............. "SAPMSSY0 1000"                                                     
    Screen line......... 6                                                                   
    Information on where terminated
    The termination occurred in the ABAP program "ZVXR0303" in                               
    "START-OF-SELECTION".                                                                   
    The main program was "ZVXR0303 ".                                                                               
    The termination occurred in line 156 of the source code of the (Include)                 
    program "ZVXR0303"                                                                      
    of the source code of program "ZVXR0303" (when calling the editor 1560).                 
    Source code extract
    Caution: Program has changed            
    Caution: At time of termination,  Active source code no longer available
    001260 ?         TRANSLATE TKOMCON-ATWRT+KeyNumberLOC(4) USING ': '.            
    001270 ?         IF TKOMCON-ATWRT+KeyNumberLOC(4) CO '0123456789 '.             
    001280 ?           iKey = TKOMCON-ATWRT+KeyNumberLOC(4).                        
    001290 ?                                                                        
    001300 ?           IF ( TKOMCON-ATWRT+KeyTypeLOC(2) = 'FR' AND iKey >= 454 )    
    001310 ?           OR ( TKOMCON-ATWRT+KeyTypeLOC(2) = 'XF' AND iKey >= 1150 ).  
    001320 ?             PERFORM OUT-OF-RANGE-FOUND.                                
    001330 ?           ENDIF.                                                       
    001340 ?         ENDIF.                                                         
    001350 ?       Else.                                                            
    001360 ?         Offset = 0.                                                    
    001370 ?         DO.                                                            
    001380 ?           IF offset <= 9.                                              
    001390 ?             offset = offset + 1.                                       
    001400 ?             If TKOMCON-ATWRT+Offset(1) = ':'.                          
    001410 ?               KeyTypeLOC = Offset + 1.                                 
    001420 ?               KeyNumberLOC = Offset + 3.                               
    001430 ?               EXIT.                                                    
    001440 ?             ENDIF.                                                     
    001450 ?           ELSE.                                                        
    001460 ?             EXIT.                                                      
    001470 ?           ENDIF.                                                       
    001480 ?         ENDDO.                                                         
    001490 ?                                                                        
    001500 ?         TRANSLATE TKOMCON-ATWRT+KeyNumberLOC(4) USING ': '.            
    001510 ?                                                                        
    001520 ?         IF TKOMCON-ATWRT+KeyNumberLOC(4) CO '0123456789 '.             
    001530 ?           iKey = TKOMCON-ATWRT+KeyNumberLOC(4).                        
    001540 ?           IF ( TKOMCON-ATWRT+KeyTypeLOC(2) = 'FR' AND iKey >= 454 )    
    001550 ?           OR ( TKOMCON-ATWRT+KeyTypeLOC(2) = 'XF' AND iKey >= 1150 ).  
    ?             IDAT-KWMENG = TKOMCON-ATWRT(3).                            
    001570 ?             PERFORM OUT-OF-RANGE-FOUND.                                
    001580 ?           ENDIF.                                                       
    001590 ?         ENDIF.                                                         
    001600 ?       ENDIF.                                                           
    001610 ?     ENDLOOP.                                                           
    001620 ?   ENDLOOP.                                                             
    001630 ? ENDIF.                                                                 
    001640 ? CLOSE DATASET OUTFILE.                                                 
    001650 ?                                                                        
    001660 ? *----
    001670 ? *       FORM OUT-OF-RANGE-FOUND                                       *
    001680 ? *----
    001690 ? *       ........                                                      *
    001700 ? *----
    001710 ? FORM OUT-OF-RANGE-FOUND.                                               
    001720 ?                                                                        
    001730 ?   WRITE: / IDAT-VBELN.                                                 
    001740 ?   WRITE: 10 IDAT-POSNR.                                                
    001750 ?   WRITE: 20 IDAT-MATNR.                                                
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 0                             SY-INDEX 44                           
    SY-TABIX 7                             SY-DBCNT 1                            
    SY-FDPOS 4                             SY-LSIND 0                            
    SY-PAGNO 2                             SY-LINNO 18                           
    SY-COLNO 94                            SY-PFKEY                              
    SY-UCOMM                               SY-TITLE Out of Range Keys            
    SY-MSGTY I                             SY-MSGID SF                           
    SY-MSGNO 616                           SY-MSGV1                              
    SY-MSGV2                               SY-MSGV3                              
    SY-MSGV4                              
    Active calls / events
    No.... Type........ Name..........................
           Program                                
           Include                                  Line    
           Class                                  
         1 EVENT        START-OF-SELECTION                                          
           ZVXR0303                               
           ZVXR0303                                   156
    Chosen variables
         1 EVENT        START-OF-SELECTION                                          
           ZVXR0303                               
           ZVXR0303                                   156
    %_SPACE                                                                               
    2                                      
                                   0                                      
    SY-REPID                       ZVXR0303                               
                                   5555333322222222222222222222222222222222
                                   A682030300000000000000000000000000000000
    TKOMCON-ATWRT                  04:XF1260                              
                                   333543333222222222222222222222         
                                   04A861260000000000000000000000         
    KEYNUMBERLOC                   5                                      
                                   0000                                   
                                   0005                                   
    SYST-REPID                     ZVXR0303                               
                                   5555333322222222222222222222222222222222
                                   A682030300000000000000000000000000000000
    SY-LDBPG                       SAPDB__S                               
                                   5454455522222222222222222222222222222222
                                   31042FF300000000000000000000000000000000
    IKEY                           1260                                   
                                   000E                                   
                                   004C                                   
    KEYTYPELOC                     3                                      
                                   0000                                   
                                   0003                                   
    SY                             ###,####################################
                                   0002000000000001000000000000000000000000
                                   000C00020007000E00000001000A000000000000
    ... +  40                      ###########^###<########################
                                   0000000000050003000100080000000000000009
                                   00010004000E000C000200040000000000000000
    ... +  80                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000A00000000000000000000
    ... + 120                      #######################################_
                                   0000000000000000000000000000000000010005
                                   00000000000000000000000000000000000A000F
    ... + 160                      ############ÿÿ¹°XC#############   E2  X1
                                   000000000000FFBB540000000000000222432253
                                   0000000A0000FF90830040000C0000C000520081
    ... + 200                      000         ####__S                 050
                                   3332222222220000555222222222222222223332
                                   0000000000000000FF3000000000000000000500
    ... + 240                           00                                
                                   222223322222222                        
                                   000000000000000                        
    SVBELN                         IBT00012500000002250000                
                                   44533333333333333333333                
                                   92400012500000002250000                
    IDAT-KWMENG                    ########                               
                                   00000000                               
                                   0000000C                               
    TKOMCON-ATWRT+0(3)             04:                                    
                                   333                                    
                                   04A                                    
    SYST                           ###,####################################
                                   0002000000000001000000000000000000000000
                                   000C00020007000E00000001000A000000000000
    ... +  40                      ###########^###<########################
                                   0000000000050003000100080000000000000009
                                   00010004000E000C000200040000000000000000
    ... +  80                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000A00000000000000000000
    ... + 120                      #######################################_
                                   0000000000000000000000000000000000010005
                                   00000000000000000000000000000000000A000F
    ... + 160                      ############ÿÿ¹°XC#############   E2  X1
                                   000000000000FFBB540000000000000222432253
                                   0000000A0000FF90830040000C0000C000520081
    ... + 200                      000         ####__S                 050
                                   3332222222220000555222222222222222223332
                                   0000000000000000FF3000000000000000000500
    ... + 240                           00                                
                                   222223322222222                        
                                   000000000000000                        
    OUTFILE                        /usr/users/ftpsapfi/locks_540318       
                                   2777277677267776766266667533333322222222
                                   F532F53523F64031069FCF3B3F54031800000000
    ... +  40                                                                               
    2222222222                             
                                   0000000000                             
    Application Calls
    No dump information available                    
    Application Information
    No dump information available                    
    Internal notes
    The termination occurred in the function "ab_Move" of the SAP                            
    Basis System, specifically in line 529 of the module                                     
    "//bas/640_REL/src/krn/runt/abmove1.c#6".                                               
    The internal operation just processed is "MOVE".                                         
    The internal session was started at 20050929142552.                                      
    Active calls in SAP kernel
    ( 0)  0x4000000001751924   CTrcStack2 + 0x2bc  dw.sapD01_DVEBMGS00                    
    ( 1)  0x4000000001751658   CTrcStack + 0x18  dw.sapD01_DVEBMGS00                      
    ( 2)  0x4000000001db7478   rabax_CStackSave__Fv + 0x100  dw.sapD01_DVEBMGS00          
    ( 3)  0x4000000001dc3abc   ab_rabax + 0x1e1c  dw.sapD01_DVEBMGS00                     
    ( 4)  0x4000000001b44cb4   ab_cnverr__FiPcPCvN21T2 + 0x18c  dw.sapD01_DVEBMGS00       
    ( 5)  0x40000000016c96f8   ab_Move + 0x1910  dw.sapD01_DVEBMGS00                      
    ( 6)  0x40000000016d4434   ab_jmove__Fv + 0x384  dw.sapD01_DVEBMGS00                  
    ( 7)  0x4000000001022348   ab_extri__Fv + 0x17a0  dw.sapD01_DVEBMGS00                 
    ( 8)  0x4000000001726dc8   ab_xevent__FPCc + 0x38  dw.sapD01_DVEBMGS00                
    ( 9)  0x40000000019f7efc   ab_trigg__Fv + 0x94  dw.sapD01_DVEBMGS00                   
    (10)  0x40000000019dc9ec   ab_run + 0xc4  dw.sapD01_DVEBMGS00                         
    (11)  0x4000000000f65e0c   N_ab_run + 0x14  dw.sapD01_DVEBMGS00                       
    (12)  0x4000000000f5fa88   dynpmcal + 0x198  dw.sapD01_DVEBMGS00                      
    (13)  0x4000000000f5d500   dynppai0 + 0x830  dw.sapD01_DVEBMGS00                      
    (14)  0x4000000000f5b8b4   dynprctl + 0x43c  dw.sapD01_DVEBMGS00                      
    (15)  0x4000000000f56728   dynpen00 + 0x2118  dw.sapD01_DVEBMGS00                     
    (16)  0x400000000102f1b4   Thdynpen00 + 0x69c  dw.sapD01_DVEBMGS00                    
    (17)  0x400000000102e1e4   TskhLoop + 0x523c  dw.sapD01_DVEBMGS00                     
    (18)  0x4000000001022f50   tskhstart + 0x1e0  dw.sapD01_DVEBMGS00                     
    (19)  0x4000000000dce3c4   DpMain + 0x484  dw.sapD01_DVEBMGS00                        
    (20)  0x40000000022784cc   nlsui_main + 0x14  dw.sapD01_DVEBMGS00                     
    (21)  0x4000000000a39534   main + 0x14  dw.sapD01_DVEBMGS00                           
    (22)  0xc00000000000a588   $START$ + 0xa0  /usr/lib/pa20_64/dld.sl                    
    List of ABAP programs affected
    Type  Program                            Gen. Date  Time       Load Size 
    Prg   ZVXR0303                           09/29/2005 14:25:42       39936 
    Prg   SAPMSSY0                           05/01/2005 00:21:19       66560 
    Prg   SAPMSSYD                           06/05/2002 17:09:33       16384 
    Prg   SAPFSYSCALLS                       02/14/2002 14:22:47        6144 
    Prg   RSDBRUNT                           06/13/2004 00:43:20      226304 
    Typ   RSSCR                                /  /       : m:15        5120 
    Prg   RSDBSPBL                           01/07/2003 18:47:02       59392 
    Prg   SAPDB__S                           02/14/2002 14:22:47       15360 
    Typ   VARID                              05/12/1997 16:51:30        4096 
    Prg   %_CSYDB0                           02/14/2002 14:22:46       28672 
    Prg   RSDBSPVA                           09/06/2005 22:54:22      112640 
    Prg   SAPLSVAR                           09/06/2005 22:57:28      625664 
    Typ   VARIS                              05/12/1997 15:27:21        2048 
    Typ   RSVAMEMKEY                         05/07/1997 13:07:49        2048 
    Prg   RSDBSPMC                           06/05/2002 17:09:26       66560 
    Typ   DDSHDESCR                          09/03/1997 03:05:16        3072 
    Typ   SPPARAMS                           05/07/1997 13:10:38        2048 
    Typ   SPPARAMS                           05/07/1997 13:10:38        2048 
    Typ   RSSELINT                           04/04/1995 16:12:37        2048 
    Prg   SAPLICON                           03/12/2004 06:57:52       23552 
    Prg   %_CICON                            02/14/2002 14:22:46       65536 
    Prg   SAPLSABE                           02/14/2002 14:22:47       11264 
    Prg   SAPLSECU                           05/23/2005 14:04:05       64512 
    Typ   RSSUBINFO                          10/14/1999 22:01:03        3072 
    Prg   %_CRSDS                            02/14/2002 14:22:46        8192 
    Typ   RSDSEXPR                           08/20/1998 10:57:18        2048 
    Prg   SAPLDSYA                           02/14/2002 14:22:47       39936 
    Prg   SAPFSDS1                           01/07/2003 18:32:17       47104 
    Typ   TDCLD                              11/02/1998 09:51:35        5120 
    Prg   SAPLSDOD                           04/30/2005 22:53:50       39936 
    Typ   DOKIL                              05/12/1997 16:46:17        3072 
    Prg   SAPCNVE                            02/14/2002 14:22:47        6144 
    Prg   SAPLLANG                           02/14/2002 14:22:47        8192 
    Typ   T002                               02/14/1998 10:24:58        2048 
    Typ   RSEXFCODE                          08/13/1997 12:52:57        1024 
    Prg   SAPFSPOR                           03/13/2004 19:20:44       12288 
    Prg   SAPLOMCV                           05/01/2005 00:14:10       16384 
    Prg   CL_EXITHANDLER================CP   06/13/2004 00:40:58       26624 
    Prg   SAPLSEXV                           09/06/2005 22:55:26      107520 
    Prg   CL_BADI_FLT_DATA_TRANS_AND_DB=CP   05/01/2005 00:21:35       33792 
    Typ   SXS_ATTR                           08/20/2001 12:23:27        4096 
    Typ   V_EXT_ACT                          11/09/2000 14:27:05        2048 
    Typ   SXC_EXIT                           11/09/2000 14:23:43        2048 
    Prg   CL_EX_BADI_MATN1==============CP   05/01/2005 00:14:04       22528 
    Prg   IF_EX_BADI_MATN1==============IP   06/13/2004 00:48:55        4096 
    Typ   TMCNV                              02/24/1999 03:33:25        3072 
    Prg   SAPLSCNT                           02/14/2002 14:22:47       24576 
    Typ   DYCBOX                             08/20/1998 11:16:53        2048 
    Prg   SAPLSVSM                           01/07/2003 18:35:45       22528 
    Prg   SAPLSGUI                           01/09/2003 17:15:12       31744 
    Prg   SAPLSTTM                           05/01/2005 00:24:04       75776 
    Prg   SAPLSBDC                           05/23/2005 14:05:19       38912 
    Prg   CL_DATAPROVIDER===============CP   02/14/2002 14:22:46       40960 
    Prg   %_CCNTL                            02/14/2002 14:22:46       13312 
    Typ   OBJ_RECORD                         02/14/1998 08:30:43        2048 
    Prg   SAPLSTUP                           05/23/2005 14:03:46       65536 
    Prg   SAPLCNDP                           05/23/2005 14:05:47      167936 
    Prg   SAPFGUICNTL                        01/09/2003 17:18:52       20480 
    Prg   SAPLOLEA                           05/23/2005 14:03:56       79872 
    Prg   SAPLSFES                           09/06/2005 22:53:55      191488 
    Prg   SAPLSPLUGIN                        02/14/2002 14:22:48        6144 
    Typ   ARFCRDATA                          11/09/2000 14:04:16        6144 
    Prg   SAPLGRFC                           02/14/2002 14:22:47       13312 
    Typ   SWCBCONT                           11/15/2000 17:55:11        3072 
    Typ   OLE_VERBS                          04/04/1995 16:02:20        2048 
    Typ   OLE_PA                             04/04/1995 16:02:19        2048 
    Prg   SAPSHDTV                           03/12/2004 06:40:27       28672 
    Typ   SSCRTEXTS                          09/03/1997 03:12:33        3072 
    Typ   SSCRFIELDS                         05/13/1997 12:54:26        4096 
    Prg   CL_GUI_PROPS_CONSUMER=========CP   01/07/2003 18:26:56       26624 
    Prg   SAPLTHFB                           09/06/2005 22:52:48      306176 
    Prg   CL_DYNAMIC_GUI_EXTENSIONS=====CP   02/14/2002 14:22:46       33792 
    Prg   CL_GUI_DATAMANAGER============CP   05/01/2005 00:20:36       70656 
    Prg   CL_ABAP_CHAR_UTILITIES========CP   05/01/2005 00:14:49       11264 
    Prg   RSDBSPVD                           05/01/2005 00:15:44       73728 
    Typ   RVARI                              03/30/1998 09:40:50        4096 
    Typ   RSVARIVDAT                         04/04/1995 16:12:54        2048 
    Typ   VBEP                               01/27/2003 16:50:17       10240 
    Typ   VBAP                               09/15/2005 11:15:36       44032 
    Prg   SAPLCEI0                           09/22/2005 14:34:40      936960 
    Typ   API_VALUE                          02/20/1998 08:46:47        2048 
    Prg   SAPLCUEV                           06/07/2001 18:26:56       10240 
    Prg   SAPLSUNI                           06/13/2004 00:42:30      131072 
    Typ   TFDIR                              07/29/1998 19:49:08        3072 
    Prg   %_CIBCO2                           03/13/2004 14:32:13       12288 
    Typ   IBINCOM                            06/01/1999 11:56:27        3072 
    Typ   IBINCONF                           06/01/1999 11:56:27        2048 
    Typ   IBSTCONF                           06/01/1999 11:56:28        1024 
    Prg   SAPLCUCB                           05/23/2005 15:20:17      192512 
    Typ   TCUIBSPECIAL                       06/07/2001 17:50:37        1024 
    Prg   %_CIBXX                            03/13/2004 14:38:45       49152 
    Typ   BAL_S_MSG                          12/04/2000 13:04:01        6144 
    Prg   CX_CBASE_ERROR================CP   01/27/2003 16:58:10       10240 
    Typ   SCX_SRCPOS                         11/09/2000 14:12:15        2048 
    Typ   BAL_S_CONT                         11/02/1998 09:43:07        2048 
    Typ   BAL_S_PARM                         12/04/2000 12:45:14        3072 
    Typ   BAL_S_CLBK                         11/02/1998 09:43:07        2048 
    Prg   CX_STATIC_CHECK===============CP   02/14/2002 14:22:47        8192 
    Prg   CX_ROOT=======================CP   02/14/2002 14:22:47        9216 
    Prg   CL_CBASE======================CP   05/23/2005 15:19:44       87040 
    Typ   T371G                              04/29/1998 10:42:48        2048 
    Prg   SAPLIBCO                           03/13/2004 15:32:40      269312 
    Prg   %_CIBCO                            03/13/2004 14:38:45       11264 
    Prg   SAPLIBXX                           03/13/2004 14:38:46       11264 
    Prg   SAPLIBIBF                          03/13/2004 14:38:46      179200 
    Prg   %_CIBIB                            03/13/2004 14:38:45       18432 
    Prg   SAPLIBINF                          06/12/2004 22:20:22      415744 
    Prg   %_CIBIN                            03/13/2004 15:32:40       48128 
    Prg   CL_IBASE_STRUC================CP   06/07/2001 19:59:10      106496 
    Prg   %_CIBST                            03/13/2004 14:38:45       37888 
    Prg   CL_IBASE_STRUC_BUF============CP   06/07/2001 19:59:10       89088 
    Prg   CL_IBASE_STRUC_STAT===========CP   06/07/2001 19:59:10        8192 
    Prg   CL_IBASE_STRUC_BUF_IBSTREF====CP   06/07/2001 19:59:10       35840 
    Prg   %_CIBCO1                           03/13/2004 14:38:45       14336 
    Typ   IBINVAL                            09/18/2001 10:02:52        2048 
    Prg   SAPLIBCU                           03/13/2004 14:38:46       12288 
    Prg   SAPLIBCUT                          06/07/2001 18:27:19       12288 
    Typ   T371B                              05/14/1998 22:58:43        2048 
    Typ   V_IBINR                            03/13/2004 15:32:40        5120 
    Typ   V_IBINR_CM                         03/13/2004 15:32:40        5120 
    Prg   CL_IBASE_SERVICE==============CP   06/07/2001 19:59:10       13312 
    Prg   CL_IBASE_T371D_BUF============CP   06/07/2001 19:59:10       12288 
    Typ   T371D                              08/27/1999 18:19:44        2048 
    Prg   CL_IBASE_R3_MATERIAL==========CP   05/23/2005 15:08:24       59392 
    Typ   MARA                               05/23/2005 15:08:18       22528 
    Typ   MAKT                               08/28/1997 08:52:19        2048 
    Typ   ICON                               01/03/1996 15:34:02        3072 
    Prg   CL_ABAP_TYPEDESCR=============CP   05/01/2005 00:20:10       21504 
    Prg   CL_ABAP_ELEMDESCR=============CP   05/01/2005 00:20:33       20480 
    Prg   CL_ABAP_DATADESCR=============CP   03/12/2004 07:16:33       14336 
    Prg   CL_ABAP_REFDESCR==============CP   03/12/2004 07:17:23       16384 
    Prg   CL_ABAP_STRUCTDESCR===========CP   05/01/2005 00:20:33       20480 
    Prg   CL_ABAP_COMPLEXDESCR==========CP   03/12/2004 07:16:33       13312 
    Prg   CL_ABAP_TABLEDESCR============CP   03/12/2004 07:17:23       17408 
    Prg   CL_ABAP_CLASSDESCR============CP   03/12/2004 07:17:23       23552 
    Prg   CL_ABAP_OBJECTDESCR===========CP   03/12/2004 07:17:23       25600 
    Prg   CL_ABAP_INTFDESCR=============CP   03/12/2004 07:16:33       19456 
    Prg   CL_ABAP_SOFT_REFERENCE========CP   03/29/2001 16:42:12        7168 
    Prg   CL_ABAP_REFERENCE=============CP   02/14/2002 14:22:46        6144 
    Prg   IF_EX_CM_BADI_VERSION=========IP   01/07/2002 16:09:04        3072 
    Prg   %_CABAP                            01/07/2003 18:31:23       23552 
    Typ   SXS_INTER                          11/30/1998 15:55:16        2048 
    Prg   CL_EX_CM_BADI_VERSION=========CP   05/01/2005 00:14:04       13312 
    Prg   %_CSXRT                            06/13/2004 00:40:55       11264 
    Prg   CL_EXIT_MASTER================CP   06/13/2004 00:40:58       13312 
    Typ   V_EXT_IMP                          11/09/2000 14:27:05        2048 
    Typ   V_EXT_IMP                          11/09/2000 14:27:05        2048 
    Typ   SXC_IMPSWH                         11/09/2000 14:23:44        2048 
    Prg   CL_IM_CM_BADI_VERSION_DEF=====CP   04/17/2002 11:01:00        6144 
    Prg   SAPLASTAT_TRIG                     02/14/2002 14:22:47       11264 
    Typ   ASTAT_TYP2                         11/10/1998 05:35:18        2048 
    Prg   IF_CM_BASELINE================IP   05/23/2005 15:08:24        9216 
    Prg   IF_IBASE_IBOF_TREE_OBJECT=====IP   05/23/2005 15:08:24        5120 
    Prg   IF_IBASE_INSTALL==============IP   06/07/2001 20:08:54        4096 
    Prg   IF_IBASE_MATERIAL=============IP   06/07/2001 20:08:54        3072 
    Prg   IF_IBASE_OBJECT===============IP   06/07/2001 20:08:54        4096 
    Prg   SAPLBOMA                           02/14/2002 14:15:40       10240 
    Typ   IONRA                              03/12/2004 02:09:40       23552 
    Typ   IBIBCOM                            08/30/2001 17:56:57        4096 
    Typ   IBIB                               03/13/2004 14:32:13        5120 
    Prg   CL_IBASE_STRUC_SERVICE========CP   06/07/2001 19:59:10       17408 
    Prg   CL_CU_CBASE_ENQUEUE_CORE======CP   06/07/2001 19:58:59       11264 
    Prg   CL_CU_CBASE_ENQUEUE===========CP   06/07/2001 19:58:59       16384 
    Typ   T371F                              06/01/1999 12:00:49        2048 
    Typ   V_IBIN_SYVAL                       03/13/2004 15:32:41        4096 
    Typ   IBIN                               09/18/2001 10:02:52        6144 
    Typ   IBINOWN                            02/01/2000 14:56:07        2048 
    Prg   CL_IBASE_T371F_BUF============CP   06/07/2001 19:59:11        8192 
    Prg   CL_IBASE_STRUC_FILT_02========CP   06/07/2001 19:59:10       11264 
    Prg   CL_IBASE_STRUC_FILT===========CP   06/07/2001 19:59:10       10240 
    Typ   IBST                               09/18/2001 10:02:52        4096 
    Typ   IBST                               09/18/2001 10:02:52        4096 
    Typ   IBSTREF                            04/15/1998 00:20:43        2048 
    Typ   IBSTREF                            04/15/1998 00:20:43        2048 
    Prg   IF_CBASE_E====================IP   06/07/2001 20:08:25        3072 
    Prg   %_CCXTAB                           02/14/2002 14:22:46        6144 
    Prg   SAPLCUCQ                           09/15/2005 11:15:38       79872 
    Typ   CUCO                               09/18/2001 10:02:34       18432 
    Typ   CUCO_OBJ                           09/18/2001 10:02:34       18432 
    Prg   SAPLCLCA                           09/06/2005 23:33:29       68608 
    Typ   TCLA                               03/13/2004 14:10:20        5120 
    Typ   TCLAO                              08/13/1997 13:57:22        4096 
    Prg   SAPLCUOB                           05/23/2005 14:31:35       31744 
    Typ   INOB                               09/03/1997 03:20:02        4096 
    Prg   SAPLCLSE                           05/23/2005 14:32:26      167936 
    Prg   %_CCC01                            05/01/2005 00:34:57       53248 
    Typ   TABLEKEY                           07/06/1998 21:01:06        2048 
    Typ   KSSK                               09/18/2001 10:02:58        3072 
    Prg   SAPLCLEF                  

  • Runtime error in activation BADI (CX_HRPA_INVALID_PARAMETER)

    In activation BADI i get a runtime error using 'HR_INFOTYPE_OPERATION'
    An exception occurred that is explained in detail below.                       
    The exception, which is assigned to class 'CX_HRPA_INVALID_PARAMETER', was not 
      caught in                                                                     
    procedure "RESOLVE_EXCEPTION" "(FORM)", nor was it propagated by a RAISING     
      clause.                                                                       
    Since the caller of the procedure could not have anticipated that the          
    exception would occur, the current program is terminated.                      
    The reason for the exception is:                                               
    Ongeldige parameter EXCEPTION waarde                                                                               
    The occurrence of the exception is closely related to the occurrence of        
    a previous exception "CX_HRPA_VIOLATED_PRECONDITION", which was raised in the  
      program "CL_HRPA_MASTERDATA_FACTORY====CP",                                   
    specifically in line 6 of the (include) program                                
      "CL_HRPA_MASTERDATA_FACTORY====CM004".                                        
    The cause of the exception was:                                                                               
    Niet aan voorwaarde voldaan                                                    
      DATA: personaldatakey   TYPE bapipakey.
      DATA: return            TYPE bapireturn1.
      DATA: l_p0025           TYPE p0025.
      DATA: l_citem           TYPE t71adm09-citem.
      DATA: l_resultaat(2)    TYPE n.
    l_p0025-pernr = p0759-pernr.
    Begindatum is begindatum binnengekomen IT0759 record - 1 jaar
        CALL FUNCTION 'RP_CALC_DATE_IN_INTERVAL'
          EXPORTING
            date      = p0759-begda
            days      = 0
            months    = 0
            signum    = '-'
            years     = 1
          IMPORTING
            calc_date = l_p0025-begda.
    Einddatum is 31 december van het jaar binnegkomen IT0759
        CONCATENATE: p0759-endda(04) '1231'  INTO l_p0025-endda.
        l_p0025-infty = '0025'.
        IF p0759-cpamt >= 100.
    *GENERATE ERROR
        ELSE.
          l_resultaat = p0759-cpamt.
         IF l_resultaat < 10.
           CONCATENATE '0' l_resultaat INTO l_p0025-krt01.
         ELSE.
         l_p0025-krt01 = l_resultaat.
         ENDIF.
    write data
          CLEAR: return, personaldatakey.
          CALL FUNCTION 'HR_INFOTYPE_OPERATION'
            EXPORTING
              infty         = '0025'
              number        = l_p0025-pernr
              validityend   = l_p0025-endda
              validitybegin = l_p0025-begda
              record        = l_p0025
              operation     = 'INS'
              nocommit      = ''
              tclas         = 'A'
            IMPORTING
              return        = return
              key           = personaldatakey
            EXCEPTIONS
              OTHERS        = 0.
          IF NOT return-number IS INITIAL.
    GENERATE ERROR
          ELSE.
            is_ok = 'X'.
            process_standard = 'X'.
          ENDIF.

    Hello Richard
    The exception is raised in method SET_FRAMEWORK of class CL_HRPA_MASTERDATA_FACTORY. Perhaps the SAP note mentioned in the coding (on ECC 6.0) may be useful:
    METHOD set_framework.
      IF a_is_initialized = true.
    *   This indicates some complex problem which often can be easily
    *   fixed. For details see NOTE 493984 (2003).
        RAISE EXCEPTION TYPE cx_hrpa_violated_precondition.  " line 6
      ELSE.
        CALL METHOD delayed_constructor
          EXPORTING
            read_infotype     = read_infotype
            masterdata_buffer = masterdata_buffer
            additional_buffer = additional_buffer
            legacy_mode       = legacy_mode.
      ENDIF.
    ENDMETHOD.
    Regards
      Uwe

  • Runtime Error in Record INsertion to an Infotype

    Hi all,
    I have created an infotype PA9035.
    In that i want to insert records with value
    Data:  WA_PA9035 TYPE PA9035.
      WA_PA9035-PERNR  = P_PERNR.
      WA_PA9035-ZZKOKRS = V_KOKRS.
      WA_PA9035-ENDDA = '99991231'.
      WA_PA9035-BEGDA = SY-DATUM.
    I used the below funciton mod to insert data,
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
          EXPORTING
            INFTY                  = '9035'
            NUMBER                 = P_PERNR
          SUBTYPE                =
          OBJECTID               =
          LOCKINDICATOR          =
           VALIDITYEND            = '99991231'
           VALIDITYBEGIN          = SY-DATUM
          RECORDNUMBER           =
            RECORD                 = WA_PA9035
            OPERATION              = 'INS'.
          TCLAS                  = 'A'
          DIALOG_MODE            = '0'
          NOCOMMIT               =
          VIEW_IDENTIFIER        =
          SECONDARY_RECORD       =
        IMPORTING
          RETURN                 =
          KEY                    =
    I am getting RUNTIME ERROR in that..the error is....
    The source field is too short.
    In the running program "SAPLHRMM" a field should have been assigned to a field
    symbol, which is shorter than the type of the field symbol.
    This is not possible.
    It is a statement of the form ASSIGN f TO <fs> CASTING...
    or ASSIGN f TO <fs> with a field symbol that was created with the
    STRUCTURE addition.
    Please help me...
    Regards,
    Thendral.

    Hi all,
    I have created an infotype PA9035.
    In that i want to insert records with value
    Data:  WA_PA9035 TYPE PA9035.
      WA_PA9035-PERNR  = P_PERNR.
      WA_PA9035-ZZKOKRS = V_KOKRS.
      WA_PA9035-ENDDA = '99991231'.
      WA_PA9035-BEGDA = SY-DATUM.
    I used the below funciton mod to insert data,
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
          EXPORTING
            INFTY                  = '9035'
            NUMBER                 = P_PERNR
          SUBTYPE                =
          OBJECTID               =
          LOCKINDICATOR          =
           VALIDITYEND            = '99991231'
           VALIDITYBEGIN          = SY-DATUM
          RECORDNUMBER           =
            RECORD                 = WA_PA9035
            OPERATION              = 'INS'.
          TCLAS                  = 'A'
          DIALOG_MODE            = '0'
          NOCOMMIT               =
          VIEW_IDENTIFIER        =
          SECONDARY_RECORD       =
        IMPORTING
          RETURN                 =
          KEY                    =
    I am getting RUNTIME ERROR in that..the error is....
    The source field is too short.
    In the running program "SAPLHRMM" a field should have been assigned to a field
    symbol, which is shorter than the type of the field symbol.
    This is not possible.
    It is a statement of the form ASSIGN f TO <fs> CASTING...
    or ASSIGN f TO <fs> with a field symbol that was created with the
    STRUCTURE addition.
    Please help me...
    Regards,
    Thendral.

  • RUNTIME ERROR IN GENERATED PROGRAM. Overflow converting ''

    Hi,
    While executing the below code i am getting the error
    " RUNTIME ERROR IN GENERATED PROGRAM. Overflow converting ' ' am new to ABAP , can anyone kindly help me where i have went wrong ? .
    IF ( V_DO_CDS_NAME_MAIN <> '' ).
        ABAP.
            DATA: ref_it_tab TYPE REF TO data,
                  ref_wa TYPE REF TO data.
            FIELD-SYMBOLS: <fs_itab> TYPE ANY TABLE.
            FIELD-SYMBOLS: <fs_wa> TYPE ANY.
            FIELD-SYMBOLS: <fs_field> TYPE ANY.
            CREATE DATA ref_it_tab TYPE STANDARD TABLE OF (V_DO_CDS_NAME_MAIN) WITH NON-UNIQUE DEFAULT KEY.
            ASSIGN ref_it_tab->* TO <fs_itab>.
            SELECT * FROM (V_DO_CDS_NAME_MAIN) INTO TABLE <fs_itab> where C1 = V_WORK_ITEM_ID_MAIN.
            CREATE DATA ref_wa LIKE LINE OF <fs_itab>.
            ASSIGN ref_wa->* TO <fs_wa>.
            loop at <fs_itab> assigning <fs_wa>.
                assign component 'CLIENT' of structure <fs_wa> to <fs_field>.
                V_CLIENT = <fs_field>.
                assign component 'C0' of structure <fs_wa> to <fs_field>.
                V_C0 = <fs_field>.
                assign component 'C1' of structure <fs_wa> to <fs_field>.
                V_C1 = <fs_field>.
                assign component 'C2' of structure <fs_wa> to <fs_field>.
                V_C2 = <fs_field>.
                assign component 'C3' of structure <fs_wa> to <fs_field>.
                V_C3 = <fs_field>.
                assign component 'C4' of structure <fs_wa> to <fs_field>.
                V_C4 = <fs_field>.
                assign component 'C5' of structure <fs_wa> to <fs_field>.
                V_C5 = <fs_field>.
                assign component 'C6' of structure <fs_wa> to <fs_field>.
                V_C6 = <fs_field>.
                assign component 'C7' of structure <fs_wa> to <fs_field>.
                V_C7 = <fs_field>.
                assign component 'C8' of structure <fs_wa> to <fs_field>.
                V_C8 = <fs_field>.
                assign component 'MESSAGE_ID' of structure <fs_wa> to <fs_field>.
                V_MESSAGE_ID = <fs_field>.
                assign component 'TIMESTAMP' of structure <fs_wa> to <fs_field>.
                V_TIMESTAMP = <fs_field>.
                assign component 'EXTRACTKEY' of structure <fs_wa> to <fs_field>.
                V_EXTRACTKEY = <fs_field>.
                assign component 'STATEID' of structure <fs_wa> to <fs_field>.
                V_STATEID = <fs_field>.
                assign component 'DEVICE_ID' of structure <fs_wa> to <fs_field>.
                V_DEVICE_ID = <fs_field>.
            ENDLOOP.
        ENDABAP.
    ENDIF.

    Hi Mubeen,
    While Copying the cotes have come closer otherwise its working fine , i was able to find the error .
    There are ten predefined ABAP data types. There are 100 possible type combinations between these elementary data types. ABAP supports automatic type conversion and length adjustment for all of them except type D (date) and type T (time) fields which cannot be converted into each other.
    I commented the TimeStamp part where i had given the ABAP Type as D and it started working .
    But now i want to display the content of  "TimeStamp"  field but i am not able to do so .
    This is the format in which it has to be displayed 2009.011.915.3353.
    Which ABAPTYPE i need to use ?.
    i am able to display in this format 20090119153353
    regards
    Harsha

  • Runtime error in ALV demo

    HI,
    Runtime error in the below  report as internal table IT_FIELDCAT is empty after the execution of FM
    REUSE_ALV_FIELDCATALOG_MERGE.
    Please tell me how do i rectify this error.
    REPORT  ZMY_ALV_COLORING_CELLS.
    TYPE-POOLS SLIS.
    DATA: BEGIN OF itab OCCURS 0,
            BUKRS LIKE T001-BUKRS,
            BUTXT LIKE T001-BUTXT,
          END   OF itab.
    PARAMETERS: P_BUKRS TYPE TBUKRS.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_BUKRS.
    PERFORM F4_FOR_BUKRS.
    *&      Form  F4_FOR_BUKRS
    FORM F4_FOR_BUKRS.
      DATA: IT_FIELDCAT TYPE  SLIS_T_FIELDCAT_ALV ,
            ES_SELFIELD TYPE  SLIS_SELFIELD. " Get data
      SELECT BUKRS
             BUTXT
             FROM T001
             INTO TABLE itab
             up to 10 rows .
    Get field
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
           EXPORTING
                I_PROGRAM_NAME     = SY-REPID
                I_INTERNAL_TABNAME = 'ITAB'
           CHANGING
                CT_FIELDCAT        = IT_FIELDCAT[].
      LOOP AT IT_FIELDCAT.
        IT_FIELDCAT-KEY = SPACE.
        IF IT_FIELDCAT-FIELDNAME = 'BUTXT'.
          IT_FIELDCAT-EMPHASIZE  = 'C710'.
        ENDIF.
        IF IT_FIELDCAT-FIELDNAME = 'BUKRS'.
          IT_FIELDCAT-EMPHASIZE  = 'C610'.
        ENDIF.
        MODIFY IT_FIELDCAT.
      ENDLOOP.
      CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
        EXPORTING
    I_TITLE                       = 'THIS IS FOR F4 IN COLOR'
          I_TABNAME                     = 'ITAB'
          IT_FIELDCAT                   = IT_FIELDCAT[]
        IMPORTING
          ES_SELFIELD                   = ES_SELFIELD
        TABLES
          T_OUTTAB                      = ITAB .
    Thanks,
    Ahmed.

    Change like this
    >
    ahmed shaik wrote:
    > HI,
    >
    > Runtime error in the below  report as internal table IT_FIELDCAT is empty after the execution of FM
    > REUSE_ALV_FIELDCATALOG_MERGE.
    >
    > Please tell me how do i rectify this error.
    >
    >
    >
    > REPORT  ZMY_ALV_COLORING_CELLS.
    > TYPE-POOLS SLIS.
    >
    > DATA: BEGIN OF itab OCCURS 0,
    >         BUKRS LIKE T001-BUKRS,
    >         BUTXT LIKE T001-BUTXT,
    >       END   OF itab.
    >
    > PARAMETERS: P_BUKRS TYPE TBUKRS.
    >
    > AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_BUKRS.
    >
    >
    >  PERFORM F4_FOR_BUKRS.
    > &----
    > *&      Form  F4_FOR_BUKRS
    > ----
    > FORM F4_FOR_BUKRS.
    >
    >   DATA: IT_FIELDCAT TYPE  SLIS_T_FIELDCAT_ALV ,
    >         ES_SELFIELD TYPE  SLIS_SELFIELD. " Get data
    >
    >   SELECT BUKRS
    >          BUTXT
    >          FROM T001
    >          INTO TABLE itab
    >          up to 10 rows .
    > * Get field
    >
    >   CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    >        EXPORTING
    >             I_PROGRAM_NAME     = SY-REPID
    >*             I_INTERNAL_TABNAME = 'ITAB'
    >           I_STRUCTURE_NAME = 'ITAB'
    >        CHANGING
    >             CT_FIELDCAT        = IT_FIELDCAT[].
    >
    >   LOOP AT IT_FIELDCAT.
    >     IT_FIELDCAT-KEY = SPACE.
    >     IF IT_FIELDCAT-FIELDNAME = 'BUTXT'.
    >       IT_FIELDCAT-EMPHASIZE  = 'C710'.
    >     ENDIF.
    >     IF IT_FIELDCAT-FIELDNAME = 'BUKRS'.
    >       IT_FIELDCAT-EMPHASIZE  = 'C610'.
    >     ENDIF.
    >
    >     MODIFY IT_FIELDCAT.
    >   ENDLOOP.
    >
    >   CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
    >     EXPORTING
    >  I_TITLE                       = 'THIS IS FOR F4 IN COLOR'
    >       I_TABNAME                     = 'ITAB'
    >       IT_FIELDCAT                   = IT_FIELDCAT[]
    >     IMPORTING
    >       ES_SELFIELD                   = ES_SELFIELD
    >     TABLES
    >       T_OUTTAB                      = ITAB .
    >
    >
    >
    >
    >
    > Thanks,
    > Ahmed.
    Rhea

  • Runtime error

    HI all.....
    please look at this runtime error...... help me to solve this....
    Table name:- ZRDSSTOCK.
    Data class:- APPL1.
    Size category:- 5.
    Buffering not allowed .
    Runtime Errors         DBIF_RSQL_SQL_ERROR
    Exception              CX_SY_OPEN_SQL_DB
           Occurred on     26.11.2007 at 12:38:44
    An SQL error occurred when accessing a table.
    What happened?
    What can you do?
    Make a note of the actions and input which 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.
    Error analysis
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was
    neither
    caught nor passed along using a RAISING clause, in the procedure "SAVE_DATA"
    "(FORM)"
    Since the caller of the procedure could not have expected this exception
    to occur, the running program was terminated.
    The reason for the exception is:
    How to correct the error
    The exception must either be prevented, caught within the procedure "SAVE_DATA"
    "(FORM)", or declared in the procedure's RAISING clause.
    To prevent the exception, note the following:
    Database error text........: "ORA-01654: unable to extend index
    SAPPRD.ZRDSSTOCK~0 by 128 in tablespace PSAPPRDUSR"
    Internal call code.........: "[RSQL/INSR/ZRDSSTOCK ]"
    Please check the entries in the system log (Transaction SM21).
    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:
    "DBIF_RSQL_SQL_ERROR" CX_SY_OPEN_SQL_DBC
    "YKSD010 " or "YKSD010 "
    "SAVE_DATA"
    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.
    System environment
    SAP Release.............. "620"
    Application server....... "venus"
    Network address.......... "192.168.1.151"
    Operating system......... "SunOS"
    Release.................. "5.9"
    Hardware type............ "sun4u"
    Character length......... 8 Bits
    Pointer length........... 64 Bits
    Work process number...... 1
    Short dump setting....... "full"
    Database server.......... "venus"
    Database type............ "ORACLE"
    Database name............ "PRD"
    Database owner........... "SAPPRD"
    Character set............ "en_US"
    SAP kernel............... "620"
    Created on............... "Nov 17 2004 01:43:57"
    Created in............... "SunOS 5.8 Generic_108528-07 sun4u"
    Database version......... "OCI_817_64 "
    Patch level.............. "1732"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 8.1.7.."
    SAP database version..... "620"
    Operating system......... "SunOS 5.8, SunOS 5.9"
    User, transaction...
    Client.............. 400
    User................ "MMUSER"
    Language key........ "E"
    Transaction......... "ZRDSEN "
    Program............. "YKSD010 "
    Screen.............. "YKSD010 0100"
    Screen line......... 41
    Information on where termination occurred
    The termination occurred in the ABAP program "YKSD010 " in "SAVE_DATA".
    The main program was "YKSD010 ".
    The termination occurred in line 685 of the source code of the (Include)
    program "YKSD010 "
    of the source code of program "YKSD010 " (when calling the editor 6850).
    Processing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in
    the
    procedure "SAVE_DATA" "(FORM)" but was not handled locally, not declared in the
    RAISING clause of the procedure.
    The procedure is in the program "YKSD010 ". Its source code starts in line 662
    of the (Include) program "YKSD010 ".
    Source code extract
    006550
    006560
    006570   *&----
    006580   *&      Form  save_data
    006590   *&----
    006600   *       text
    006610   *----
    006620   FORM SAVE_DATA.
    006630   data: begin of lv_test occurs 0,
    006640         werks type s886-werks,
    006650         pkunag type s886-pkunag,
    006660         end of lv_test.
    006670     LOOP AT INDT1.
    006680
    006690       INDT1-WERKS = WERKS.
    006700       INDT1-DAT1 = VDFRM.
    006710       INDT1-DAT2 = VLDTO.
    006720   *    indt1-kunnr = kunnr.
    006730
    006740
    006750       MODIFY INDT1.
    006760
    006770     ENDLOOP.
    006780   *if indt1 is not initial.
    006790   *select  pkunag werks from  s886 into corresponding fields of  table
    006800   *lv_test where pkunag = indt1-rdscode and werks = indt1-werks.
    006810   *if sy-subrc = 0.
    006820
    006830   &----
    changed by prajwal.k----
    006840
        INSERT ZRDSSTOCK FROM TABLE INDT1 ACCEPTING DUPLICATE KEYS.
    006860   *loop at indt1.
    006870   *  INSERT ZRDSSTOCK FROM INDT1.
    006880   *if sy-subrc <> 0.
    006890   *message w013 WITH INDT1-MATNR.
    006900   *endif.
    006910   *endloop.
    006920
    006930
    006940   &----
    end----
    006950   *        MESSAGE I004.
    006960   *else.
    006970   *message 'Please chek the RDS Code' type 'W'.
    006980   *endif.
    006990   *endif.
    007000   *endif.
    007010     LOOP AT INDT1.
    007020
    007030       AT LAST.
    007040
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 0                             SY-INDEX 0
    SY-TABIX 0                             SY-DBCNT 1
    SY-FDPOS 40                            SY-LSIND 0
    SY-PAGNO 0                             SY-LINNO 1
    SY-COLNO 1                             SY-PFKEY YINDENT
    SY-UCOMM OPT1                          SY-TITLE RDS Stock Entry Screen
    SY-MSGTY                               SY-MSGID
    SY-MSGNO 000                           SY-MSGV1
    SY-MSGV2                               SY-MSGV3
    SY-MSGV4
    Active calls / events
    No.... Type........ Name..........................
           Program
           Include                                  Line
           Class
         3 FORM         SAVE_DATA
           YKSD010
           YKSD010                                    685
         2 MODULE (PAI) YINDENT_IN
           YKSD010
           YKSD010                                    233
         1 EVENT        START-OF-SELECTION
           YKSD010
           YKSD010                                    181
    Chosen variables
         3 FORM         SAVE_DATA
           YKSD010
           YKSD010                                    685
    INDT1[]                        Table IT_121[1738x121]
                                   FFFF94120000000000020007000C00070000FFFF
                                   FFFE7BD00000000000060009006A00090000FFFF
    ... +  40
                                   00000005012B0000
                                   40000058004C0000
    INDT1                          TNV0024   2007090120070930CH01C0100300
                                   5453333222333333333333333344334333333322
                                   4E60024000200709012007093038013010030000
    ... +  40                              CAR####`#################`######
                                   2222222244500006000000000000000006000000
                                   0000000031200000C00000C00000C00000C00000
    ... +  80                      #
                                   0222222222222222222222222222222222222222
                                   C000000000000000000000000000000000000000
    ... + 120
                                   2
                                   0
    SY                             ###############Ê########################
                                   000000000000000C000000000000000000000000
                                   000000000000006A000000000000000000000000
    ... +  40                      #######(###############################y
                                   0000000200000000000000000000000000000007
                                   0001000800010000000100000000000000000009
    ... +  80                      ########################################
                                   0000000000000000000900000000000000000000
                                   0000000000000000001000000000000000000000
    ... + 120                      ########################################
                                   0000000000000000000000000000000000010009
                                   00000000000000000000000000000000000B0000
    ... + 160                      #######ÿ######MX C#############   E0   0
                                   0000000F00000045240000000000000222432223
                                   0000000F000000D8030010000C0000C000500000
    ... + 200                      100         ####__S                 400
                                   3332222222220000555222222222222222223332
                                   1000000000000000FF3000000000000000004000
    ... + 240                           00
                                   222223322222222
                                   000000000000000
    MODIFY-CX                    ########MODIFY
                                   0000000044444522222222222222222222222222
                                   00020000DF496900000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120                                          0101####
                                   222222222222222222223333000022222222
                                   000000000000000000000101000100000000
    <%_L005>-SEL                   ???
    OK_CODE                        SAVE
                                   5454222222222222222222222222222222222222
                                   3165000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    <%_TABLE_ZRDSSTOCK>            ???
    %_DUMMY$$
                                   2222
                                   0000
    VLDTO                          20070930
                                   33333333
                                   20070930
    SY-REPID                       YKSD010
                                   5454333222222222222222222222222222222222
                                   9B34010000000000000000000000000000000000
    SY-MSGID
                                   22222222222222222222
                                   00000000000000000000
    SPACE
                                   2
                                   0
    SY-MSGNO                       000
                                   333
                                   000
         2 MODULE (PAI) YINDENT_IN
           YKSD010
           YKSD010                                    233
    SY-UCOMM                       OPT1
                                   4553222222222222222222222222222222222222
                                   F041000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    COUNT                          ########
                                   00000000
                                   0000000C
    %_VLDTO_%_APP_%                Valid To
                                   566662562222222222222222222222
                                   61C9404F0000000000000000000000
    %_WERKS_%_APP_%                Plant
                                   566672222222222222222222222222
                                   0C1E40000000000000000000000000
    %_VDFRM_%_APP_%                Valid From
                                   566662476622222222222222222222
                                   61C94062FD00000000000000000000
    %B001000_BLOCK_1000            Enter Values
                                   4676725667672222222222222222222222222222
                                   5E452061C5530000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   222
                                   000
    VALUE
                                   222222222222222222
                                   000000000000000000
    SYST-REPID                     YKSD010
                                   5454333222222222222222222222222222222222
                                   9B34010000000000000000000000000000000000
    SY-SUBRC                       0
                                   0000
                                   0000
    A                              1
                                   3
                                   1
    SY-MSGV4
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    SY-MSGV2
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    VARI
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40                                          ####00000000000000
                                   2222222222222222222200003333333333333322
                                   0000000000000000000000000000000000000000
    ... +  80                          ####################################
                                   2222000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 120                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 160                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 200                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 240                      ###############
                                   000000000000000
                                   000000000000000
    INDT[]                         Table IT_28[0x121]
                                   FFFF958EFFFF940200010001000000070000FFFF
                                   FFFE7B70FFFE74800007000C000000090000FFFF
    ... +  40
                                   0000000E012B0000
                                   40000048004C4000
    INDT                                     0000000000000000
                                   2222222222333333333333333322222222222222
                                   0000000000000000000000000000000000000000
    ... +  40                                 #############################
                                   2222222222200000000000000000000000000000
                                   0000000000000000C00000C00000C00000C00000
    ... +  80                      #
                                   0222222222222222222222222222222222222222
                                   C000000000000000000000000000000000000000
    ... + 120
                                   2
                                   0
         1 EVENT        START-OF-SELECTION
           YKSD010
           YKSD010                                    181
    No dump information available
    Application Calls
    No dump information available
    Application Information
    No dump information available
    Internal notes
    The termination occurred in the function "HandleRsqlErrors" of the SAP
    Basis System, specifically in line 760 of the module
    "//bas/620/src/krn/runt/absapsql.c#40".
    The internal operation just processed is "SQLS".
    The internal session was started at 20071126123440.
    Internal call code.........: "[RSQL/INSR/ZRDSSTOCK ]"
    Active calls in SAP kernel
    DoStack2 ( 0xffffffff7fff6490, 0xffffffff7fff6370, 0x0,0x203ac00, >
    > 0x100362d98, 0xffffffff7fff5b71 ), at 0x100362d98
    CTrcStack2 ( 0x103519930, 0x0, 0x10008, 0x1018dc400, 0x0, 0x1 ), at 0x10036296c
    __1cQrabax_CStackSave6F_v_ ( 0x1, 0x28e8400, 0x100000000, >
    > 0x1028e8400, 0x0, 0x1 ), at 0x1007cccac
    ab_rabax ( 0x1020c9a88, 0x4, 0x1018db3b6, 0x10355210c, 0x2000000, >
    > 0x8550c017 ), at 0x1007c0e68
    __1cKab_rsqlerr6Fpkcip0pnLRS_HEADER94_2pv_v_ ( 0x1018c7110, >
    > 0x2f8, 0x1020c6a14, 0xffffffff7fff6cd8, 0x1018c7121, 0x0 ), at 0x10071aae8
    __1cQHandleRsqlErrors6FnJRsqlError_nJCloseMode__v_ ( 0x8, >
    > 0xfffffffe97470708, 0x6c8000, 0x100000000, 0x0, 0x1 ), at 0x1006c8764
    __1cPSqlsExecuteCall6FCpnLDynCallInfo__v_ ( 0x100000000, >
    > 0x6a, 0x20c6800, 0xe8, 0x1d, 0x1 ), at 0x1006ddd24
    __1cIab_jsqls6F_v_ ( 0xfffffffe4a309e58, 0xfffffffe974707b0, >
    > 0x1028c4f00, 0xe8, 0x1d, 0x100000000 ), at 0x1006c91e8
    __1cIab_extri6F_i_ ( 0x103503ff8, 0xfffffffe4a309e44, 0x8a, >
    > 0x0, 0x1, 0x100000000 ), at 0x1005364e8
    __1cJab_xevent6Fpkc_i_ ( 0x0, 0x3416000, 0xfffffffe4c17f808, >
    > 0x0, 0x1d6f, 0xfffffffe975420d8 ), at 0x10068df84
    ab_dstep ( 0xd, 0xd, 0x46, 0x1, 0x103521a74, 0x103521800 ), at 0x1007d619c
    dynpmcal ( 0xfffffffe9747e8c8, 0x10203a800, 0x1037d8110, >
    > 0x101d2a000, 0x2660, 0x100000000 ), at 0x1003e2274
    dynppai0 ( 0xfffffffe9747e8c8, 0x0, 0x0, 0xfffffffe97482c3f, >
    > 0x0, 0x5 ), at 0x1003df680
    dynprctl ( 0x0, 0xfffffffe9747e8c8, 0x203c400, 0x1024d0cf8, >
    > 0x1020291c0, 0x1024d0c58 ), at 0x1003dd258
    dynpen00 ( 0x0, 0x203c400, 0x1, 0x100000000, 0x203a800, >
    > 0x10203a800 ), at 0x1003d9c24
    TskhLoop ( 0x2, 0x2, 0x10203a8c0, 0x8, 0x0, 0x1 ), at 0x1001d2b18
    tskhstart ( 0x100000000, 0x2028000, 0x102028000, 0x2028000, >
    > 0x1, 0x4 ), at 0x1001c5ae0
    DpMain ( 0x249a000, 0x26e3400, 0x10249a000, 0xffffffff7c755f44, >
    > 0x0, 0x1 ), at 0x100111e60
    List of ABAP programs affected
    Type
    Program
    Gen. Date  Time
    Load Size
    Prg
    YKSD010
    26.11.2007 09:44:15
    55296
    Prg
    SAPMSSY0
    18.12.2004 11:31:22
    62464
    Prg
    SAPMSSYD
    05.06.2002 17:09:33
    16384
    Prg
    SAPFSYSCALLS
    14.02.2002 14:22:47
    6144
    Prg
    RSDBRUNT
    18.12.2004 11:32:05
    220160
    Typ
    RSSCR
    .  .       : m:15
    4096
    Prg
    RSDBSPBL
    13.12.2002 12:24:35
    58368
    Prg
    SAPDB__S
    14.02.2002 14:22:47
    16384
    Typ
    VARID
    12.05.1997 16:51:30
    4096
    Prg
    %_CSYDB0
    14.02.2002 14:22:46
    28672
    Prg
    RSDBSPVA
    18.12.2004 11:18:02
    108544
    Typ
    RSVAMEMKEY
    07.05.1997 13:07:49
    2048
    Prg
    RSDBSPMC
    05.06.2002 17:09:26
    66560
    Typ
    DDSHDESCR
    03.09.1997 03:05:16
    3072
    Typ
    SPPARAMS
    07.05.1997 13:10:38
    1024
    Prg
    SAPLICON
    18.12.2004 09:37:13
    23552
    Prg
    %_CICON
    14.02.2002 14:22:46
    57344
    Prg
    SAPLSABE
    14.02.2002 14:22:47
    11264
    Prg
    SAPLSECU
    18.12.2004 11:16:36
    63488
    Prg
    SAPLDSYA
    14.02.2002 14:22:47
    38912
    Prg
    SAPFSDS1
    13.12.2002 12:14:34
    46080
    Typ
    TDCLD
    02.11.1998 09:51:35
    4096
    Prg
    SAPLSDOD
    18.12.2004 11:31:31
    38912
    Typ
    DOKIL
    12.05.1997 16:46:17
    2048
    Prg
    SAPCNVE
    14.02.2002 14:22:47
    6144
    Prg
    SAPLLANG
    14.02.2002 14:22:47
    8192
    Typ
    T002
    14.02.1998 10:24:58
    2048
    Typ
    RSEXFCODE
    13.08.1997 12:52:57
    1024
    Typ
    RSPARINT
    10.04.1995 09:58:38
    1024
    Prg
    SAPLSCNT
    14.02.2002 14:22:47
    22528
    Prg
    SAPLSVSM
    13.12.2002 12:16:46
    22528
    Prg
    SAPLSGUI
    13.12.2002 12:27:47
    29696
    Prg
    SAPLSTTM
    18.12.2004 11:36:10
    73728
    Prg
    SAPLSBDC
    13.12.2002 12:13:58
    37888
    Prg
    CL_DATAPROVIDER===============CP
    14.02.2002 14:22:46
    38912
    Prg
    %_CCNTL
    14.02.2002 14:22:46
    13312
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    SAPLSTUP
    18.12.2004 09:34:15
    62464
    Prg
    SAPLCNDP
    18.12.2004 11:35:59
    153600
    Prg
    SAPFGUICNTL
    13.12.2002 12:30:03
    20480
    Prg
    SAPLOLEA
    18.12.2004 11:30:56
    76800
    Prg
    SAPLSFES
    18.12.2004 11:35:59
    162816
    Prg
    SAPLSPLUGIN
    14.02.2002 14:22:48
    6144
    Prg
    SAPLGRFC
    14.02.2002 14:22:47
    13312
    Prg
    SAPSHDTV
    19.06.2003 19:25:09
    27648
    Typ
    SHDSTU
    14.12.1998 23:15:34
    2048
    Typ
    SHDSTCIU
    14.12.1998 23:15:34
    1024
    Typ
    SSCRTEXTS
    03.09.1997 03:12:33
    2048
    Typ
    SSCRFIELDS
    13.05.1997 12:54:26
    3072
    Prg
    CL_GUI_PROPS_CONSUMER=========CP
    13.12.2002 12:11:27
    27648
    Prg
    SAPLTHFB
    18.12.2004 11:36:24
    293888
    Prg
    CL_DYNAMIC_GUI_EXTENSIONS=====CP
    14.02.2002 14:22:46
    33792
    Prg
    CL_GUI_DATAMANAGER============CP
    18.12.2004 09:49:48
    69632
    Prg
    CL_ABAP_CHAR_UTILITIES========CP
    13.12.2002 12:13:57
    11264
    Typ
    MARD
    15.11.2000 17:38:50
    8192
    Prg
    RSDBSPVD
    18.12.2004 09:35:18
    73728
    Typ
    RVARI
    30.03.1998 09:40:50
    3072
    Typ
    RSVARIVDAT
    04.04.1995 16:12:54
    2048
    Typ
    ZLOCKPGM
    11.02.2006 09:28:47
    2048
    Prg
    %_CCXTAB
    14.02.2002 14:22:46
    6144
    Typ
    ZRDSSTOCK
    26.11.2007 09:44:15
    3072
    Prg
    SAPLGRAP
    18.12.2004 11:36:25
    350208
    Prg
    CL_GUI_FRONTEND_SERVICES======CP
    18.12.2004 11:36:27
    84992
    Prg
    CL_GUI_OBJECT=================CP
    13.12.2002 12:13:57
    348160
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    CL_GUI_CFW====================CP
    05.06.2002 17:02:46
    150528
    Typ
    TOLE
    29.07.1998 19:56:01
    2048
    Prg
    %_COLE2
    14.02.2002 14:22:46
    8192
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Typ
    SWCBCONT
    15.11.2000 17:55:11
    2048
    Prg
    SAPLCNTL
    14.02.2002 14:22:47
    270336
    Prg
    SAPLCNTH
    14.02.2002 14:22:47
    22528
    Typ
    FILE_TABLE
    05.01.1999 10:23:11
    1024
    Prg
    SAPLURFC
    18.12.2004 10:30:34
    16384
    Prg
    SAPLSRFC
    18.12.2004 11:36:45
    34816
    Prg
    SAPLSYST
    14.02.2002 14:22:48
    29696
    Prg
    SAPMSSY1
    14.02.2002 14:22:48
    18432
    Typ
    ARFCDATA
    04.04.1995 15:40:32
    3072
    Typ
    RFC_FIELDS
    20.08.1998 10:56:34
    2048
    Typ
    DPPROPS
    09.07.1997 23:53:23
    1024
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    SAPLCNT0
    14.02.2002 14:22:47
    30720
    Typ
    OLE_PA
    04.04.1995 16:02:19
    2048
    Typ
    ARFCRDATA
    09.11.2000 14:04:16
    4096
    Typ
    OLE_VERBS
    04.04.1995 16:02:20
    2048
    Prg
    CL_ABAP_TYPEDESCR=============CP
    18.12.2004 10:20:56
    22528
    Prg
    CL_ABAP_ELEMDESCR=============CP
    18.12.2004 10:20:34
    18432
    Prg
    CL_ABAP_DATADESCR=============CP
    18.12.2004 10:20:34
    14336
    Prg
    CL_ABAP_REFDESCR==============CP
    18.12.2004 10:20:56
    16384
    Prg
    CL_ABAP_STRUCTDESCR===========CP
    18.12.2004 10:20:56
    19456
    Prg
    CL_ABAP_COMPLEXDESCR==========CP
    18.12.2004 10:20:34
    13312
    Prg
    CL_ABAP_TABLEDESCR============CP
    18.12.2004 10:20:56
    17408
    Prg
    CL_ABAP_CLASSDESCR============CP
    18.12.2004 10:20:56
    23552
    Prg
    CL_ABAP_OBJECTDESCR===========CP
    18.12.2004 10:20:56
    26624
    Prg
    CL_ABAP_INTFDESCR=============CP
    18.12.2004 10:20:34
    19456
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    CL_ABAP_SOFT_REFERENCE========CP
    29.03.2001 16:42:12
    7168
    Prg
    CL_ABAP_REFERENCE=============CP
    14.02.2002 14:22:46
    6144
    Prg
    CL_IXML=======================CP
    13.12.2002 12:12:08
    210944
    Prg
    CL_IXML_UNKNOWN===============CP
    13.12.2002 12:12:08
    9216
    Prg
    SAPFGUICNTL_CFW
    14.02.2002 14:22:47
    12288
    Prg
    SAPLSPO1
    18.12.2004 11:37:25
    43008
    Prg
    SAPLCSTR
    18.12.2004 11:21:47
    63488
    Typ
    MAKT
    28.08.1997 08:52:19
    2048
    Typ
    KNA1
    18.12.2004 14:35:36
    22528
    Typ
    MARA
    02.07.2002 16:31:17
    19456
    Typ
    ZRDSSTOCK
    26.11.2007 09:44:15
    3072
    Prg
    CX_SY_OPEN_SQL_DB=============CP
    14.02.2002 14:22:47
    9216
    Typ
    SCX_SRCPOS
    09.11.2000 14:12:15
    1024
    Prg
    CX_SY_OPEN_SQL_ERROR==========CP
    14.02.2002 14:22:47
    8192
    Prg
    CX_SY_SQL_ERROR===============CP
    14.02.2002 14:22:47
    8192
    Prg
    CX_DYNAMIC_CHECK==============CP
    14.02.2002 14:22:47
    8192
    Prg
    CX_ROOT=======================CP
    14.02.2002 14:22:47
    9216
    Prg
    CX_NO_CHECK===================CP
    14.02.2002 14:22:47
    8192
    Prg
    CX_SY_NO_HANDLER==============CP
    14.02.2002 14:22:47
    8192
    Typ
    SYST
    04.12.2000 14:54:51
    24576
    List of internal tables
    PROGRAM=YKSD010DATA=INDT1[]
    TABH+  0(20) = FFFFFFFE974B1D20000000000000000000000026
    TABH+ 20(20) = 00000079000006CA0000007900000000FFFFFFFF
    TABH+ 40(16) = 0400000000000558001024BC00000000
    store        = 0xFFFFFFFE974B1D20
    ext1         = 0x0000000000000000
    id           = 38    (0x00000026)
    label        = 121   (0x00000079)
    fill         = 1738  (0x000006CA)
    leng         = 121   (0x00000079)
    lopc         = 0     (0x00000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000015
    occu         = 16    (0x00000010)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 7     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    lock         = 0
    shrd         = 0
    visited      = 0
    unShareable  = 0
    wasShared    = 0
    iterIsValid  = 0
    isShareable  = 0
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xFFFFFFFE974B1468
    pghook       = 0xFFFFFFFE975BCBF0
    idxPtr       = 0x0000000000000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 2480  (0x000009B0)
    lineAlloc    = 1840  (0x00000730)
    store_id     = 20    (0x00000014)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    PROGRAM=YKSD010DATA=INDT[]
    TABH+  0(20) = FFFFFFFE975B87E0FFFFFFFE9744082000000017
    TABH+ 20(20) = 0000001C000000000000007900000000FFFFFFFF
    TABH+ 40(16) = 04000000000004E8001024BC04000000
    store        = 0xFFFFFFFE975B87E0
    ext1         = 0xFFFFFFFE97440820
    id           = 23    (0x00000017)
    label        = 28    (0x0000001C)
    fill         = 0     (0x00000000)
    leng         = 121   (0x00000079)
    lopc         = 0     (0x00000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000013
    occu         = 16    (0x00000010)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 7     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    lock         = 0
    shrd         = 0
    visited      = 0
    unShareable  = 0
    wasShared    = 0
    iterIsValid  = 0
    isShareable  = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xFFFFFFFE975172E8
    pghook       = 0xFFFFFFFE975BCCB8
    idxPtr       = 0x0000000000000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 2480  (0x000009B0)
    lineAlloc    = 176   (0x000000B0)
    store_id     = 145   (0x00000091)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x0000000000000000
    hsdir        = 0x0000000000000000
    ext2         = 0xFFFFFFFE974596A8
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0xFFFFFFFE974A6B68
    delta_head   = 0000000000000000000000000000000000000000000000000000000000000000
    Directory of Application Tables
    Program
      Name................ Contents....1........2........3........4........5....+....
    YKSD010
      SYST                 |00000000000000x06Ê000000000000
      VARI                 |
      T006A                |                                                        |
      SSCRFIELDS           |
      SSCRTEXTS            |
    RSDBRUNT
      VARID                |
    SAPLICON
      ICONT                |
    SAPFSDS1
      TDCLD                |RE  DOKU   8R XX XXLIMUDOKUX x1E0XR3TRPROGX         |
    SAPLSDOD
      DOKIL                |
    SAPLLANG
      T002                 |ES1EN|
    SAPLOLEA
      TOLE                 |SAP.DATAPROVIDER.1                    {799104C5-04C5-11D0-
    SAPSHDTV
      SHDSTU               |                                                     |
      SHDSTCIU             |                                                  |
    CL_GUI_PROPS_CONSUMER=========CP
      EUDB                 |%C0009900047492F0EC1BC16DDE1000000C0A80197  0000
    CL_GUI_FRONTEND_SERVICES======CP
      EUDB                 |FE0009900047492F0EC1BC16DDE1000000C0A80197  0000
    Directory of Application Tables (Administrative Information)
    Program
      Name.......................... Time.......... Length...
    CL_GUI_FRONTEND_SERVICES======CP
      SYST                           20010612125650 00002404
      VARI                                          00002972
      T006A                                         00000056
      SSCRFIELDS                     20000323224119 00000854
      SSCRTEXTS                                     00000371
    RSDBRUNT
      VARID                                         00000132
    SAPLICON
      ICONT                                         00000065
    SAPFSDS1
      TDCLD                                         00000050
    SAPLSDOD
      DOKIL                                         00000076
    SAPLLANG
      T002                                          00000005
    SAPLOLEA
      TOLE                                          00000197
    SAPSHDTV
      SHDSTU                                        00000053
      SHDSTCIU                                      00000050
    CL_GUI_PROPS_CONSUMER=========CP
      EUDB                                          00003940
    CL_GUI_FRONTEND_SERVICES======CP
      EUDB                                          00003940
    ABAP control blocks CONT
    Include                                 Line source code
    Index Name F1 Co Par01 Par2. Par3. Par4. Tabl
    YKSD010                                   667 LOOP AT INDT1.
    1029 LOOP 05     36     37
    1033 BRAN 05 Branch to 1043
    YKSD010                                   669 INDT1-WERKS = WERKS.
    1034 mvqk 04     178    946
    YKSD010                                   670 INDT1-DAT1 = VDFRM.
    1036 mvqk 08     162    982
    YKSD010                                   671 INDT1-DAT2 = VLDTO.
    1038 mvqk 08     170    1022
    YKSD010                                   675 MODIFY INDT1.
    1040 TMOD 04     36     37
    YKSD010                                   677 ENDLOOP.
    1042 BRAX 01 Branch to 1029
    YKSD010                                   685 INSERT ZRDSSTOCK FROM TABLE IN
    1043 SQLS 0B
    1044 SQLS 00     107
    1045 PAR1 00     131
    1046 SQLS 39     1
    1047 SQLS 39     37
    >>>>> SQLS 1D     36
    YKSD010                                   701 LOOP AT INDT1.
    1049 LOOP 03 79  36     37
    1053 LOOP 05     36     37
    1057 BRAN 05 Branch to 1111
    YKSD010                                   703 AT LAST.
    1058 CNTL 04
    1062 BRAN 03 Branch to 1080
    YKSD010                                   705 MESSAGE I004.
    1063 CATC 08
    1064 MOVL 00  2  58     21
    End of runtime analysis
    Regards
    Prajwal.K

    Refer Amit's reply -
    Exception occurred which is assigned to the class 'CX_SY_OPEN_SQL_DB',
    Regards,
    Amit
    Reward all helpful replies.

  • Runtime error CONNE_IMPORT_CONVERSION_ERROR  in MM module

    Hi all,
    When we call the selection variants in the document overview in
    Transactions ME21N, ME22N, ME33N, ME51N, ME52N, ME53N, ME54N, the
    CONNE_IMPORT_CONVERSION_ERROR runtime error occurs.
    Runtime Errors         CONNE_IMPORT_CONVERSION_ERROR
    Date and Time          28.05.2007 12:38:35
    ShrtText
    Error in IMPORT statement: Change of length on conversion.
    What happened?
    Error in ABAP application program.
    The current ABAP program "AQZZ/SAPQUERY/MEMEPO==========" 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
    When importing an object, it became apparent that one or more characters
    would not be converted, or that conversion would result in a length
    change. If you add the IGNORING CONVERSION ERRORS addition, the program
    will not terminate, even though the object contains characters that
    cannot be converted.
    How to correct the error
    If the error occurred in one of your own programs or in an SAP program
    that you modified, try to correct it yourself.
    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:
    "CONNE_IMPORT_CONVERSION_ERROR" C
    "AQZZ/SAPQUERY/MEMEPO==========" or " "
    "%_IMPORT_VARI_CLNT"
    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....... "saptharishi"
    Network address.......... "192.168.7.5"
    Operating system......... "Windows NT"
    Release.................. "5.2"
    Hardware type............ "2x Intel 801586"
    Character length......... 16 Bits
    Pointer length........... 32 Bits
    Work process number...... 0
    Short dump setting....... "full"
    Database server.......... "SAPTHARISHI"
    Database type............ "MSSQL"
    Database name............ "SPS"
    Database owner........... "sps"
    Character set............ "C"
    SAP kernel............... "640"
    Created on............... "Jul 4 2005 23:49:14"
    Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version......... "SQL_Server_8.00 "
    Patch level.............. "80"
    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....................... 15678480
    Heap..................... 0
    Page..................... 32768
    MM Used.................. 12392440
    MM Free.................. 1192832
    SAP Release.............. "640"
    User and Transaction
    Client.............. 100
    User................ "BASIS"
    Language key........ "E"
    Transaction......... "ME21N "
    Program............. "AQZZ/SAPQUERY/MEMEPO=========="
    Screen.............. "SAPLMEGUI 0014"
    Screen line......... 22
    Information on where terminated
    The termination occurred in the ABAP program "AQZZ/SAPQUERY/MEMEPO=========="
    in "%_IMPORT_VARI_CLNT".
    The main program was "RM_MEPO_GUI ".
    The termination occurred in line 0 of the source code of the (Include)
    program " "
    of the source code of program " " (when calling the editor 00).
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    0
    SY-TABIX
    1
    SY-DBCNT
    1
    SY-FDPOS
    0
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    NORMAL
    SY-UCOMM
    SY-TITLE
    Create Purchase Order
    SY-MSGTY
    SY-MSGID
    SY-MSGNO
    000
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    22 FORM         AQZZ/SAPQUERY/MEMEPO==========      ???                                     0
    %_IMPORT_VARI_CLNT
    21 FORM         RSDBSPVA                            RSDBSPVA                              497
    CHECKVARI
    20 FORM         RSDBSPVD                            RSDBSPVD                              196
    IMPORT_VARIANT_STATIC
    19 FORM         SAPLALDB                            LALDBFXX                               57
    CHECK_VARIANT_UP_TO_DATE
    18 FUNCTION     SAPLALDB                            LALDBU03                              119
    SUBMIT_REPORT
    17 FORM         SAPLAQRC                            LAQRCF01                              253
    QUERY_CALL
    16 FUNCTION     SAPLAQRC                            LAQRCU10                               69
    RSAQ_QUERY_CALL
    15 METHOD       CL_ABAP_QUERY_MM==============CP    CL_ABAP_QUERY_MM==============CM00A    61
    CL_ABAP_QUERY_MM=>IF_READER_MM~READ_TABLE
    14 METHOD       SAPLMEQUERY                         LMEQUERYCI1                           431
    LCL_SAP_SQL_SEL=>IF_READER_MM~READ_TABLE
    13 METHOD       CL_TABLE_MODEL_MM=============CP    CL_TABLE_MODEL_MM=============CM00A    13
    CL_TABLE_MODEL_MM=>READ
    12 METHOD       CL_QUERY_CONTROLLER_MM========CP    CL_QUERY_CONTROLLER_MM========CM002    18
    CL_QUERY_CONTROLLER_MM=>NEW
    11 METHOD       CL_QUERY_CONTROLLER_MM========CP    CL_QUERY_CONTROLLER_MM========CM008    23
    CL_QUERY_CONTROLLER_MM=>EXECUTE
    10 METHOD       CL_SCREEN_VIEW_MM=============CP    CL_SCREEN_VIEW_MM=============CM003     9
    CL_SCREEN_VIEW_MM=>EXECUTE
    9 METHOD       CL_MODEL_VIEW_MM==============CP    CL_MODEL_VIEW_MM==============CM00O     3
    CL_MODEL_VIEW_MM=>EXECUTE
    8 METHOD       CL_TABLE_MODEL_TREE_VIEW_MM===CP    CL_TABLE_MODEL_TREE_VIEW_MM===CM00I     3
    CL_TABLE_MODEL_TREE_VIEW_MM=>EXECUTE
    7 METHOD       CL_COMPOSITE_SCREEN_VIEW_MM===CP    CL_COMPOSITE_SCREEN_VIEW_MM===CM008    10
    CL_COMPOSITE_SCREEN_VIEW_MM=>EXECUTE
    6 METHOD       CL_WINDOW_MM==================CP    CL_WINDOW_MM==================CM005    21
    CL_WINDOW_MM=>HANDLE_EVENT
    5 MODULE (PAI) SAPLMEGUI                           LMEVIEWSF01                           286
    FCODE_EXIT
    4 FORM         SAPLMEGUI                           LMEVIEWSF01                            21
    CALL_SCREEN
    3 METHOD       CL_WINDOW_MM==================CP    CL_WINDOW_MM==================CM004    17
    CL_WINDOW_MM=>SEND
    2 FUNCTION     SAPLMEGUI                           LMEGUIU04                             270
    MEGUI_MAINTAIN
    1 EVENT        RM_MEPO_GUI                         RM_MEPO_GUI                            24
    START-OF-SELECTION
    Chosen variables
    Name
    Val.
    No.      22 Ty.          FORM
    Name  %_IMPORT_VARI_CLNT
    SP$00016[]
    Table[initial]
    SP$00019[]
    Table[initial]
    SP$00018[]
    Table[initial]
    SP$00024[]
    Table[initial]
    SP$00027[]
    Table[initial]
    SP$00021[]
    Table[initial]
    SP$00022[]
    Table[initial]
    SP$00023[]
    Table[initial]
    S_MATNR[]
    Table[initial]
    S_WAERS
    22222
    00000
    00000
    00000
    SO_VDAT1[]
    Table[initial]
    SO_VDAT2[]
    Table[initial]
    SO_LIFNR[]
    Table[initial]
    %G00-EKKO-FRGZU
    22222222
    00000000
    00000000
    00000000
    P_QCOUNT
    000000
    333333
    000000
    000000
    000000
    S_NETTO1
    0.0.0.0.0.0.1.
    0000000
    000000C
    S_NETTO2
    0.0.0.0.0.0.1.
    0000000
    000000C
    S_NETTO3
    0.0.0.0.0.0.1.
    0000000
    000000C
    S_NETTO4
    0.0.0.0.0.0.1.
    0000000
    000000C
    PA_RWEIT
    00000000
    33333333
    00000000
    00000000
    00000000
    PA_GULDT
    00000000
    33333333
    00000000
    00000000
    00000000
    %_P_CLNT
    000
    333
    000
    000
    000
    %CALLED_BY_WWW
    2
    0
    0
    0
    %_DUMMY$$
    2222
    0000
    0000
    0000
    %_P_RKEY
    AQZZ/SAPQUERY/MEMEPO==========          SAP&MEPOBEST
    455525455545524444543333333333222222222254524454445522
    11AAF31015529FD5D50FDDDDDDDDDD00000000003106D50F253400
    000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000
    No.      21 Ty.          FORM
    Name  CHECKVARI
    BIT_SSCR_F2_HRHI
    4
    0000
    4000
    P_RKEY-VARIANT+0(8)
    SAP&
    5452
    3106
    0000
    0000
    SYST-REPID
    RSDBSPVA
    5544555422222222222222222222222222222222
    2342306100000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    %_SPACE
    2
    0
    0
    0
    VARISCREENS[]
    Table[initial]
    SPACE
    2
    0
    0
    0
    VSCR_T
    Table[initial]
    P_RKEY-REPORT
    AQZZ/SAPQUERY/MEMEPO==========
    4555254555455244445433333333332222222222
    11AAF31015529FD5D50FDDDDDDDDDD0000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    %_DUMMY$$
    2222
    0000
    0000
    0000
    P_RKEY
    AQZZ/SAPQUERY/MEMEPO==========          SAP&MEPOBEST
    455525455545524444543333333333222222222254524454445522
    11AAF31015529FD5D50FDDDDDDDDDD00000000003106D50F253400
    000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000
    SY
    ######X###############################&#492;#########(#################################(###&#19800;# C####
    00000050000010000000000000000000000000E0000000002000000000000000000000000000109000200050240000
    000010800000E0000000100010001000000000C0000000008000000000000000000000000000B00000800080030100
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000
    00000000000000000000000000000000000000100000000000000000000000000000000000000000000000D000000C
    L_SUBRC
    0
    0000
    0000
    L_MANDT
    000
    333
    000
    000
    000
    SY-REPID
    RSDBSPVA
    5544555422222222222222222222222222222222
    2342306100000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    No.      20 Ty.          FORM
    Name  IMPORT_VARIANT_STATIC
    SCREEN
    MEPO1211-RESLO
    4454333325454422222222222222222222222222222222222222222222222222222222222222222222222222222222
    D50F1211D253CF00000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SY-TFILL
    88
    5000
    8000
    SY-XPROG
    SAPCNVE
    5454454222222222222222222222222222222222
    3103E65000000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    %_PRINT
    000                                                                                0###
    2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    P_VARIDYN
    Table[initial]
    SYST-REPID
    RSDBSPVD
    5544555422222222222222222222222222222222
    2342306400000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    P_VARI
    Table IT_1795[42x372]
    FUNCTION-POOL=ALDBFORM=CHECK_VARIANT_UP_TO_DATEDATA=L_VARI
    Table reference: 603
    TABH+  0(20) = F05A553D00000000000000005B02000003070000
    TABH+ 20(20) = 2A00000074010000FFFFFFFF0494020080120000
    TABH+ 40( 8) = 14000000C9108000
    store        = 0xF05A553D
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 603   (0x5B020000)
    label        = 1795  (0x03070000)
    fill         = 42    (0x2A000000)
    leng         = 372   (0x74010000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000085
    occu         = 20    (0x14000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 1     (ItIndexLinear)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 0
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xB09B7F3D
    pghook       = 0xE022E13C
    idxPtr       = 0x18BD353D
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 52    (0x34000000)
    lineAlloc    = 52    (0x34000000)
    store_id     = 1192  (0xA8040000)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    P_SSCR
    Table IT_1793[88x492]
    FUNCTION-POOL=ALDBFORM=CHECK_VARIANT_UP_TO_DATEDATA=L_SSCR
    Table reference: 600
    TABH+  0(20) = 5023E13C00000000000000005802000001070000
    TABH+ 20(20) = 58000000EC010000FFFFFFFF04930200E04B0000
    TABH+ 40( 8) = 20000000C9108000
    store        = 0x5023E13C
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 600   (0x58020000)
    label        = 1793  (0x01070000)
    fill         = 88    (0x58000000)
    leng         = 492   (0xEC010000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000391
    occu         = 32    (0x20000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 1     (ItIndexLinear)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 0
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xF0D5543D
    pghook       = 0xB022E13C
    idxPtr       = 0x487A813D
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 128   (0x80000000)
    lineAlloc    = 96    (0x60000000)
    store_id     = 1190  (0xA6040000)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    P_RKEY
    AQZZ/SAPQUERY/MEMEPO==========          SAP&MEPOBEST
    455525455545524444543333333333222222222254524454445522
    11AAF31015529FD5D50FDDDDDDDDDD00000000003106D50F253400
    000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000
    P_SUBRC
    4
    0000
    4000
    %_SPACE
    2
    0
    0
    0
    SY-REPID
    RSDBSPVD
    5544555422222222222222222222222222222222
    2342306400000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    No.      19 Ty.          FORM
    Name  CHECK_VARIANT_UP_TO_DATE
    %_SPACE
    2
    0
    0
    0
    L_SSCR
    Table IT_1793[88x492]
    P_REPORT
    AQZZ/SAPQUERY/MEMEPO==========
    4555254555455244445433333333332222222222
    11AAF31015529FD5D50FDDDDDDDDDD0000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    P_SUBRC
    4
    0000
    4000
    VUV_INFO
    222222222222222222222
    000000000000000000000
    000000000000000000000
    000000000000000000000
    OPTION_NE_NUM
    9
    0000
    9000
    SY-XPROG
    SAPCNVE
    5454454222222222222222222222222222222222
    3103E65000000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    L_VARI
    Table IT_1795[42x372]
    L_VARIVDAT
    Table[initial]
    L_VARIDYN
    Table[initial]
    L_VDATDYN
    Table[initial]
    L_RKEY
    AQZZ/SAPQUERY/MEMEPO==========          SAP&MEPOBEST
    455525455545524444543333333333222222222254524454445522
    11AAF31015529FD5D50FDDDDDDDDDD00000000003106D50F253400
    000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000
    SYST-REPID
    SAPLALDB
    5454444422222222222222222222222222222222
    310C1C4200000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    No.      18 Ty.          FUNCTION
    Name  SUBMIT_REPORT
    SY-XFORM
    CONVERSION_EXIT
    444545544454545222222222222222
    3FE65239FEF5894000000000000000
    000000000000000000000000000000
    000000000000000000000000000000
    SY-REPID
    SAPLALDB
    5454444422222222222222222222222222222222
    310C1C4200000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    SY-MSGID
    22222222222222222222
    00000000000000000000
    00000000000000000000
    00000000000000000000
    OPTION_GT_NUM
    5
    0000
    5000
    SSCR_F2_SIGN
    0
    1
    SPACE
    2
    0
    0
    0
    SY-MSGNO
    000
    333
    000
    000
    000
    LIST_INFO
    0.0.0.0.0.0.1.  ######
    2222222222222222222220000000220000FF2222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000FF0000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000FF0000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000FF0000000000000000000000000000000000000000000000000000000000
    SY-MSGV1
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    RALDB-VARIANT
    SAP&MEPOBEST
    54524454445522
    3106D50F253400
    00000000000000
    00000000000000
    SY-MSGV2
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    SY-MSGV3
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    SY-MSGV4
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    00000000000000000000000000000000000000000000000000
    GL_OPTI
    0.0.0.0.1.
    2000002222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    RALDB-REPORT
    AQZZ/SAPQUERY/MEMEPO==========
    4555254555455244445433333333332222222222
    11AAF31015529FD5D50FDDDDDDDDDD0000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    L_VARIPROG
    AQZZ/SAPQUERY/MEMEPO==========
    4555254555455244445433333333332222222222
    11AAF31015529FD5D50FDDDDDDDDDD0000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    SUBRC
    4
    0000
    4000
    LIST_FIELDS[]
    Table[initial]
    No.      17 Ty.          FORM
    Name  QUERY_CALL
    GENERATED
    G
    4
    7
    0
    0
    <%_TABLE_TRDIR>
    SYST-REPID
    SAPLAQRC
    5454455422222222222222222222222222222222
    310C112300000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    SY-REPID
    SAPLAQRC
    5454455422222222222222222222222222222222
    310C112300000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    CO_ACT_DOCUMENTATION
    DOCUMENTATION
    444544454544422222222222222222
    4F35D5E4149FE00000000000000000
    000000000000000000000000000000
    000000000000000000000000000000
    CO_GENERATED
    G
    4
    7
    0
    0
    L_REPORT
    AQZZ/SAPQUERY/MEMEPO==========
    4555254555455244445433333333332222222222
    11AAF31015529FD5D50FDDDDDDDDDD0000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    CO_ACT_INFOSET_GENERATOR
    INFOSET_GENERATOR
    444454554444545452222222222222
    9E6F354F75E5214F20000000000000
    000000000000000000000000000000
    000000000000000000000000000000
    TRDIR
    AQZZ/SAPQUERY/MEMEPO==========                    ST1 1S        BASIS       20070528BASIS
    4555254555455244445433333333332222222222222222222255323522222222445452222222333333334454522222
    11AAF31015529FD5D50FDDDDDDDDDD0000000000000000000034101300000000213930000000200705282139300000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    HEADQU_TEXT3
    222222222222222222222222222222222222222222222222222222222222222222
    000000000000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000000000000000
    P_FREE_SEL
    Table[initial]
    C_WARNUNG
    3
    3
    3
    0
    0
    HEADQU_TEXT2
    222222222222222222222222222222222222222222222222222222222222222222
    000000000000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000000000000000
    P_SKIP
    X
    5
    8
    0
    0
    L_VARIANT
    SAP&MEPOBEST
    54524454445522
    3106D50F253400
    00000000000000
    00000000000000
    VARIT
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    P_SELECTIONS[]
    Table IT_1787[2x204]
    DATA=GT_SELECTION_TABLE |
    | Table reference: 594 |
    | TABH+  0(20) = 50F1823DC061E13C0000000052020000FB060000 |
    | TABH+ 20(20) = 02000000CC000000FFFFFFFF04E50100B0030000 |
    | TABH+ 40( 8) = 10000000C1248000 |
    | store        = 0x50F1823D |
    | ext1         = 0xC061E13C |
    | shmId        = 0     (0x00000000) |
    | id           = 594   (0x52020000) |
    | label        = 1787  (0xFB060000) |
    | fill         = 2     (0x02000000) |
    | leng         = 204   (0xCC000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000006 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | collHash     = 0 |
    | groupCntl    = 0 |
    | rfc          = 0 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0x686C813D |
    | pghook       = 0x00000000 |
    | idxPtr       = 0x00000000 |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 16    (0x10000000) |
    | lineAlloc    = 16    (0x10000000) |
    | store_id     = 1186  (0xA2040000) |
    | shmIsReadOnly = 0     (0x00000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | hsdir        = 0x00000000 |
    | ext2         = 0x68D77D3D |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0xB8B1E13C |
    | delta_head   = 000000000000000000000000000000000000000000000000000000000000000000000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | CLOGQU[] |
    | Table IT_1434[10x40] |
    | FUNCTION-POOL=AQRCDATA=CLOGQU[] |
    | Table reference: 315 |
    | TABH+  0(20) = F8E7013DD892F13C000000003B0100009A050000 |
    | TABH+ 20(20) = 0A00000028000000FFFFFFFF04E9010090230000 |
    | TABH+ 40( 8) = 0A000000C1048400 |
    | store        = 0xF8E7013D |
    | ext1         = 0xD892F13C |
    | shmId        = 0     (0x00000000) |
    | id           = 315   (0x3B010000) |
    | label        = 1434  (0x9A050000) |
    | fill         = 10    (0x0A000000) |
    | leng         = 40    (0x28000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000176 |
    | occu         = 10    (0x0A000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 0 |
    | collHash     = 0 |
    | groupCntl    = 0 |
    | rfc          = 0 |
    | unShareable  = 0 |
    | mightBeShared = 1 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = 0x58E6013D |
    | pghook       = 0x00000000 |
    | idxPtr       = 0x00000000 |
    | refCount     = 0     (0x00000000) |
    | tstRefCount  = 0     (0x00000000) |
    | lineAdmin    = 10    (0x0A000000) |
    | lineAlloc    = 10    (0x0A000000) |
    | store_id     = 1023  (0xFF030000) |
    | shmIsReadOnly = 0     (0x00000000) |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | hsdir        = 0x00000000 |
    | ext2         = 0xE0E93E3D |
    | >>>>> 2nd level extension part <<<<< |
    | tabhBack     = 0xA0E93E3D |
    | delta_head   = 000000000000000000000000000000000000000000000000000000000000000000000000 |
    | pb_func      = 0x00000000 |
    | pb_handle    = 0x00000000 |
    | %_DUMMY$$ |
    |  |
    | 2222 |
    | 0000 |
    | 0000 |
    | 0000 |
    | CLOGQU |
    | 00000000 |
    | 33333333222222222222 |
    | 00000000000000000000 |
    | 00000000000000000000 |
    | 00000000000000000000 |
    | SUCAT[] |
    | Table[initial] |
    | HEADBG |
    | F |
    | 4 |
    | 6 |
    | 0 |
    | 0 |
    | %_PRINT |
    | 000                                                                                0### |
    | 2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000 |
    | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
    | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
    | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
    | No.      16 Ty.          FUNCTION |
    | Name  RSAQ_QUERY_CALL |
    | DATA_TO_MEMORY |
    | X |
    | 5 |
    | 8 |
    | 0 |
    | 0 |
    | DBACC |
    | 0 |
    | 0000 |
    | 0000 |
    | FREE_SELECTIONS |
    | Table[initial] |
    | QUERY |
    | MEPO |
    | 44542222222222 |
    | D50F0000000000 |
    | 00000000000000 |
    | 00000000000000 |
    | SKIP_SELSCREEN |
    | X |
    | 5 |
    | 8 |
    | 0 |
    | 0 |
    | USERGROUP |
    | /SAPQUERY/ME |
    | 254555455244 |
    | F31015529FD5 |
    | 000000000000 |
    | 000000000000 |
    | VARIANT |
    | SAP&MEPOBEST |
    | 54524454445522 |
    | 3106D50F253400 |
    | 00000000000000 |
    | 00000000000000 |
    | WORKSPACE |
    | X |
    | 5 |
    | 8 |
    | 0 |
    | 0 |
    | LISTTEXT |
    |  |
    | 222222222222222222222222222222222222222222222222222222222222 |
    | 000000000000000000000000000000000000000000000000000000000000 |
    | 000000000000000000000000000000000000000000000000000000000000 |
    | 000000000000000000000000000000000000000000000000000000000000 |
    | LIST_ID |
    |  |
    | 222 |
    | 000 |
    | 000 |
    | 000 |
    | PROGRAM |
    |  |
    | 2222222222222222222222222222222222222222 |
    | 0000000000000000000000000000000000000000 |
    | 0000000000000000000000000000000000000000 |
    | 0000000000000000000000000000000000000000 |
    | REF_TO_LDATA |
    | 0.0.0.0.0.0.0.1.  |
    | C0000000 |
    | F0000000 |
    | USED_VARIANT |
    |  |
    | 22222222222222 |
    | 00000000000000 |
    | 00000000000000 |
    | 00000000000000 |
    | FPAIRS[] |
    | Table IT_1788[0x18] |
    | CLASS=CL_ABAP_QUERY_MMMETHOD=IF_READER_MM~READ_TABLEDATA=LT_FPAIRS |
    | Table reference: 598 |
    | TABH+  0(20) = 0000000038F36E3D0000000056020000FC060000 |
    | TABH+ 20(20) = 0000000012000000FFFFFFFF04E50100300B0000 |
    | TABH+ 40( 8) = 10000000C1248000 |
    | store        = 0x00000000 |
    | ext1         = 0x38F36E3D |
    | shmId        = 0     (0x00000000) |
    | id           = 598   (0x56020000) |
    | label        = 1788  (0xFC060000) |
    | fill         = 0     (0x00000000) |
    | leng         = 18    (0x12000000) |
    | loop         = -1    (0xFFFFFFFF) |
    | xtyp         = TYPE#000046 |
    | occu         = 16    (0x10000000) |
    | access       = 1     (ItAccessStandard) |
    | idxKind      = 0     (ItIndexNone) |
    | uniKind      = 2     (ItUniqueNon) |
    | keyKind      = 1     (default) |
    | cmpMode      = 2     (cmpSingleMcmpR) |
    | occu0        = 1 |
    | collHash     = 0 |
    | groupCntl    = 0 |
    | rfc          = 0 |
    | unShareable  = 0 |
    | mightBeShared = 0 |
    | sharedWithShmTab = 0 |
    | isShmLockId  = 0 |
    | gcKind       = 0 |
    | isUsed       = 1 |
    | >>>>> Shareable Table Header Data <<<<< |
    | tabi         = Not allocated |
    | pghook       = Not allocated |
    | idxPtr       = Not allocated |
    | refCount     = Not allocated |
    | tstRefCount  = Not allocated |
    | lineAdmin    = Not allocated |
    | lineAlloc    = Not allocated |
    | store_id     = Not allocated |
    | shmIsReadOnly = Not allocated |
    | >>>>> 1st level extension part <<<<< |
    | regHook      = 0x00000000 |
    | hsdir        = 0x00000000 |
    | ext2         = 0x90F3283D

    correct the length in the program, by supplying same type as appears in database table.

  • ABAP Runtime Error while executing planning folder

    Hi experts.
    We have a situation where I can access our planning folders but that's not the case for one of our user. She encountered with an ABAP Runtime Error as follow:
    Appreciate if anyone can help me out with this.
    Runtime Error          RAISE_EXCEPTION
    Date and Time          20.04.2007 16:50:23
    ShrtText
    Exception condition "X_MESSAGE" 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 "SAPLRSSBR" raised the exception
    condition "X_MESSAGE".
    Since the exception was not intercepted by a superior program
    in the hierarchy, processing was terminated.
    Short description of exception condition:
    Cancel
    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
    "SAPLRSSBR" or "LRSSBRU03"
    "RSSB_AUTHORITY_IOBJVL_CHECK"
    or
    "SAPLRSSBR" "X_MESSAGE"
    or
    "UPB_PM_CUST_START " "X_MESSAGE"
    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....... "S53KJ165"
    Network address.......... "10.1.53.165"
    Operating system......... "AIX"
    Release.................. "5.3"
    Hardware type............ "00C3A11F4C00"
    Character length......... 8 Bits
    Pointer length........... 64 Bits
    Work process number...... 3
    Short dump setting....... "full"
    Database server.......... "S53KJ170"
    Database type............ "ORACLE"
    Database name............ "BWP"
    Database owner........... "SAPBWP"
    Character set............ "en_US.ISO8859-1"
    SAP kernel............... "640"
    Created on............... "Oct 29 2006 20:42:11"
    Created in............... "AIX 1 5 00538A4A4C00"
    Database version......... "OCI_920 "
    Patch level.............. "155"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE
    10.2.0.."
    SAP database version..... "640"
    Operating system......... "AIX 1 5, AIX 2 5, AIX 3 5"
    Memory usage.............
    Roll..................... 16128
    EM....................... 16759712
    Heap..................... 0
    Page..................... 57344
    MM Used.................. 10079624
    MM Free.................. 2487240
    SAP Release.............. "640"
    User and Transaction
    Client.............. 350
    User................ "S51643"
    Language key........ "E"
    Transaction......... "UPSPL "
    Program............. "SAPLRSSBR"
    Screen.............. "SAPLUPB_PM_ALV 1000"
    Screen line......... 2
    Information on where terminated
    The termination occurred in the ABAP program "SAPLRSSBR" in
    "RSSB_AUTHORITY_IOBJVL_CHECK".
    The main program was "UPB_PM_CUST_START ".
    The termination occurred in line 416 of the source code of the (Include)
    program "LRSSBRU03"
    of the source code of program "LRSSBRU03" (when calling the editor 4160).
    Source Code Extract
    Line
    SourceCde
    386
    l_s_range-low  = l_activity.
    387
    APPEND l_s_range TO l_sx_auth_check_detail-range.
    388
    INSERT l_sx_auth_check_detail INTO TABLE <l_sx_auth_check>-auth_check_detail.
    389
    390
    CALL FUNCTION 'RSSB_AUTHORITY_IOBJVL_REDUCED'
    391
    EXPORTING
    392
    i_infocube              = g_sx_iobjvl_check-infocube
    393
    i_uname                 = l_uname
    394
    i_th_hierarchy          = g_sx_iobjvl_check-hierarchy
    395
    i_message               = i_message
    396
    i_activity_force_check  = i_activity_force_check
    397
    CHANGING
    398
    c_tsx_auth_check_detail = <l_sx_auth_check>-auth_check_detail
    399
    c_tx_no_auth            = l_tx_no_auth
    400
    c_ts_auth_tlevel        = e_ts_auth_tlevel
    401
    EXCEPTIONS
    402
    user_not_authorized     = 1
    403
    auth_check_failure      = 2
    404
    auth_check_error        = 3
    405
    inherited_error         = 4
    406
    x_message               = 5.
    407
    IF sy-subrc = 0.
    408
    REFRESH l_tx_no_auth.
    409
      CR 20050826 HW873685 SP29 Part 2/3 begin
    410
      SY-SUBRC = 2 means Auth-Obj missing in users profiles, we need this later
    411
    ELSEIF sy-subrc = 2.
    412
    ao_missing = rs_c_true.
    413
    e_subrc = 2.
    414
      CR 20050826 HW873685 SP29 Part 2/3 end
    415
    ELSEIF sy-subrc = 5.
    >>>>>
    RAISE x_message.
    417
    ELSE.
    418
    e_subrc = 2.
    419
    ENDIF.
    420
    421
      correct the kid now
    422
    LOOP AT l_tx_no_auth INTO l_sx_no_auth.
    423
    l_sx_no_auth-kid = <l_sx_auth_check>-kid.
    424
    APPEND l_sx_no_auth TO  e_tx_no_auth.
    425
    ENDLOOP.
    426
    427
    ENDLOOP.
    428
    429
    End LOOP: Check all SUBNR (FEMS)
    430
    431
    432
    CR 20050826 HW873685 SP29 Part 3/3 begin
    433
    If an Auth-Obj. is missing, no SUBNR can be authorized. Due to OLAP-logic
    434
    this means empty no_auth table
    435
    IF ao_missing = rs_c_true.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    5
    SY-INDEX
    1
    SY-TABIX
    0
    SY-DBCNT
    0
    SY-FDPOS
    1
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    210
    SY-UCOMM
    SELECT
    SY-TITLE
    Execute All Cost Element
    SY-MSGTY
    E
    SY-MSGID
    R7
    SY-MSGNO
    057
    SY-MSGV1
    0CO_AREA
    SY-MSGV2
    A
    SY-MSGV3
    SY-MSGV4
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    40 FUNCTION     SAPLRSSBR                           LRSSBRU03                             416
    RSSB_AUTHORITY_IOBJVL_CHECK
    39 FORM         SAPLRSDRC                           LRSDRCF15                             113
    AUTHORITY_CHECK
    38 FORM         SAPLRSDRC                           LRSDRCF27                              57
    BASIC_QUERY_DATA_GET_ROLAP
    37 FUNCTION     SAPLRSDRC                           LRSDRCU05                              44
    RSDRC_BASIC_QUERY_DATA_GET
    36 FUNCTION     SAPLRSDRC                           LRSDRCU15                             189
    RSDRC_BASIC_CUBE_DATA_GET
    35 FORM         SAPLRSDRC                           LRSDRCF25                             373
    DATA_GET
    34 FUNCTION     SAPLRSDRC                           LRSDRCU02                             249
    RSDRC_CUBE_DATA_GET
    33 FUNCTION     SAPLRSDRI                           LRSDRIU01                             352
    RSDRI_INFOPROV_READ
    32 FORM         /1SEM/UPCBW_350TMWPA01              UPC_BWINTERFC__FIX                    174
    DATA_READ
    31 FUNCTION     SAPLUPCBW                           LUPCBWU06                              56
    UPC_BW_DATA_READ
    30 FUNCTION     SAPLUPC1                            LUPC1U06                               67
    UPC_DATA_READ
    29 METHOD       /1SEM/CL_DATA_350TMWPA01======CP    UPC_DATA_READ_DB                       25
    /1SEM/CL_DATA_350TMWPA01=>IF_SEM_DATA_INTERNAL~READ_DB
    28 METHOD       /1SEM/CL_BUFFER_350TMWPA01====CP    UPC_BUFFER_GET                        167
    /1SEM/CL_BUFFER_350TMWPA01=>IF_SEM_BUFFER~GET
    27 METHOD       /1SEM/CL_BUFFER_350TMWPA01====CP    UPC_BUFFER_READ                         5
    /1SEM/CL_BUFFER_350TMWPA01=>IF_SEM_BUFFER~READ
    26 METHOD       /1SEM/CL_DATA_350TMWPA01======CP    UPC_DATA_READ                          46
    /1SEM/CL_DATA_350TMWPA01=>IF_SEM_DATA~READ
    25 FORM         45AJEHYBGH37F61DTX80Q9ZFP           UPP_PLAN                              395
    READ_TRANSACTION_DATA
    24 FORM         45AJEHYBGH37F61DTX80Q9ZFP           UPP_PLAN                              561
    GET_DATA
    23 FORM         45AJEHYBGH37F61DTX80Q9ZFP           UPP_PLAN                              800
    EC500_SELECT_DATABASE
    22 FORM         SAPLUPP_PP_KERNEL                   LUPP_PP_KERNELF97                     575
    SELECT_DATABASE
    21 FORM         SAPLUPP_PP_KERNEL                   LUPP_PP_KERNELF97                     464
    SELECT_AND_FIND_HEADER_COMBI
    20 FORM         SAPLUPP_PP_KERNEL                   LUPP_PP_KERNELF97                     217
    LOGICAL_SCREEN_FILL_HEADER
    19 FORM         SAPLUPP_PP_KERNEL                   LUPP_PP_KERNELF97                      60
    LOGICAL_SCREEN_FILL
    18 FUNCTION     SAPLUPP_PP_KERNEL                   LUPP_PP_KERNELU01                     114
    UPP_PP_KERNEL_CONSTRUCTOR
    17 METHOD       CL_UPB_PL_ALV=================CP    CL_UPB_PL_ALV=================CM01E   176
    CL_UPB_PL_ALV=>CONSTRUCTOR
    16 FORM         SAPLUPB_PM_ALV                      LUPB_PM_ALVF01                        623
    OUTPUT_CREATE
    15 FORM         SAPLUPB_PM_ALV                      LUPB_PM_ALVF01                        202
    OUTPUT_INIT
    14 FORM         SAPLUPB_PM_ALV                      LUPB_PM_ALVF01                       1062
    OUTPUT_PROCESS
    13 FORM         SAPLUPB_PM_ALV                      LUPB_PM_ALVF01                       1225
    OUTPUT_SWITCH_TO_LAYOUT
    12 FORM         SAPLUPB_PM_ALV                      LUPB_PM_ALVF05                        748
    INIT_CONTROLS
    11 MODULE (PBO) SAPLUPB_PM_ALV                      LUPB_PM_ALVO01                         13
    STATUS
    10 FUNCTION     SAPLUPB_PM_ALV                      LUPB_PM_ALVU01                         24
    UPB_PM_ALV_START
    9 METHOD       CL_UPB_PM_APPLC===============CP    CL_UPB_PM_APPLC===============CM00A    88
    CL_UPB_PM_APPLC=>EXECUTE_PM
    8 METHOD       CL_UPB_PM_ADMIN===============CP    CL_UPB_PM_ADMIN===============CM00L    76
    CL_UPB_PM_ADMIN=>PAI_ONE_NODE
    7 METHOD       CL_UPB_PM_ADMIN===============CP    CL_UPB_PM_ADMIN===============CM00L    23
    CL_UPB_PM_ADMIN=>PAI_ONE_NODE
    6 METHOD       CL_UPB_PM_ADMIN===============CP    CL_UPB_PM_ADMIN===============CM003   121
    CL_UPB_PM_ADMIN=>PAI
    5 FORM         SAPLUPB_PM                          LUPB_PMF04                             80
    USER_COMMAND_0210
    4 MODULE (PAI) SAPLUPB_PM                          LUPB_PMI04                             11
    USER_COMMAND_0210
    3 FUNCTION     SAPLUPB_PM                          LUPB_PMU22                             86
    UPB_PM_MAIN
    2 FORM         UPB_PM_CUST_START                   UPB_PM_START_ADMIN                    251
    PM_START
    1 EVENT        UPB_PM_CUST_START                   UPB_PM_START_ADMIN                     14
    START-OF-SELECTION
    Chosen variables
    Name
    Val.
    No.      40 Ty.          FUNCTION
    Name  RSSB_AUTHORITY_IOBJVL_CHECK
    I_ACTIVITY
    03
    33
    03
    I_ACTIVITY_FORCE_CHECK
    2
    0
    I_MESSAGE
    X
    5
    8
    I_SX_IOBJVL_CHECK
    ZCTMWMA05                                                                                ####
    5454544332222222222222222222222222222222222222222222222222222222222222222222222222222222220000
    A34D7D1050000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    I_UNAME
    S51643
    533333222222
    351643000000
    E_SUBRC
    0
    0000
    0000
    E_TS_AUTH_TLEVEL
    Table[initial]
    E_TX_NO_AUTH
    Table[initial]
    RSSB_C_AUTH_KEYFIGURE
    1KYFNM
    3454442222
    1B96ED0000
    SY-REPID
    SAPLRSSBR
    5454555452222222222222222222222222222222
    310C233220000000000000000000000000000000
    SYST-REPID
    SAPLRSSBR
    5454555452222222222222222222222222222222
    310C233220000000000000000000000000000000
    %_SPACE
    2
    0
    RS_C_RANGE_SIGN
    IE
    44
    95
    SY-SUBRC
    5
    0000
    0005
    L_TX_NO_AUTH
    Table[initial]
    SY-XFORM
    CONVERSION_EXIT
    444545544454545222222222222222
    3FE65239FEF5894000000000000000
    SYST
    0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1. ###################################################à##############
    0000000000000000000000000002000000000000000000000000000000000000000000000000000E00000000000000
    0001000000000000000000000000000000000000000000010001000000010000000000000000000000000000000000
    L_SX_NO_AUTH
    ############ÿÿÿÿ
    000000000000FFFF
    000000000000FFFF
    L_SX_NO_AUTH-KID
    Table[initial]
    <L_SX_AUTH_CHECK>-KID
    Table IT_33029[1x4]
    FUNCTION-POOL=RSSBRDATA=G_SX_IOBJVL_CHECK-AUTH_CHECK[1]-KID
    Table reference: 2052
    TABH+  0(20) = 07000000908D2FD0000000000000000000000000
    TABH+ 20(20) = 00000804000081050000000100000004FFFFFFFF
    TABH+ 40(16) = 040002F1000003480001432821000000
    store        = 0x07000000908D2FD0
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 2052  (0x00000804)
    label        = 33029 (0x00008105)
    fill         = 1     (0x00000001)
    leng         = 4     (0x00000004)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000003
    occu         = 1     (0x00000001)
    access       = 2     (ItAccessSorted)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 1     (ItUnique)
    keyKind      = 2     (table_line)
    cmpMode      = 5     (cmpSingle)
    occu0        = 0
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x07000000908E0CC8
    pghook       = 0x0000000000000000
    idxPtr       = 0x0000000000000000
    refCount     = 1     (0x00000001)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 1     (0x00000001)
    lineAlloc    = 1     (0x00000001)
    store_id     = 6998  (0x00001B56)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    No.      39 Ty.          FORM
    Name  AUTHORITY_CHECK
    I_TH_SFC
    Table IT_32090[14x128]
    FUNCTION=RSDRC_BASIC_CUBE_DATA_GETDATA=L_TH_SFC
    Table reference: 1757
    TABH+  0(20) = 070000009052D8F8070000009081372800000000
    TABH+ 20(20) = 000006DD00007D5A0000000E00000080FFFFFFFF
    TABH+ 40(16) = 040002DB000017C80010839401000000
    store        = 0x070000009052D8F8
    ext1         = 0x0700000090813728
    shmId        = 0     (0x00000000)
    id           = 1757  (0x000006DD)
    label        = 32090 (0x00007D5A)
    fill         = 14    (0x0000000E)
    leng         = 128   (0x00000080)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000099
    occu         = 16    (0x00000010)
    access       = 4     (ItAccessHashed)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 1     (ItUnique)
    keyKind      = 3     (user defined)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x0700000090811F18
    pghook       = 0x0000000000000000
    idxPtr       = 0x070000009052D950
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x00000010)
    lineAlloc    = 16    (0x00000010)
    store_id     = 6872  (0x00001AD8)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x0700000090813588
    hsdir        = 0x0000000000000000
    ext2         = 0x0000000000000000
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    CL_RSO_REPOSITORY=>P_C_BAL_LOG_SUBOBJEC_INST
    SY-REPID
    SAPLRSDRC
    5454554542222222222222222222222222222222
    310C234230000000000000000000000000000000
    L_S_RANGE-LOW
    1ROWCOUNT
    354544545222222222222222222222222222222222222222222222222222
    12F73F5E4000000000000000000000000000000000000000000000000000
    <L_S_SFK>-KYFNM
    1ROWCOUNT
    354544545222222222222222222222
    12F73F5E4000000000000000000000
    RSDRC_C_QUERYMODE-CUMULATIVE
    C
    4
    3
    S_S_COB_PRO
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    L_SX_SELDR-RANGE+8(8)
    Table IT_32110[2x136]
    FUNCTION-POOL=RSDRCFORM=AUTHORITY_CHECKDATA=L_SX_SELDR
    Table reference: 1902
    TABH+  0(20) = 0700000090813D10000000000000000000000000
    TABH+ 20(20) = 0000076E00007D6E0000000200000088FFFFFFFF
    TABH+ 40(16) = 040002DB00001AA00010254421000000
    store        = 0x0700000090813D10
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 1902  (0x0000076E)
    label        = 32110 (0x00007D6E)
    fill         = 2     (0x00000002)
    leng         = 136   (0x00000088)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000112
    occu         = 16    (0x00000010)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 2     (table_line)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x07000000908800F8
    pghook       = 0x0000000000000000
    idxPtr       = 0x0000000000000000
    refCount     = 1     (0x00000001)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x00000010)
    lineAlloc    = 16    (0x00000010)
    store_id     = 6876  (0x00001ADC)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    L_S_RANGE
    IEQ1ROWCOUNT
    4453545445452222222222222222222222222222222222222222222222222222222222222222222222222222222222
    95112F73F5E40000000000000000000000000000000000000000000000000000000000000000000000000000000000
    L_TSX_SELDR
    Table IT_32094[13x120]
    FUNCTION-POOL=RSDRCFORM=AUTHORITY_CHECKDATA=L_TSX_SELDR
    Table reference: 1870
    TABH+  0(20) = 0700000090813AE007000000908DF36800000000
    TABH+ 20(20) = 0000074E00007D5E0000000D00000078FFFFFFFF
    TABH+ 40(16) = 040002DB000018A8000C4B9C01000000
    store        = 0x0700000090813AE0
    ext1         = 0x07000000908DF368
    shmId        = 0     (0x00000000)
    id           = 1870  (0x0000074E)
    label        = 32094 (0x00007D5E)
    fill         = 13    (0x0000000D)
    leng         = 120   (0x00000078)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000103
    occu         = 12    (0x0000000C)
    access       = 2     (ItAccessSorted)
    idxKind      = 1     (ItIndexLinear)
    uniKind      = 1     (ItUnique)
    keyKind      = 3     (user defined)
    cmpMode      = 3     (cmpSingleMcmpU)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x070000009087FB40
    pghook       = 0x0700000090813D68
    idxPtr       = 0x0700000090813DA0
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 36    (0x00000024)
    lineAlloc    = 36    (0x00000024)
    store_id     = 6875  (0x00001ADB)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x07000000908DED00
    hsdir        = 0x0000000000000000
    ext2         = 0x0000000000000000
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    L_SX_SELDR
    00001KYFNM                          ########300   0     ####ÿÿÿÿ####  0 ########        ####ÿÿ
    333334544422222222222222222222222222000000003332223222220000FFFF0000223200000000222222220000FF
    00001B96ED00000000000000000000000000000000003000000000000000FFFF0000000000000000000000000000FF
    G_RUNNING
    0
    0000
    0000
    L_BASICCUBE
    ZCTMWMA05
    545454433222222222222222222222
    A34D7D105000000000000000000000
    L_TH_FREE
    Table IT_32093[6x30]
    FUNCTION-POOL=RSDRCFORM=AUTHORITY_CHECKDATA=L_TH_FREE
    Table reference: 1763
    TABH+  0(20) = 0700000090813760000000000000000000000000
    TABH+ 20(20) = 000006E300007D5D000000060000001EFFFFFFFF
    TABH+ 40(16) = 040002DB00001B800010831401000000
    store        = 0x0700000090813760
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 1763  (0x000006E3)
    label        = 32093 (0x00007D5D)
    fill         = 6     (0x00000006)
    leng         = 30    (0x0000001E)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000116
    occu         = 16    (0x00000010)
    access       = 4     (ItAccessHashed)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 1     (ItUnique)
    keyKind      = 2     (table_line)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x07000000908137B8
    pghook       = 0x0000000000000000
    idxPtr       = 0x07000000908139B0
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x00000010)
    lineAlloc    = 16    (0x00000010)
    store_id     = 6874  (0x00001ADA)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    SYST-REPID
    SAPLRSDRC
    5454554542222222222222222222222222222222
    310C234230000000000000000000000000000000
    L_SX_IOBJVL_CHECK
    ZCTMWMA05                                                                                ####
    5454544332222222222222222222222222222222222222222222222222222222222222222222222222222222220000
    A34D7D1050000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    L_ACTIVITY
    03
    33
    03
    SY-UNAME
    S51643
    533333222222
    351643000000
    S_MULTICUBE
    222222222222222222222222222222
    000000000000000000000000000000
    E_SUBRC
    0
    0000
    0000
    %_VIASELSCR
    0
    4
    S_CHANM
    222222222222222222222222222222
    000000000000000000000000000000
    I_RAISE_EXCEPTION
    X
    5
    8
    RS_C_TRUE
    X
    5
    8
    SCREEN
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    No.      38 Ty.          FORM
    Name  BASIC_QUERY_DATA_GET_ROLAP
    E_T_DATA
    Table[initial]
    E_END_OF_DATA
    2
    0
    C_FIRST_CALL
    X
    5
    8
    S_S_QPARAM
    XX 0 ##ÿÿÿÿ####DB-VIEW                                               R ###dABAP-TABLE
    25523200FFFF0000442544522222222222222222222222222222222222222222222222520006444525444422222222
    08800000FFFF000042D6957000000000000000000000000000000000000000000000002000041210D412C500000000
    C_S_QPARAM-AUTHORITY_CHECK
    R
    5
    2
    RSDRC_C_AUTHCHK-NONE
    2
    0
    RSJOBINFO
    00000000000000                                  ####
    222222222222222222222222222222223333333333333322222222222222222222222222222222220000
    000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    RSD_C_DPANM
    0REQUID                       0CHNGID                       0RECORDTP                     0IOB
    3545544222222222222222222222223444444222222222222222222222223544454552222222222222222222223444
    025159400000000000000000000000038E794000000000000000000000000253F244000000000000000000000009F2
    SPACE
    2
    0
    I_BASICCUBE
    ZCTMWMA05
    545454433222222222222222222222
    A34D7D105000000000000000000000
    I_TH_SFC
    Table IT_32090[14x128]
    I_TH_SFK
    Table IT_32091[2x128]
    FUNCTION=RSDRC_BASIC_CUBE_DATA_GETDATA=L_TH_SFK
    Table reference: 1767
    TABH+  0(20) = 0700000090887AC00700000090813CD800000000
    TABH+ 20(20) = 000006E700007D5B0000000200000080FFFFFFFF
    TABH+ 40(16) = 040002DB000018380010839421000000
    store        = 0x0700000090887AC0
    ext1         = 0x0700000090813CD8
    shmId        = 0     (0x00000000)
    id           = 1767  (0x000006E7)
    label        = 32091 (0x00007D5B)
    fill         = 2     (0x00000002)
    leng         = 128   (0x00000080)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000101
    occu         = 16    (0x00000010)
    access       = 4     (ItAccessHashed)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 1     (ItUnique)
    keyKind      = 3     (user defined)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x0700000090884C90
    pghook       = 0x0000000000000000
    idxPtr       = 0x0700000090827A98
    refCount     = 1     (0x00000001)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x00000010)
    lineAlloc    = 16    (0x00000010)
    store_id     = 6857  (0x00001AC9)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x0700000090813B38
    hsdir        = 0x0000000000000000

    Have you check or trace Authorization??
    In DUMP:
    Information on where terminated
    The termination occurred in the ABAP program "SAPLRSSBR" in
    "RSSB_AUTHORITY_IOBJVL_CHECK".
    The main program was "UPB_PM_CUST_START ".

  • ABAP Runtime error while activating Update rules.

    Hi Gurus,
    Actually we are in NW 2004's SP9.
    While activating the update rules of cube "0PY_PPC01" it is going to ABAP runtime error. It is giving the key words like "MESSAGE_TYPE_X"
    "%_T005K2" or "INSTANTIATE". And i apply NOTEs also i am unable to fix it.
    Can any one give  correct NOTE number that can fix it or any suggestions.
    Thanks in advance.
    Thanks
    Raju.k

    Hi Sven,
    Now we are also in SP11, But the thing is all the other UR are working fine Except
    this UR. Even there is no perticular NOTE number for this.
    Thanks
    Raju.k

  • Help me Please !!!! Runtime errors         DBIF_RSQL_SQL_ERROR      alway

    Hi guru's,
    I have a genric data source with function module which feeds data to a genric ods in bw.
    But at time of data upload i see quality status in manage of ods green saying (0 of 0 records extracted) but it asks me to check dump in st22 which is as follows
    Runtime Errors         DBIF_RSQL_SQL_ERROR
    Exception              CX_SY_OPEN_SQL_DB
           Occurred on     30.01.2008 at 10:41:31
    An SQL error occurred when accessing a table.
    What happened?
    What can you do?
    Make a note of the actions and input which 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.
    Error analysis
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was
    neither
    caught nor passed along using a RAISING clause, in the procedure
    "STORAGE_LOC_GET" "(METHOD)"
    Since the caller of the procedure could not have expected this exception
    to occur, the running program was terminated.
    The reason for the exception is:
    How to correct the error
    The exception must either be prevented, caught within the procedure
    "STORAGE_LOC_GET"
    "(METHOD)", or declared in the procedure's RAISING clause.
    To prevent the exception, note the following:
    Database error text........: "ORA-04030: out of process memory when trying to
    allocate 1332 bytes (callheap,qkkele)"
    Internal call code.........: "[RSQL/READ/T001L ]"
    Please check the entries in the system log (Transaction SM21).
    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:
    "DBIF_RSQL_SQL_ERROR" CX_SY_OPEN_SQL_DBC
    "SAPLMIGO" or "########################################"
    "STORAGE_LOC_GET"
    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.
    System environment
    SAP Release.............. "620"
    Application server....... "TOGR3PRD1"
    Network address.......... "10.1.9.9"
    Operating system......... "Windows NT"
    Release.................. "5.2"
    Hardware type............ "8x Intel 801586"
    Character length......... 8 Bits
    Pointer length........... 32 Bits
    Work process number...... 1
    Short dump setting....... "full"
    Database server.......... "TOGR3PRD2"
    Database type............ "ORACLE"
    Database name............ "PRD"
    Database owner........... "SAPPRD"
    Character set............ "Thai_Thailand.874"
    SAP kernel............... "640"
    Created on............... "Sep 19 2005 00:05:54"
    Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version......... "OCI_920_SHARE "
    Patch level.............. "91"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 8.1.7.., ORACLE 9.2.0.., ORACLE
    10.1.0.."
    SAP database version..... "640"
    Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
    User, transaction...
    Client.............. 900
    User................ 0060302
    Language key........ "E"
    Transaction......... "MIGO "
    Program............. "SAPLMIGO"
    Screen.............. "SAPLMIGO 0001"
    Screen line......... 15
    Information on where terminated
    The termination occurred in the ABAP program "SAPLMIGO" in "STORAGE_LOC_GET".
    The main program was "SAPLMIGO ".
    The termination occurred in line 0 of the source code of the (Include)
    program "########################################"
    of the source code of program "########################################" (when
    calling the editor 00).
    Processing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in
    the
    procedure "STORAGE_LOC_GET" "(METHOD)" but was not handled locally, not
    declared in the
    RAISING clause of the procedure.
    The procedure is in the program "SAPLMIGO ". Its source code starts in line 158
    of the (Include) program "LMIGOBU2 ".
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 4                             SY-INDEX 1
    SY-TABIX 0                             SY-DBCNT 1
    SY-FDPOS 1                             SY-LSIND 0
    SY-PAGNO 1                             SY-LINNO 1
    SY-COLNO 1                             SY-PFKEY MIGO_STATUS
    SY-UCOMM MIGO_OK_TAKE_VALUE
    SY-TITLE Goods Issue Others - 0060302 &#3627;&#3609;.&#3649;&#3612;&#3609;&#3585;&#3649;&#3621;&#3632;&#3592;&#3609;&#3607;.&#3588;&#3621;&#3633;&#3591;&#3626;&#3636;&#3609;&#3588;&#3657;&#3634;,&#3588;&#3621;
    SY-MSGTY E                             SY-MSGID MICK
    SY-MSGNO 004                           SY-MSGV1
    SY-MSGV2                               SY-MSGV3
    SY-MSGV4
    Active calls / events
    No.... Type........ Name..........................
           Program
           Include                                  Line
           Class
         7 METHOD       STORAGE_LOC_GET
           SAPLMIGO
           LMIGOBU2                                   173
           LCL_MIGO_BUFFER
         6 METHOD       LINE_CHECK
           SAPLMIGO
           LMIGOKL4                                   217
           LCL_MIGO_KERNEL
         5 METHOD       LINE_MODIFY
           SAPLMIGO
           LMIGOKL1                                   123
           LCL_MIGO_KERNEL
         4 METHOD       VALUECOPY
           SAPLMIGO
           LMIGOTV3                                   370
           LCL_MIGO_TABLEVIEW
         3 METHOD       LIF_MIGO_FRAME~OKCODE_HANDLER
           SAPLMIGO
           LMIGOTV2                                   174
           LCL_MIGO_TABLEVIEW
         2 METHOD       OKCODE_DISPATCH
           SAPLMIGO
           LMIGOFR2                                   171
           LCL_MIGO_FRAME
         1 MODULE (PAI) PAI_OKCODE_DISPATCH
           SAPLMIGO
           LMIGOPAI                                    11
    Chosen variables
         7 METHOD       STORAGE_LOC_GET
           SAPLMIGO
           LMIGOBU2                                   173
    I_PLANT
                                   2222
                                   0000
    I_STORAGE_LOC                  2031
                                   3333
                                   2031
    E_STORAGE_LOC
                                   222222222222222222
                                   000000000000000000
    %_FUN*TV_GOSPLIT               <initial>
                                   <initial>
                                   <initial>
    GOITEM-KZVBR
                                   2
                                   0
    <%_TABLE_T001L>                ???
    %_SPACE
                                   2
                                   0
    %_ARCHIVE
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    SYST-REPID                     SAPLMIGO
                                   5454444422222222222222222222222222222222
                                   310CD97F00000000000000000000000000000000
    <%_TABLE_TQSS1>                ???
    SY-REPID                       SAPLMIGO
                                   5454444422222222222222222222222222222222
                                   310CD97F00000000000000000000000000000000
    %_DUMMY$$
                                   2222
                                   0000
    GODYNPRO-DETAIL_ZEILE          0000
                                   3333
                                   0000
    LCL_MIGO_GLOBALS=>KERNEL->S_CO WA
                                   54
                                   71
    LS_T001L
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   22222222222222222222222222222
                                   00000000000000000000000000000
    OREF_DETAIL_MATERIAL          
    SY-SUBRC                       4
                                   0000
                                   4000
    GOITEM_TV                      0017
                                   3333222222222222222222222222222222222222
                                   0017000000000000000000000000000000000000
    ... +  40                                    G152 Wh F SV U65 -025 -050
                                   2222222222222243332562425525332233322333
                                   0000000000000071520780603605650D0250D050
    ... +  80                                    X#######
                                   2222222222222250000000222222222222222222
                                   000000000000008000020C000000000000000000
    ... + 120                                 4020111650-002-005          9
                                   2222222222233333333332333233322222222223
                                   000000000004020111650D002D00500000000009
    ... + 160                      03                                ######
                                   3322222222222222222222222222222222000000
                                   0300000000000000000000000000000000000000
    ... + 200                      #                                      0
                                   0222222222222222222222222222222222222223
                                   C000000000000000000000000000000000000000
    ... + 240                      000000000000000
                                   333333333333333
                                   000000000000000
    SY-XPROG                       SAPCNVE
                                   5454454222222222222222222222222222222222
                                   3103E65000000000000000000000000000000000
    %_FL1*TV_GOFREIGHT             1
                                   0000
                                   1000
    SY-XFORM                       CONVERSION_EXIT
                                   444545544454545222222222222222
                                   3FE65239FEF5894000000000000000
    %_FUN*TV_GOSERIAL              1
                                   0000
                                   1000
         6 METHOD       LINE_CHECK
           SAPLMIGO
           LMIGOKL4                                   217
    IS_OLD_GOITEM                            00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    CS_GOITEM                                00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    LC_BATCH_CONVERSION_ACTIVE     1
                                   3
                                   1
    LCL_MIGO_CURSOR=>VALUE         FG Rework
                                   4425676762222222222222222222222222222222
                                   670257F2B0000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    %_FL1*TV_GOSPLIT               <initial>
                                   <initial>
                                   <initial>
    LS_GOPLANT
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   22222222222222222222222222222
                                   00000000000000000000000000000
    GOITEM-EXVKW                   #######
                                   0000000
                                   000000C
    ME->PS_GOHEAD+746(3)           TH
                                   542
                                   480
    LS_GOPLANT-LAND1
                                   222
                                   000
    LS_GOT001L
                                   222222222222222222
                                   000000000000000000
    SY                             ########################################
                                   0000000000000000000000000000000000000000
                                   1000100000001000000000000000000000000000
    ... +  40                      ########################################
                                   0000000000000000000000000000000000001000
                                   100010001000000010000000000000000000A000
    ... +  80                      ################<#######################
                                   0000000000000000300000000000000000000000
                                   0000000050004000C00000000000000000000000
    ... + 120                      ####################################p###
                                   0000000000000000000000000000000010007000
                                   00000000000000000000000000000000A0000000
    ... + 160                      ####<#######pb## C#############   E1   0
                                   0000300000007600240000000000000222432223
                                   0000C00000000200030030000C0000C000510000
    ... + 200                      0010001     ####D$S                 900
                                   3333333222220000425222222222222222223332
                                   0010001000001000443000000000000000009000
    ... + 240                           00
                                   222223322222222
                                   000000000000000
    OREF_HEADER_GENERAL           
    LS_GOITEM-WERKS
                                   2222
                                   0000
    LS_GOITEM-LGORT                2031
                                   3333
                                   2031
    OREF_SPLIT_QUANTITY           
    ME                            
    LS_GOITEM                                00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
         5 METHOD       LINE_MODIFY
           SAPLMIGO
           LMIGOKL1                                   123
    I_LINE                         2
                                   0000
                                   2000
    I_TABIX                        0
                                   0000
                                   0000
    I_INSERT
                                   2
                                   0
    I_FORCE_CHANGE
                                   2
                                   0
    I_AUTHORITY_CHECK
                                   2
                                   0
    I_STATUS_DELAYED               X
                                   5
                                   8
    I_DEPENDENT_TABLES
                                   2
                                   0
    IT_GOSERIAL                    Table[initial]
    IT_GOFREIGHT                   Table[initial]
    CS_GOITEM                                00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    ME                            
    LS_OLD_GOITEM                            00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    LS_NEW_GOITEM                            00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    ABAP_FALSE
                                   2
                                   0
    GODYNPRO-UMCHA
                                   2222222222
                                   0000000000
    ME->PT_GOITEM                  Table IT_156[20x2752]
    L_TABIX                        2
                                   0000
                                   2000
         4 METHOD       VALUECOPY
           SAPLMIGO
           LMIGOTV3                                   370
    LS_TARGET_GOITEM-GLOBAL_COUNTE 000002
                                   333333
                                   000002
    L_CHECKFIELD                   GOITEM-LGOBE
                                   444544244444222222222222222222
                                   7F945DDC7F25000000000000000000
    L_STATUS                       1229932294
                                   0
                                   6
    G_SUB_TAXES
                                   2222
                                   0000
    LCL_MIGO_SCREENMODIFICATION=>C 960038918
                                   0
                                   6
    L_FIELD_TARGET                 LS_TARGET_GOITEM-LGORT
                                   4555454455444544244455222222222222222222
                                   C3F412754F7F945DDC7F24000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   222222222222
                                   000000000000
    <L_VALUE_TARGET>               2031
                                   3333
                                   2031
    <L_VALUE_SOURCE>               2031
                                   3333
                                   2031
    LCL_MIGO_GLOBALS=>KERNEL      
    L_TARGETLINE                   2
                                   0000
                                   2000
    ABAP_TRUE                      X
                                   5
                                   8
    LS_TARGET_GOITEM                         00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    %_CX_GRID_ID                   1
                                   0000
                                   1000
         3 METHOD       LIF_MIGO_FRAME~OKCODE_HANDLER
           SAPLMIGO
           LMIGOTV2                                   174
    I_OKCODE                       MIGO_OK_TAKE_VALUE
                                   4444544554445544542222222222222222222222
                                   D97FFFBF41B5F61C550000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    GOSPLIT                                                    #######
                                   2222222222222222222222222222000000022222
                                   0000000000000000000000000000000000C00000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    LCL_MIGO_GLOBALS=>KERNEL      
    GOSEARCH_PO
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160                                                    0000000000
                                   2222222222222222222222222222223333333333
                                   0000000000000000000000000000000000000000
    ... + 200                      000000
                                   3333332222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240                      000000
                                   333333
                                   000000
    LS_CONTROL
                                   222222222222222
                                   000000000000000
    %_CX_TABSTRIP_VERSION          0
                                   3
                                   0
    GOSEARCH_ORD
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   222222222222
                                   000000000000
    RSJOBINFO                                                      00000000
                                   2222222222222222222222222222222233333333
                                   0000000000000000000000000000000000000000
    ... +  40                      000000
                                   3333332222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80                      ####
                                   0000
                                   0000
    ME                            
         2 METHOD       OKCODE_DISPATCH
           SAPLMIGO
           LMIGOFR2                                   171
    I_OKCODE
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    L_MSG_STRING
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CAL 0000000000
                                   3333333333
                                   0000000000
    L_OKCODE                       MIGO_OK_TAKE_VALUE
                                   4444544554445544542222222222222222222222
                                   D97FFFBF41B5F61C550000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    SCREEN                         OK_NEW_ITEMS
                                   4454455454452222222222222222222222222222
                                   FBFE57F945D30000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120                                              00001#10000 ####
                                   2222222222222222222222223333303333320000
                                   0000000000000000000000000000101000000000
         1 MODULE (PAI) PAI_OKCODE_DISPATCH
           SAPLMIGO
           LMIGOPAI                                    11
    LCL_MIGO_FRAME=>TRACE_INFOS
                                   2
                                   0
    LCL_MIGO_GLOBALS=>EXTERNAL_CAL 0000000000
                                   3333333333
                                   0000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CAL 0000
                                   3333
                                   0000
    LCL_MIGO_GLOBALS=>EXTERNAL_CAL 00000
                                   33333
                                   00000
    OKCODE
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    Application Calls
    No dump information available
    Application Information
    No dump information available
    Internal notes
    The termination occurred in the function "HandleRsqlErrors" of the SAP
    Basis System, specifically in line 773 of the module
    "//bas/640_REL/src/krn/runt/absapsql.c#16".
    The internal operation just processed is "SQLS".
    The internal session was started at 20080130103952.
    Internal call code.........: "[RSQL/READ/T001L ]"
    Active calls in SAP kernel
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Callstack without Exception:
    App       : disp+work.EXE (pid=4832)
    When      : 1/30/2008 10:41:32.722
    Threads   : 2
    Computer Name       : TOGR3PRD1
    User Name           : SAPServicePRD
    Number of Processors: 8
    Processor Type: x86 Family 15 Model 2 Stepping 6
    Windows Version     : 5.2 Current Build: 3790
    State Dump for Thread Id 14ac
    eax=00000000 ebx=00000000 ecx=00000000 edx=00000000 esi=003c61d4 edi=003c61a8
    eip=7c82ed54 esp=03fedfb4 ebp=03fedfc4 iopl=0         nv up ei pl nz ac po nc
    cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00000216
    function : KiFastSystemCallRet
             7c82ed54 c3               ret
             7c82ed55 8da42400000000   lea     esp,[esp]              ss:03fedfb4=7c82ed5c
             7c82ed5c 8d642400         lea     esp,[esp]              ss:07fdb4c7=00000000
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    03fedfc4 003c61a8 00000000 00000001 01d40b84 000014ac ntdll!KiFastSystemCallRet
    00000000 00000000 00000000 00000000 00000000 00000000 <nosymbols>
    State Dump for Thread Id 168c
    eax=00000001 ebx=00000103 ecx=fffffffe edx=003c0000 esi=00000000 edi=00000000
    eip=7c82ed54 esp=05fefeb0 ebp=05fefef4 iopl=0         nv up ei pl zr na po nc
    cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00000246
    function : KiFastSystemCallRet
             7c82ed54 c3               ret
             7c82ed55 8da42400000000   lea     esp,[esp]              ss:05fefeb0=7c821514
             7c82ed5c 8d642400         lea     esp,[esp]              ss:09fdd3c3=00000000
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    05fefef4 00fede51 00000eb0 00000000 00000000 003c7920 ntdll!KiFastSystemCallRet
    05feff84 7c349565 00000000 00000000 00000000 003c79b8 disp+work!SigIMsgFunc >
    > [signt.c (563)]
    05feffb8 77e6608b 003c79b8 00000000 00000000 003c79b8 MSVCR71!endthreadex
    05feffec 00000000 7c3494f6 003c79b8 00000000 00000000 kernel32!GetModuleFileNameA
    List of ABAP programs affected
    Type
    Program
    Gen. Date  Time
    Load Size
    Prg
    SAPLMIGO
    22.09.2005 21:54:56
    1226752
    Prg
    SAPMSSYD
    05.06.2002 17:09:33
    16384
    Prg
    SAPFSYSCALLS
    14.02.2002 14:22:47
    6144
    Prg
    CL_MMIM_USERDEFAULTS==========CP
    06.05.2002 10:42:38
    17408
    Typ
    ESDUS
    01.03.1999 13:36:04
    2048
    Typ
    GOHEAD
    08.01.2003 16:15:40
    9216
    Typ
    MKPF
    08.01.2002 15:13:52
    5120
    Typ
    KBEFU
    26.03.1999 14:46:02
    5120
    Typ
    LFA1
    11.05.2004 11:32:44
    19456
    Typ
    MIGO_CUST_ACTION
    30.11.1999 10:19:14
    2048
    Typ
    MIGO_CUST_REFDOC
    30.11.1999 10:19:14
    2048
    Typ
    X031L
    15.11.2000 18:03:28
    5120
    Prg
    SAPLSDIFRUNTIME
    22.09.2005 21:42:36
    81920
    Typ
    DFIES
    09.11.2000 14:07:05
    8192
    Prg
    SAPLSDNT
    22.09.2005 21:55:13
    201728
    Prg
    SAPLSUGS
    22.09.2005 21:42:36
    29696
    Prg
    SAPLV01D
    11.05.2004 11:59:11
    25600
    Typ
    IWRKZ
    04.04.1995 15:56:46
    1024
    Typ
    TCUCH
    07.01.2002 15:50:54
    3072
    Typ
    TCUBN
    07.01.2002 15:50:53
    2048
    Typ
    TCUWS
    13.08.1997 13:57:58
    2048
    Typ
    TCUDRV
    07.01.2002 15:50:54
    2048
    Prg
    CL_GUI_CFW====================CP
    22.09.2005 21:14:53
    154624
    Prg
    CL_GUI_PROPS_CONSUMER=========CP
    07.01.2003 18:26:56
    26624
    Prg
    %_CCNTL
    14.02.2002 14:22:46
    13312
    Prg
    SAPLTHFB
    22.09.2005 22:08:44
    304128
    Prg
    CL_EXITHANDLER================CP
    16.06.2004 11:34:41

    Hello,
    the problem is the following error:
    >> ORA-04030: out of process memory when trying to allocate 1332 bytes (callheap,qkkele)
    Take a look at sapnote #130140 and #335230 and follow the instructions.
    Regards
    Stefan

  • New runtime error JBO-27014 appears by upgrating JDv 9.0.2.289 to 9.0.3.1035

    Without changing the application source, after the upgrade from Upgrade from JDeveloper 9.0.2.289 to 9.0.3.1035 we are receiving the runtime error code:
    oracle.jbo.AttrValException: JBO-27014: Attribute AtyId in Appointmenttypes is required
    at oracle.jbo.server.JboMandatoryAttributesValidator.validateMandatoryAttributes(JboMandatoryAttributesValidator.java:115)
    at oracle.jbo.server.JboMandatoryAttributesValidator.vetoableChange(JboMandatoryAttributesValidator.java:163)at oracle.jbo.server.EntityDefImpl.validate(EntityDefImpl.java:1719)
    at oracle.jbo.server.EntityImpl.validateEntity(EntityImpl.java:1115)
    at oracle.jbo.server.EntityImpl.validate(EntityImpl.java:1297)
    at oracle.jbo.server.DBTransactionImpl.validate(DBTransactionImpl.java:3261)
    at oracle.jbo.server.DBTransactionImpl.commitInternal(DBTransactionImpl.java:1516)
    at oracle.jbo.server.DBTransactionImpl.commit(DBTransactionImpl.java:1693)
    at oracle.jbo.html.jsp.datatags.CommitTag.doStartTag(CommitTag.java:45)
    at jsp_servlet.__appointment_add_proc._jspService(__appointment_add_proc.java:498)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:304)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2456)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2039)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    The AtyId is defined as surrogate key. sequence number
    It is strange. This field is a defined DBSequence number and should be automaticaly incremented each new record.
    At the "old" version it was working and with the upgrade, not more.
    Should one new parameter be defined to have it running again?
    Thanks

    A bug 2535331 was reported for this issue:
    The bug was in 902 that BC4J did not enforce null checks for domains properly. In 903 it does and that leads to validation failure in DBSequence case as in this case, the DB value for the domain is null as database generates the right value for new entities. To fix that when you open/close the Entity-editor it re-establishes the domain settings on the attribute leading it to be non-mandatory.
    In JDev 903, Entity editor should not allow DBSequence domains to be "checked" as "Mandatory"
    A known workaround is to visit all such entities that have DBSequence attribute marked as mandatory and open/finish editor so that attribute properties for the DBsequence attribute is regenerated and the wizard takes off the mandatory setting.
    You may say that the migration/upgrade process should have 'fixed' this and we missed that boat on this issue.

Maybe you are looking for

  • Logic Remote iPad app not working

    I've have Logic Pro X installed on Mountain Lion and the latest IOS on an iPad (3rd gen) running Logic Remote but can't get them to work together. After I choose the Mac pop up boxes keep appearing with either an option to re-connect to Mac or the at

  • HT4528 i updated my iphone4 and now my screen colors were all changed or inverted i guess you could say.. how can I fix this

    I updated my iphone4 and now when it turns on all the colors are inverted I tried to reset the phone but it did nothing i have no idea how to change the colors back to normal

  • Subscribed Canadian Holidays not shown in Calendars

    Hi I'm using iphone 5S and have updated to ios 8.  Though the Canadian Holidays with Subscribed underneath in the section Other in the Calendars, no information is shown in the Calendars.  In the ios7, it worked properly.  I can't find anyway to dele

  • Selection via keyboard in JComboBox

    Hi all, I use a JComboBox with the followin items: "New York", "Netherlands", "Nigeria" When the JComboBox has the focus and the user starts typing <n> + <e> + <t> then "Netherlands" should be selected, whe he starts typing <n> + <e> + <w> then "New

  • Certain apps quit unexpectedly

    hello there...i been having this problem for quite some time now and its starting to annoy me. once in a while if i'm using a certain application...for instance safari, it will quit unexpectedly and the message comes up...application quit unexpectedl