cancel
Showing results for 
Search instead for 
Did you mean: 

EHP6 - EHP7 Upgrade SYBASE - Windows 2012 - PREP_GENCHECKS/JOB_RSUPGRCHECK_PRE!

Former Member
0 Kudos

Dear All,

I am stuck in the below phase.

Severe error(s) occurred in phase PREP_GENCHECKS/JOB_RSUPGRCHECK_PRE!

Last error code set: Batchjob 'RSUPGRCHECK' with id '21204100:' aborted.

The Background Job ended -

Runtime Errors         SYNTAX_ERROR

ABAP Program           CL_RSRTS_METADATA_ODP=========CP

Can any one please help..

Thanks,

Regards,

Letz

Accepted Solutions (1)

Accepted Solutions (1)

Reagan
Advisor
Advisor
0 Kudos

Go to Tx ST22 and provide the complete dump.

What is the kernel version of the system ?

Regards

RB

Former Member
0 Kudos

Hi Benjamin,

Please find the dump below  - kernel 720 SP 500

CategoryABAP Programming Error
Runtime ErrorsSYNTAX_ERROR
ABAP ProgramCL_RSRTS_METADATA_ODP=========CP
Application ComponentBW-BEX-OT
Date and Time08.05.201421:20:42

Short text
Syntax error in program "CL_RSRTS_METADATA_ODP=========CP ".

What happened?
Error in the ABAP Application Program

The current ABAP program "CL_ABAP_TYPEDESCR=============CP" had to be
terminated because it has
come across a statement that unfortunately cannot be executed.

The following syntax error occurred in program
"CL_RSRTS_METADATA_ODP=========CP " in include
"CL_RSRTS_METADATA_ODP=========CM001 " in
line 47:
""L_S_HEADER-APPL_COMP" is not type-compatible with formal parameter "I"
"_APPL_COMP"."
" "
" "

The include has been created and last changed by:
Created by: "SAP "
Last changed by: "SAP "
Error in the ABAP Application Program

The current ABAP program "CL_ABAP_TYPEDESCR=============CP" had to be
terminated because it has
come across a statement that unfortunately cannot be executed.

What can you do?
Please eliminate the error by performing a syntax check
(or an extended program check) on the program "CL_RSRTS_METADATA_ODP=========CP
".
You can also perform the syntax check from the ABAP Editor.

If the problem persists, proceed as follows:
Note down which actions and inputs caused the error.

To process the problem further, contact you SAP system
administrator.

Using Transaction ST22 for ABAP Dump Analysis, you can look
at and manage termination messages, and you can also
keep them for a long time.

Error analysis
The following syntax error was found in the program
CL_RSRTS_METADATA_ODP=========CP :
""L_S_HEADER-APPL_COMP" is not type-compatible with formal parameter "I"
"_APPL_COMP"."
" "
" "

How to correct the error
Probably the only way to eliminate the error is to correct the program.
-
If you cannot solve the problem yourself and want to send an error
notification to SAP, include the following information:

1. The description of the current problem (short dump)

   To save the description, choose "System->List->Save->Local File
(Unconverted)".

2. Corresponding system log

   Display the system log by calling transaction SM21.
   Restrict the time interval to 10 minutes before and five minutes
after the short dump. Then choose "System->List->Save->Local File
(Unconverted)".

3. If the problem occurs in a problem of your own or a modified SAP
program: The source code of the program
   In the editor, choose "Utilities->More
Utilities->Upload/Download->Download".

4. Details about the conditions under which the error occurred or which
actions and input led to the error.

System environment
SAP Release..... 731
SAP Basis Level. 0010

Application server... "SAP-DEVL"
Network address...... "128.128.128.172"
Operating system..... "Windows NT"
Release.............. "6.2"
Hardware type........ "12x AMD64 Level"
Character length.... 16 Bits
Pointer length....... 64 Bits
Work process number.. 13
Shortdump setting.... "full"

Database server... "SAP-DEVL"
Database type..... "SYBASE"
Database name..... "RFD"
Database user ID.. "SAPSR3"

Terminal.......... " "

Char.set.... "C"

SAP kernel....... 720
created (date)... "Sep 16 2013 02:43:58"
create on........ "NT 6.0 6002 S x86 MS VC++ 16.00"
Database version. "Sybase ASE 15.7.0.506 "

Patch level. 500
Patch text.. " "

Database............. "15.7"
SAP database version. 720
Operating system..... "Windows NT 5.1, Windows NT 5.2, Windows NT 6.0, Windows
NT 6.1, Windows NT 6.2"

Memory consumption
Roll.... 0
EM...... 12569376
Heap.... 0
Page.... 24576
MM Used. 2389056
MM Free. 1798064

User and Transaction
Client.............. 000
User................ "DDIC"
Language key........ "E"
Transaction......... " "
Transaction ID...... "75DDD6E387D4F1C793FEF01FAFCE7A27"

EPP Whole Context ID.... 35333641413935423533364141393542
EPP Connection ID....... 35333642434146383533364243414638
EPP Caller Counter...... 1

Program............. "CL_ABAP_TYPEDESCR=============CP"
Screen.............. "SAPMSSY0 1000"
Screen Line......... 6
Debugger Active..... "none"

Information on where terminated
Termination occurred in the ABAP program "CL_ABAP_TYPEDESCR=============CP" -
in "DESCRIBE_BY_NAME".
The main program was "RSUPGRCHECK ".

In the source code you have the termination point in line 12
of the (Include) program "CL_ABAP_TYPEDESCR=============CM002".
The program "CL_ABAP_TYPEDESCR=============CP" was started as a background job.
Job Name....... "RSUPGRCHECK"
Job Initiator.. "DDIC"
Job Number..... 21204100

Source Code Extract

LineSourceCde

    1method describe_by_name .
    2
    3  data:
    4    crc type XTYPE_TYPE,
    5    res like p_descr_ref.
    6
    7* check name for sequence of c
    8  system-call check p_name for sequence of c
    9    class 'CL_ABAP_TYPEDESCR' method 'DESCRIBE_BY_NAME' parameter 'P_NAME'.
   10
   11* get administration information
>>>>>  system-call describe administration
   13    mode 'N' of p_name into admin_tab_line-xtype crc admin_tab_line-kind.
   14
   15* look at hash tabel wether descr object already exists
   16  read table admin_tab from admin_tab_line into admin_tab_line.
   17  if sy-subrc = 0.
   18    res ?= admin_tab_line-ref->get( ).
   19    if res is bound.
   20      p_descr_ref = res.
   21      return.
   22    endif.
   23    delete table admin_tab from admin_tab_line.
   24  endif.
   25
   26* create new descr object
   27  case admin_tab_line-kind.
   28    when kind_elem.
   29      raise event create_elemdescr
   30        exporting xtype = admin_tab_line-xtype.
   31    when kind_ref.

Contents of system fields

NameVal.

SY-SUBRC0
SY-INDEX0
SY-TABIX6
SY-DBCNT7
SY-FDPOS1
SY-LSIND0
SY-PAGNO0
SY-LINNO1
SY-COLNO1
SY-PFKEY
SY-UCOMM
SY-TITLE
SY-MSGTYE
SY-MSGIDDA
SY-MSGNO300
SY-MSGV1
SY-MSGV2
SY-MSGV3
SY-MSGV4
SY-MODNO0
SY-DATUM20140508
SY-UZEIT212041
SY-XPROGSAPCNVE
SY-XFORMCONVERSION_EXIT

Active Calls/Events

No.Ty.ProgramIncludeLine
Name

   10METHODCL_ABAP_TYPEDESCR=============CPCL_ABAP_TYPEDESCR=============CM002   12
CL_ABAP_TYPEDESCR=>DESCRIBE_BY_NAME
    9METHODCL_RSRTS_METADATA=============CPCL_RSRTS_METADATA=============CM00Q   12
CL_RSRTS_METADATA=>SYNTAX_CHECK
    8METHODCL_RSRTS_METADATA=============CPCL_RSRTS_METADATA=============CM00C    9
CL_RSRTS_METADATA=>CLASS_CONSTRUCTOR
    7METHODCL_RSROA_VQ_SERVICES==========CPCL_RSROA_VQ_SERVICES==========CM004    6
CL_RSROA_VQ_SERVICES=>IS_IOBJ_VIRTUAL
    6FUNCTIONSAPLRSDG_IOBJ_DB_READLRSDG_IOBJ_DB_READU19   47
RSD_IOBJ_CMP_GET
    5FUNCTIONSAPLRSDN_IOBJLRSDN_IOBJU23  300
RSD_VIOBJ_COMPLETE
    4FORMSAPLRSDG_IOBJ_DB_READLRSDG_IOBJ_DB_READF60  512
FILL_VIOBJ_BUFFER_COMPLETE
    3FORMSAPLRSDG_IOBJ_DB_READLRSDG_IOBJ_DB_READF60  279
GET_IOBJS_FROM_DB
    2FUNCTIONSAPLRSDG_IOBJ_DB_READLRSDG_IOBJ_DB_READU02   62
RSD_IOBJ_MULTI_GET
    1EVENTRSUPGRCHECKRSUPGRCHECK  156
START-OF-SELECTION

Chosen variables

Name
Val.

No.   10Ty.METHOD
NameCL_ABAP_TYPEDESCR=>DESCRIBE_BY_NAME

P_NAME
CL_RSRTS_METADATA_ODP
445555555445444545445222222222
3CF23243FD5414141FF40000000000
000000000000000000000000000000
000000000000000000000000000000
43004C005F00520053005200540053005F004D0045005400410044004100540041005F004F00440050002000200020
P_DESCR_REF
{O:initial}
F0000000
F0000000
FF00000000000000
SY-REPID
CL_ABAP_TYPEDESCR=============CP
4454445555544454533333333333334522222222
3CF1210F490545332DDDDDDDDDDDDD3000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
43004C005F0041004200410050005F005400590050004500440045005300430052003D003D003D003D003D003D003D
%_DUMMY$$

2222
0000
0000
0000
2000200020002000
%_SPACE

2
0
0
0
2000
CL_ABAP_TYPEDESCR=>ADMIN_TAB_LINE-XTYPE
õ#ᘕ#
F010
5055
0010
0060
F500000015160500
CRC
####
0000
0000
0000
0000
0000000000000000
CL_ABAP_TYPEDESCR=>ADMIN_TAB_LINE-KIND
C
4
3
0
0
4300
CL_ABAP_TYPEDESCR=>ADMIN_TAB
Table IT_124[6x20]
\CLASS-POOL=CL_ABAP_TYPEDESCR\DATA=CL_ABAP_TYPEDESCR=>ADMIN_TAB
Table reference: 31
TABH+  0(20) = 00821A00DF070000000000000000000000000000
TABH+ 20(20) = 1F0000007C0000000600000014000000FFFFFFFF
TABH+ 40(16) = 048100005075000004000000A425C000
store        = 0x00821A00DF070000
ext1         = 0x0000000000000000
shmId        = 0     (0x00000000)
id           = 31    (0x1F000000)
label        = 124   (0x7C000000)
fill         = 6     (0x06000000)
leng         = 20    (0x14000000)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000008
occu         = 4     (0x04000000)
accKind      = 4     (ItAccessHashed)
idxKind      = 0     (ItIndexNone)
uniKind      = 1     (ItUniYes)
keyKind      = 3     (user defined)
cmpMode      = 2     (cmpSingleMcmpR)
occu0        = 1
stMode       = 0
groupCntl    = 0
rfc          = 0
unShareable  = 0
mightBeShared = 0
sharedWithShmTab = 0
isShmLockId  = 0
isUsed       = 1
isCtfyAble   = 1
hasScndKeys  = 0
hasRowId     = 0
scndKeysOutdated = 0
scndUniKeysOutdated = 0
----- Shareable Table Header Data -----
tabi         = 0x90811A00DF070000
pgHook       = 0x206F2000DF070000
idxPtr       = 0x80821A00DF070000
id           = 122   (0x7A000000)
shmTabhSet   = 0x0000000000000000
refCount     = 0     (0x00000000)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 508   (0xFC010000)
lineAlloc    = 12    (0x0C000000)
shmVersId    = 0     (0x00000000)
shmRefCount  = 1     (0x01000000)
rowId        = 18446744073709551615
scndKeyAdmin = 0x0000000000000000

##Ȣ#E#õ###
002040F000
60205050A0
0000000000
0020000000
060000002202000045000000F50000000A000000

É#ᘕ#C#ó###
C01040F000
90553030C0
0010000000
0060000000
C90000001516050043000000F30000000C000000

Ó#ᘕ#C#ñ###
D01040F000
30553010E0
0010000000
0060000000
D30000001516050043000000F10000000E000000

¶#ᘕ#C#ï###
B01040E010
605530F000
0010000000
0060000000
B60000001516050043000000EF00000010000000

ð#ᘕ#C#í###
F01040E010
005530D020
0010000000
0060000000
F00000001516050043000000ED00000012000000
CL_ABAP_TYPEDESCR=>ADMIN_TAB_LINE
õ#ᘕ#C#ë###
F01040E010
505530B040
0010000000
0060000000
F50000001516050043000000EB00000014000000
SY-SUBRC
0
0000
0000
00000000
%_FSREG_001
???
??????
??????
????????????
CL_ABAP_TYPEDESCR=>ADMIN_TAB_LINE-REF
{O:20*\CLASS=CL_ABAP_SOFT_REFERENCE}
E0001000
B0004000
EB00000014000000
RES
{O:initial}
F0000000
F0000000
FF00000000000000
SPACE

2
0
0
0
2000
CL_ABAP_TYPEDESCR=>KIND_ELEM
E
4
5
0
0
4500
%_VIASELSCR
#
0
4
04

No.    9Ty.METHOD
NameCL_RSRTS_METADATA=>SYNTAX_CHECK

I_CLNM
CL_RSRTS_METADATA_ODP
445555555445444545445222222222
3CF23243FD5414141FF40000000000
000000000000000000000000000000
000000000000000000000000000000
43004C005F00520053005200540053005F004D0045005400410044004100540041005F004F00440050002000200020
R_ERROR
X
5
8
0
0
5800
SY-REPID
CL_RSRTS_METADATA=============CP
4455555554454445433333333333334522222222
3CF23243FD5414141DDDDDDDDDDDDD3000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
43004C005F00520053005200540053005F004D0045005400410044004100540041003D003D003D003D003D003D003D
%_DUMMY$$

2222
0000
0000
0000
2000200020002000
SY
##########################A###P#################ż#############################T#######⨰# u####
0000000000000000000000000040005000000010000000007000000000000000000000000000105000000030270000
000060500000000000007010101010000000004000000000C000000000000000000000000000604000000000050400
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000
00000000000000000000000000000000000000000000000010000000000000000000000000000000000000A000000C
0000000000000000060000000500000000000000000000000000000000000000000000000000000007000000010000
SY-SUBRC
0
0000
0000
00000000
L_CHECK

2
0
0
0
2000
RS_C_TRUE
X
5
8
0
0
5800
RS_C_OBJVERS
%AMBDNTHI
244444544
51D24E489
000000000
000000000
250041004D00420044004E00540048004900
L_PROGNM

22222222222222222222222222222222
00000000000000000000000000000000
00000000000000000000000000000000
00000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
SYST-REPID
CL_RSRTS_METADATA=============CP
4455555554454445433333333333334522222222
3CF23243FD5414141DDDDDDDDDDDDD3000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
43004C005F00520053005200540053005F004D0045005400410044004100540041003D003D003D003D003D003D003D
L_T_ABAP
Table[initial]

L_MESS
<empty string>
10000000
40000000
1400000000000000
L_LINE
0
0000
0000
00000000
L_WORD
<empty string>
10000000
40000000
1400000000000000

No.    8Ty.METHOD
NameCL_RSRTS_METADATA=>CLASS_CONSTRUCTOR

CL_RSRTS_METADATA=>P_TH_IOBJ_BUFFER
Table[initial]

<%_TABLE_RSRTSDIRMETADATA>
???
??????
??????
????????????
RSD_C_OBJTP
CHAKYFTIMUNIDPAATRMTA
444454544544454455454
381B9649D5E9401142D41
000000000000000000000
000000000000000000000
4300480041004B0059004600540049004D0055004E0049004400500041004100540052004D0054004100
%_ITAB_MODIFY_LIST
Table[initial]

CL_RSRTS_METADATA=>P_TS_IMPLEMENTATION
Table IT_125[7x66]
\CLASS-POOL=CL_RSRTS_METADATA\DATA=CL_RSRTS_METADATA=>P_TS_IMPLEMENTATION
Table reference: 32
TABH+  0(20) = E0881A00DF070000000000000000000000000000
TABH+ 20(20) = 200000007D000000070000004200000010010000
TABH+ 40(16) = 048B0000B075010003000000A207C000
store        = 0xE0881A00DF070000
ext1         = 0x0000000000000000
shmId        = 0     (0x00000000)
id           = 32    (0x20000000)
label        = 125   (0x7D000000)
fill         = 7     (0x07000000)
leng         = 66    (0x42000000)
loop         = 272   (0x10010000)
xtyp         = TYPE#000019
occu         = 3     (0x03000000)
accKind      = 2     (ItAccessSorted)
idxKind      = 0     (ItIndexNone)
uniKind      = 1     (ItUniYes)
keyKind      = 3     (user defined)
cmpMode      = 3     (cmpSingleMcmpU)
occu0        = 0
stMode       = 0
groupCntl    = 0
rfc          = 0
unShareable  = 0
mightBeShared = 0
sharedWithShmTab = 0
isShmLockId  = 0
isUsed       = 1
isCtfyAble   = 1
hasScndKeys  = 0
hasRowId     = 0
scndKeysOutdated = 0
scndUniKeysOutdated = 0
----- Shareable Table Header Data -----
tabi         = 0xF0871A00DF070000
pgHook       = 0x60891A00DF070000
idxPtr       = 0x0000000000000000
id           = 123   (0x7B000000)
shmTabhSet   = 0x0000000000000000
refCount     = 0     (0x00000000)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 127   (0x7F000000)
lineAlloc    = 7     (0x07000000)
shmVersId    = 0     (0x00000000)
shmRefCount  = 1     (0x01000000)
rowId        = 18446744073709551615
scndKeyAdmin = 0x0000000000000000

1CL_RSRTS_METADATA_R3IS
344555555544544454553452222222222
13CF23243FD5414141F23930000000000
000000000000000000000000000000000
000000000000000000000000000000000
310043004C005F00520053005200540053005F004D0045005400410044004100540041005F00520033004900530020

2CL_RSROA_VQ_METADATA          X
344555544555544544454222222222252
23CF232F1F61FD5414141000000000080
000000000000000000000000000000000
000000000000000000000000000000000
320043004C005F005200530052004F0041005F00560051005F004D0045005400410044004100540041002000200020

3CL_RSL_ME_METADATA
344555454454454445422222222222222
33CF23CFD5FD541414100000000000000
000000000000000000000000000000000
000000000000000000000000000000000
330043004C005F00520053004C005F004D0045005F004D004500540041004400410054004100200020002000200020

5CL_RSDDLTIP_IPROV_TABLE
344555444545545545554444222222222
53CF2344C490F902F6F412C5000000000
000000000000000000000000000000000
000000000000000000000000000000000
350043004C005F0052005300440044004C005400490050005F004900500052004F0056005F005400410042004C0045

ACL_RSAN_PR_ANPR_PROV_TRANSIENTX
444555445555445555545555445444552
13CF231EF02F1E02F02F6F421E395E480
000000000000000000000000000000000
000000000000000000000000000000000
410043004C005F005200530041004E005F00500052005F0041004E00500052005F00500052004F0056005F00540052
L_S_IMPLEMENTATION
OCL_RSRTS_METADATA_ODP          X
444555555544544454544522222222225
F3CF23243FD5414141FF4000000000008
000000000000000000000000000000000
000000000000000000000000000000000
4F0043004C005F00520053005200540053005F004D0045005400410044004100540041005F004F0044005000200020
SY-MSGV1

22222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
L_S_IMPLEMENTATION-CLSNM
CL_RSRTS_METADATA_ODP
445555555445444545445222222222
3CF23243FD5414141FF40000000000
000000000000000000000000000000
000000000000000000000000000000
43004C005F00520053005200540053005F004D0045005400410044004100540041005F004F00440050002000200020
L_ERROR

2
0
0
0
2000
L_S_IMPLEMENTATION-IDENTIFIER
O
4
F
0
0
4F00
<%_L002>
???
??????
??????
????????????

No.    7Ty.METHOD
NameCL_RSROA_VQ_SERVICES=>IS_IOBJ_VIRTUAL

I_IOBJNM
0FACTCOUNT
344454454522222222222222222222
061343F5E400000000000000000000
000000000000000000000000000000
000000000000000000000000000000
3000460041004300540043004F0055004E005400200020002000200020002000200020002000200020002000200020
R_RESULT

2
0
0
0
2000
SY-REPID
CL_RSROA_VQ_SERVICES==========CP
4455554455555455444533333333334522222222
3CF232F1F61F35269353DDDDDDDDDD3000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
43004C005F005200530052004F0041005F00560051005F00530045005200560049004300450053003D003D003D003D
%_DUMMY$$

2222
0000
0000
0000
2000200020002000
CL_RSROA_VQ_SERVICES=>N_C_VIRTUAL_NAMESPACE
@32
433
032
000
000
400033003200
RS_C_FALSE

2
0
0
0
2000
SYST
##########################A###P#################ż#############################T#######⨰# u####
0000000000000000000000000040005000000010000000007000000000000000000000000000105000000030270000
000060500000000000007010101010000000004000000000C000000000000000000000000000604000000000050400
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000
00000000000000000000000000000000000000000000000010000000000000000000000000000000000000A000000C
0000000000000000060000000500000000000000000000000000000000000000000000000000000007000000010000
SCREEN
%_17NNS0001237242_%_%_%_%_%_%_
2533445333333333352525252525252222222222222222222222222222222222222222222222222222222222222222
5F17EE30001237242F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
25005F00310037004E004E00530030003000300031003200330037003200340032005F0025005F0025005F0025005F

No.    6Ty.FUNCTION
NameRSD_IOBJ_CMP_GET

I_BYPASS_BUFFER

2
0
0
0
2000
I_IOBJNM
0FACTCOUNT
344454454522222222222222222222
061343F5E400000000000000000000
000000000000000000000000000000
000000000000000000000000000000
3000460041004300540043004F0055004E005400200020002000200020002000200020002000200020002000200020
I_OBJVERS
A
4
1
0
0
4100
E_T_IOBJ_CMP
Table[initial]

G_TS_IOBJ_CMP
Table[initial]

L_S_IOBJ_CMP
                               0000
222222222222222222222222222222233332222222222222222222222222222222
000000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
%_PRINT
    001RSUPGRCHEDDI                                                                      X8#A#
2222333555545444444222222222222222222222222222222222222222222222222222222222222222222222253040
0000001235072385449000000000000000000000000000000000000000000000000000000000000000000000088010
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
2000200020002000300030003100520053005500500047005200430048004500440044004900200020002000200020
L_S_IOBJ_CMP-IOBJNM

222222222222222222222222222222
000000000000000000000000000000
000000000000000000000000000000
000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
SYST-REPID
SAPLRSDG_IOBJ_DB_READ
5454554454444544554442222222222222222222
310C2347F9F2AF42F25140000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
5300410050004C0052005300440047005F0049004F0042004A005F00440042005F0052004500410044002000200020
L_S_IOBJ_CMP-OBJVERS

2
0
0
0
2000
%_SPACE

2
0
0
0
2000
RS_C_RANGE_OPT
  EQLTLEGTGEBTCPNENBNP
2245454445444545444445
0051C4C574752430E5E2E0
0000000000000000000000
0000000000000000000000
20002000450051004C0054004C004500470054004700450042005400430050004E0045004E0042004E005000
SPACE

2
0
0
0
2000
RSD_C_ATR_DELIMITER
__
55
FF
00
00
5F005F00
L_SUBRC
8
0000
8000
08000000
RS_C_TRUE
X
5
8
0
0
5800
<%_TABLE_RSDVUNI>
???
??????
??????
????????????
SY-REPID
SAPLRSDG_IOBJ_DB_READ
5454554454444544554442222222222222222222
310C2347F9F2AF42F25140000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
5300410050004C0052005300440047005F0049004F0042004A005F00440042005F0052004500410044002000200020
SY-XPROG
SAPCNVE
5454454222222222222222222222222222222222
3103E65000000000000000000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
53004100500043004E0056004500200020002000200020002000200020002000200020002000200020002000200020
%_##TVREG_001

2
0
0
0
2000
%_DUMMY$$

2222
0000
0000
0000
2000200020002000
RS_C_FALSE

2
0
0
0
2000
SY-SUBRC
0
0000
0000
00000000
%_VIASELSCR
#
0
4
04
SY-LANGU
E
4
5
0
0
4500

No.    5Ty.FUNCTION
NameRSD_VIOBJ_COMPLETE

C_S_VIOBJ
0FACTCOUNT                    AKYFACTX XFACTCOUNT                     2.0/01####           SAP
3444544545222222222222222222224454445525444544545222222222222222222222323233000022222222222545
061343F5E4000000000000000000001B9613480861343F5E40000000000000000000002E0F01000000000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000C00000000000000
3000460041004300540043004F0055004E005400200020002000200020002000200020002000200020002000200020
C_S_VIOBJ-REFTP
F
4
6
0
0
4600
%_SPACE

2
0
0
0
2000
SY-REPID
SAPLRSDN_IOBJ
5454554454444222222222222222222222222222
310C234EF9F2A000000000000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
5300410050004C005200530044004E005F0049004F0042004A00200020002000200020002000200020002000200020
CL_RSD_IOBJ_UTILITIES=>N_C_REFOBJTP_BON_FIELD
F
4
6
0
0
4600
RSD_C_CMPSTA
12
233
012
000
000
200031003200
C_S_VIOBJ-CMPOFFSET
0
0000
0000
00000000
SYST-REPID
SAPLRSDN_IOBJ
5454554454444222222222222222222222222222
310C234EF9F2A000000000000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
5300410050004C005200530044004E005F0049004F0042004A00200020002000200020002000200020002000200020
C_S_VIOBJ-OBJVERS
A
4
1
0
0
4100
RS_C_OBJVERS-ACTIVE
A
4
1
0
0
4100
C_S_VIOBJ-CMPSTA

2
0
0
0
2000
RSD_C_CMPSTA-INI

2
0
0
0
2000
C_S_VIOBJ-IOBJTP
KYF
454
B96
000
000
4B0059004600
RSD_C_OBJTP-KEYFIGURE
KYF
454
B96
000
000
4B0059004600
RSD_C_OBJTP
CHAKYFTIMUNIDPAATRMTA
444454544544454455454
381B9649D5E9401142D41
000000000000000000000
000000000000000000000
4300480041004B0059004600540049004D0055004E0049004400500041004100540052004D0054004100
L_T_IOBJ_CMP
Table[initial]

L_OFFSET
0
0000
0000
00000000
RSD_C_DOMANM_DATE
DATUM
445542222222222222222222222222
4145D0000000000000000000000000
000000000000000000000000000000
000000000000000000000000000000
44004100540055004D0020002000200020002000200020002000200020002000200020002000200020002000200020
C_S_VIOBJ-IOBJNM
0FACTCOUNT
344454454522222222222222222222
061343F5E400000000000000000000
000000000000000000000000000000
000000000000000000000000000000
3000460041004300540043004F0055004E005400200020002000200020002000200020002000200020002000200020
SYST
##########################A###P#################ż#############################T#######⨰# u####
0000000000000000000000000040005000000010000000007000000000000000000000000000105000000030270000
000060500000000000007010101010000000004000000000C000000000000000000000000000604000000000050400
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000
00000000000000000000000000000000000000000000000010000000000000000000000000000000000000A000000C
0000000000000000060000000500000000000000000000000000000000000000000000000000000007000000010000
RS_C_OBJVERS-MODIFIED
M
4
D
0
0
4D00
RS_C_OBJVERS-NEW
N
4
E
0
0
4E00
%_DUMMY$$

2222
0000
0000
0000
2000200020002000
RSD_C_ATRTP-NAVIGATION
NAV
445
E16
000
000
4E0041005600
RSD_C_DOMANM_TIME
TIME
544422222222222222222222222222
49D500000000000000000000000000
000000000000000000000000000000
000000000000000000000000000000
540049004D004500200020002000200020002000200020002000200020002000200020002000200020002000200020

No.    4Ty.FORM
NameFILL_VIOBJ_BUFFER_COMPLETE

RSDG_C_CONVEXIT_UUID
%UUID
25544
55594
00000
00000
25005500550049004400
RSD_C_DPANM-ACTUALDATA_V
0ACTUALDATV
344554444552222222222222222222
013451C41460000000000000000000
000000000000000000000000000000
000000000000000000000000000000
3000410043005400550041004C00440041005400560020002000200020002000200020002000200020002000200020
RSD_C_CMPTP-REF_KEYFIGURE
4
3
4
0
0
3400
L_SUBRC
0
0000
0000
00000000
L_S_VIOBJ
0FACTCOUNT                    AKYFACTX XFACTCOUNT                     2.0/01####           SAP
3444544545222222222222222222224454445525444544545222222222222222222222323233000022222222222545
061343F5E4000000000000000000001B9613480861343F5E40000000000000000000002E0F01000000000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000C00000000000000
3000460041004300540043004F0055004E005400200020002000200020002000200020002000200020002000200020
G_TH_VIOBJ
Table IT_121[15x2432]
\FUNCTION-POOL=RSDG_IOBJ_DB_READ\DATA=G_TH_VIOBJ
Table reference: 27
TABH+  0(20) = 40C31900DF070000000000000000000000000000
TABH+ 20(20) = 1B000000790000000F00000080090000FFFFFFFF
TABH+ 40(16) = 0465000020C4040004000000A425C000
store        = 0x40C31900DF070000
ext1         = 0x0000000000000000
shmId        = 0     (0x00000000)
id           = 27    (0x1B000000)
label        = 121   (0x79000000)
fill         = 15    (0x0F000000)
leng         = 2432  (0x80090000)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000008
occu         = 4     (0x04000000)
accKind      = 4     (ItAccessHashed)
idxKind      = 0     (ItIndexNone)
uniKind      = 1     (ItUniYes)
keyKind      = 3     (user defined)
cmpMode      = 2     (cmpSingleMcmpR)
occu0        = 1
stMode       = 0
groupCntl    = 0
rfc          = 0
unShareable  = 0
mightBeShared = 0
sharedWithShmTab = 0
isShmLockId  = 0
isUsed       = 1
isCtfyAble   = 1
hasScndKeys  = 0
hasRowId     = 0
scndKeysOutdated = 0
scndUniKeysOutdated = 0
----- Shareable Table Header Data -----
tabi         = 0x60CC1900DF070000
pgHook       = 0xD0571900DF070000
idxPtr       = 0xC0C31900DF070000
id           = 120   (0x78000000)
shmTabhSet   = 0x0000000000000000
refCount     = 0     (0x00000000)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 16    (0x10000000)
lineAlloc    = 16    (0x10000000)
shmVersId    = 0     (0x00000000)
shmRefCount  = 1     (0x01000000)
rowId        = 18446744073709551615
scndKeyAdmin = 0x0000000000000000

0ALEAFNODCH                   ADPAACT  XALEAFNODCH                    7.0/00#偐允貕X          SAP
3444444444422222222222222222224454445225444444444422222222222222222222323233054952222222222545
01C516EF438000000000000000000014011340081C516EF438000000000000000000007E0F00201580000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000055800000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000001C00000000000000
300041004C004500410046004E004F0044004300480020002000200020002000200020002000200020002000200020

0ALEAFNODSP                   ADPAACT  XALEAFNODSP                    7.0/00#偐剁鱰X          SAP
3444444445522222222222222222224454445225444444445522222222222222222222323233054752222222222545
01C516EF430000000000000000000014011340081C516EF430000000000000000000007E0F00201080000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000055900000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000002C00000000000000
300041004C004500410046004E004F0044005300500020002000200020002000200020002000200020002000200020

0BUCKET                       ACHAACT  XBUCKET                        3.0/01#匐儁ఁ           SAP
3454445222222222222222222222224444445225454445222222222222222222222222323233010022222222222545
0253B54000000000000000000000001381134008253B540000000000000000000000003E0F01201100000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000055000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000031C00000000000000
30004200550043004B0045005400200020002000200020002000200020002000200020002000200020002000200020

0CALDAY                       ATIMACT  XCALDAY                        1.2/01####           SAP
3444445222222222222222222222224544445225444445222222222222222222222222323233000022222222222545
031C41900000000000000000000000149D13400831C4190000000000000000000000001E2F01000000000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000C00000000000000
3000430041004C00440041005900200020002000200020002000200020002000200020002000200020002000200020

0CALMONTH                     ATIMACT  XCALMONTH                      1.2/01####           SAP
3444444542222222222222222222224544445225444444542222222222222222222222323233000022222222222545
031CDFE48000000000000000000000149D13400831CDFE4800000000000000000000001E2F01000000000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000C00000000000000
3000430041004C004D004F004E00540048002000200020002000200020002000200020002000200020002000200020
<%_TABLE_RSDNAIP>
???
??????
??????
????????????
RSD_C_KYFTP-QUANTITY
QUA
554
151
000
000
510055004100

No.    3Ty.FORM
NameGET_IOBJS_FROM_DB

SYST
##########################A###P#################ż#############################T#######⨰# u####
0000000000000000000000000040005000000010000000007000000000000000000000000000105000000030270000
000060500000000000007010101010000000004000000000C000000000000000000000000000604000000000050400
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000
00000000000000000000000000000000000000000000000010000000000000000000000000000000000000A000000C
0000000000000000060000000500000000000000000000000000000000000000000000000000000007000000010000
E_T_VIOBJ
Table[initial]

I_READ_ALL
X
5
8
0
0
5800
RSD_C_OBJTP-UNIT
UNI
544
5E9
000
000
55004E004900
I_OBJVERS
A
4
1
0
0
4100
I_BYPASS_BUFFER

2
0
0
0
2000
I_LANGU
E
4
5
0
0
4500
L_SUBRC
0
0000
0000
00000000
G_IOBJ_CMP_ALL_READ

2
0
0
0
2000
RSD_C_METAIOBJ-RESTNODE
1HIER_REST
344455545522222222222222222222
18952F253400000000000000000000
000000000000000000000000000000
000000000000000000000000000000
310048004900450052005F005200450053005400200020002000200020002000200020002000200020002000200020
%_##TVREG_001

2
0
0
0
2000
I_NO_MESSAGE

2
0
0
0
2000

No.    2Ty.FUNCTION
NameRSD_IOBJ_MULTI_GET

I_BYPASS_BUFFER

2
0
0
0
2000
I_NO_MESSAGE

2
0
0
0
2000
I_OBJVERS
A
4
1
0
0
4100
I_READ_ALL
X
5
8
0
0
5800
E_NOT_ALL_OBJ_READ

2
0
0
0
2000
E_T_ATR
Table[initial]

E_T_ATRNAVT
Table[initial]

E_T_ATR_NAV
Table[initial]

E_T_DPA
Table[initial]

E_T_IOBJNM_BCT_COMP_INA
Table[initial]

E_T_IOBJT
Table[initial]

E_T_IOBJ_CMP
Table[initial]

E_T_IOBJ_DTEL
Table[initial]

E_T_KYF
Table[initial]

E_T_TIM
Table[initial]

E_T_UNI
Table[initial]

E_T_VCHA
Table[initial]

E_T_VIOBJ
Table[initial]

C_T_IOBJ
Table[initial]

SY-MSGID
DA
44222222222222222222
41000000000000000000
00000000000000000000
00000000000000000000
44004100200020002000200020002000200020002000200020002000200020002000200020002000
SY-MSGNO
300
333
300
000
000
330030003000
RSD_C_OBJTP-TIME
TIM
544
49D
000
000
540049004D00
SYST
##########################A###P#################ż#############################T#######⨰# u####
0000000000000000000000000040005000000010000000007000000000000000000000000000105000000030270000
000060500000000000007010101010000000004000000000C000000000000000000000000000604000000000050400
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000
00000000000000000000000000000000000000000000000010000000000000000000000000000000000000A000000C
0000000000000000060000000500000000000000000000000000000000000000000000000000000007000000010000
L_S_VIOBJ
                                                                            ####
2222222222222222222222222222222222222222222222222222222222222222222222222222000022222222222222
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000C00000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020

No.    1Ty.EVENT
NameSTART-OF-SELECTION

SY-MSGV2

22222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
SY-MSGV3

22222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
SY-MSGV4

22222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
L_DUMMY
I
4
9
0
0
4900
SY-MSGID
DA
44222222222222222222
41000000000000000000
00000000000000000000
00000000000000000000
44004100200020002000200020002000200020002000200020002000200020002000200020002000
%_SSCR[]
Table IT_2[9x492]
\PROGRAM=RSUPGRCHECK\DATA=%_SSCR[]
Table reference: 1
TABH+  0(20) = 70680C00DF070000000000000000000000000000
TABH+ 20(20) = 010000000200000009000000EC010000FFFFFFFF
TABH+ 40(16) = 040000009033010009000000C110C800
store        = 0x70680C00DF070000
ext1         = 0x0000000000000000
shmId        = 0     (0x00000000)
id           = 1     (0x01000000)
label        = 2     (0x02000000)
fill         = 9     (0x09000000)
leng         = 492   (0xEC010000)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000006
occu         = 9     (0x09000000)
accKind      = 1     (ItAccessStandard)
idxKind      = 0     (ItIndexNone)
uniKind      = 2     (ItUniNo)
keyKind      = 1     (default)
cmpMode      = 8     (cmpManyEq)
occu0        = 0
stMode       = 0
groupCntl    = 0
rfc          = 0
unShareable  = 0
mightBeShared = 1
sharedWithShmTab = 0
isShmLockId  = 0
isUsed       = 1
isCtfyAble   = 1
hasScndKeys  = 0
hasRowId     = 0
scndKeysOutdated = 0
scndUniKeysOutdated = 0
----- Shareable Table Header Data -----
tabi         = 0x00570C00DF070000
pgHook       = 0x0000000000000000
idxPtr       = 0x0000000000000000
id           = 4     (0x04000000)
shmTabhSet   = 0x0000000000000000
refCount     = 2     (0x02000000)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 9     (0x09000000)
lineAlloc    = 9     (0x09000000)
shmVersId    = 0     (0x00000000)
shmRefCount  = 3     (0x03000000)
rowId        = 18446744073709551615
scndKeyAdmin = 0x0000000000000000

%_SKP000䉀#B ##
2554533340420022222222222222222222222222222222222222222222222222222222222222222222222222222222
5F3B00000F200000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000
25005F0053004B00500030003000300040420F00420020000000000020002000200020002000200020002000200020

%BDCH001䉁#K ##     B1
2444433340420022222432222222222222222222222222222222222222222222222222222222222222222222222222
524380011FB00000000210000000000000000000000000000000000000000000000000000000000000000000000000
0000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000
2500420044004300480030003000310041420F004B0020000000000020002000200020002000420031002000200020

P_IOBJ  䉂#P ##CCHARRS_BOOL
5544442240520044445555444422222222222222222222222222222222222222222222222222222222222222222222
0F9F2A002F00103381223F2FFC00000000000000000000000000000000000000000000000000000000000000000000
0000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000
50005F0049004F0042004A002000200042420F00500020000100000043004300480041005200520053005F0042004F

P_ODSO  䉃#P ##CCHARRS_BOOL
5544542240520044445555444422222222222222222222222222222222222222222222222222222222222222222222
0FF43F003F00103381223F2FFC00000000000000000000000000000000000000000000000000000000000000000000
0000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000
50005F004F00440053004F002000200043420F00500020000100000043004300480041005200520053005F0042004F

P_CUBE  䉄#P ##CCHARRS_BOOL
5545442240520044445555444422222222222222222222222222222222222222222222222222222222222222222222
0F3525004F00103381223F2FFC00000000000000000000000000000000000000000000000000000000000000000000
0000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000
50005F0043005500420045002000200044420F00500020000100000043004300480041005200520053005F0042004F
SY-MSGNO
300
333
300
000
000
330030003000
SY-MSGTY
E
4
5
0
0
4500
%_SSCR
%BDCH001䉈#K ##     B1
2444433340420022222432222222222222222222222222222222222222222222222222222222222222222222222222
524380018FB00000000210000000000000000000000000000000000000000000000000000000000000000000000000
0000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000
2500420044004300480030003000310048420F004B0020000000000020002000200020002000420031002000200020
SY-MSGV1

22222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
VARI
000VARSUPGRCHECK                             SAP&VAR1      ###00000000000000      T#ĂȂ#ㄱ〰##´#ἒ
3335455554544444222222222222222222222222222225452545322222200033333333333333222222500003300B01
000612350723853B000000000000000000000000000003106612100000000000000000000000000000402201000402
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000003300001
000000000000000000000000000000000000000000000000000000000000000000000000000000000006120100000F
3000300030005600410052005300550050004700520043004800450043004B00200020002000200020002000200020
SY-LDBPG
SAPDB__S
5454455522222222222222222222222222222222
31042FF300000000000000000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
530041005000440042005F005F00530020002000200020002000200020002000200020002000200020002000200020
%_P_ODSO_%_APP_%
P_ODSO
554454222222222222222222222222
0FF43F000000000000000000000000
000000000000000000000000000000
000000000000000000000000000000
50005F004F00440053004F002000200020002000200020002000200020002000200020002000200020002000200020
RS_C_OBJVERS-ACTIVE
A
4
1
0
0
4100
RS_C_TRUE
X
5
8
0
0
5800
%_P_CUBE_%_APP_%
InfoCubes
466647667222222222222222222222
9E6F35253000000000000000000000
000000000000000000000000000000
000000000000000000000000000000
49006E0066006F00430075006200650073002000200020002000200020002000200020002000200020002000200020
L_T_ATR
Table[initial]

P_CUBE
X
5
8
0
0
5800
L_T_VIOBJ
Table[initial]

P_TRFR
X
5
8
0
0
5800
L_S_VIOBJ
                                                                            ####
2222222222222222222222222222222222222222222222222222222222222222222222222222000022222222222222
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000C00000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
%_P_LOG_%_APP_%
....Display Log
222246776672466222222222222222
EEEE4930C190CF7000000000000000
000000000000000000000000000000
000000000000000000000000000000
2E002E002E002E0044006900730070006C006100790020004C006F0067002000200020002000200020002000200020
L_S_VIOBJ-IOBJTP

222
000
000
000
200020002000
RSD_C_OBJTP-CHARACT
CHA
444
381
000
000
430048004100

Internal notes
The termination was triggered in function "ab_genprog"
of the SAP kernel, in line 1843 of the module
"//bas/720_REL/src/krn/runt/abgen.c#11".
The internal operation just processed is "PAR4".
Internal mode was started at 20140508212041.
Program name.........: "CL_RSRTS_METADATA_ODP=========CP ".
Error message........: ""L_S_HEADER-APPL_COMP" is not type-compatible with
formal parameter "I".

Active Calls in SAP Kernel

Lines of C Stack in Kernel (Structure Differs on Each Platform)

SAP (R) - R/3(TM) Callstack, Version 1.0
Copyright (C) SAP AG. All rights reserved.
Callstack without Exception:
App       : disp+work.EXE (pid=9036)
When      : 5/8/2014 21:20:42.828
Threads   : 2
Computer Name       : SAP-DEVL
User Name           : SAPServiceRFD
Number of Processors: 12
Processor Type: Intel64 Family 6 Model 45 Stepping 7
Windows Version     : 6.2 Current Build: 9200
State Dump for Thread Id 1dcc
0000000002E35020 000007F766791081 0020002000200020 disp+work!DumpStacks [ntstcdbg.c (548)]
0000000002E35120 000007F765318B64 000000005D182710 disp+work!NTDebugProcess [ntstcdbg.c (383)]
0000000002E35150 000007F76552DC89 000000005D182710 disp+work!CTrcStack2 [dptstack.c (354)]
0000000002E351A0 000007F7655332EF 0000000002E35BC0 disp+work!rabax_CStackSave [abrabax.c (8695)]
0000000002E35AB0 000007F76550D95B 0000000000000000 disp+work!ab_rabax [abrabax.c (1442)]
0000000002E38910 000007F7657D5A6D 0000000000000001 disp+work!ab_genprog [abgen.c (1847)]
0000000002E389F0 000007F7657D6353 000000000000BABA disp+work!newload [abload1.c (353)]
0000000002E38A20 000007F7657D655E 0000000000000000 disp+work!ab_LoadProgOrTrfo [abload1.c (159)]
0000000002E38A50 000007F76581D1FC 0000000002E38AE0 disp+work!ab_LoadProg [abload1.c (94)]
0000000002E38B40 000007F76581D46A 00000000AD1D652A disp+work!LoadGlobalClass [abobject.c (990)]
0000000002E38B80 000007F7657B55B7 0000000000000000 disp+work!ab_LoadGlobalClassNoActivate [abobjec
0000000002E38C70 000007F7657B60AA 0000000000000014 disp+work!GetTypeByRelName [abdescr1.c (3189)]
0000000002E38D20 000007F7657BB29B 0000000002E38D78 disp+work!ab_GetTypeByName [abdescr1.c (3667)]
0000000002E38E60 000007F7657BBFCB 000007DF001A7118 disp+work!DescribeAdmName [abdescr1.c (4440)]
0000000002E38F70 000007F76554F172 0000000000000015 disp+work!ab_SystemCallDescribe [abdescr1.c (61
0000000002E390E0 000007F76551D251 0000000000000000 disp+work!ab_jsysc [absyscal.c (1596)]
0000000002E39260 000007F76558FE50 0000000000000340 disp+work!ab_extri [abextri.c (676)]
0000000002E392B0 000007F7655905F5 0000000000000000 disp+work!ab_xevent [abrunt1.c (336)]
0000000002E39340 000007F76556DC59 000007DF000002A0 disp+work!ab_trigg [abrunt1.c (57)]
0000000002E393D0 000007F765384776 0000000000000016 disp+work!ab_run [absubmit.c (511)]
0000000002E39580 000007F76538924D 0000000000000000 disp+work!dynpmcal [dymainstp.c (2742)]
0000000002E39610 000007F7653884F4 0000000002E397F0 disp+work!dynppai0 [dymainstp.c (1359)]
0000000002E396E0 000007F765341D0F 0000000000000020 disp+work!dynprctl [dymainstp.c (473)]
0000000002E3F940 000007F7651C7ACB 0000000000000000 disp+work!dynpen00 [dymain.c (2070)]
0000000002E3FC10 000007F7651C82D7 FFFFFFFFFFFFFF00 disp+work!TskhLoop [thxxhead.c (4960)]
0000000002E3FC70 000007F7650ED9C6 000000000345B148 disp+work!ThStart [thxxhead.c (1199)]
0000000002E3FD10 000007F7650C10A1 FFFFFFFF00000001 disp+work!DpMain [dpxxdisp.c (1200)]
0000000002E3FD40 000007F766A70E2E 0000000000000001 disp+work!nlsui_main [thxxanf.c (80)]
0000000002E3FD70 000007F98AA81832 0000000000000000 disp+work!__tmainCRTStartup [crtexe.c (552)]
0000000002E3FDA0 000007F98AD5D609 0000000000000000 KERNEL32!BaseThreadInitThunk
0000000002E3FDF0 0000000000000000 0000000000000000 ntdll!RtlUserThreadStart
State Dump for Thread Id 2220
000000000C08FDA0 000007F98801B101 000000FF00000002 ntdll!ZwFsControlFile
000000000C08FE10 000007F766962BCF FFFFFFFFFFFFFFFE KERNELBASE!ConnectNamedPipe
000000000C08FEB0 000000005D0F1D9F 0000000003DC0140 disp+work!SigIMsgFunc [signt.c (717)]
000000000C08FEE0 000000005D0F1E3B 000000005D182AC0 MSVCR100!endthreadex
000000000C08FF10 000007F98AA81832 0000000000000000 MSVCR100!endthreadex
000000000C08FF40 000007F98AD5D609 0000000000000000 KERNEL32!BaseThreadInitThunk
000000000C08FF90 0000000000000000 0000000000000000 ntdll!RtlUserThreadStart

List of ABAP programs affected

IndexTypProgramGroupDateTimeSizeLang.

     0PrgRSUPGRCHECK     008.05.201401:15:04    95232E
     1PrgSAPMSSY0     113.12.201302:58:04   111616E
     2PrgSAPMSSYD     113.12.201305:11:03    27648E
     3PrgSAPFSYSCALLS     109.09.200414:18:32     8192E
     4PrgRSDBRUNT     013.12.201305:10:51   306176E
     5PrgSAPLSPRI     509.03.201422:50:55   412672E
     6TypPRI_PARAMS     002.11.199809:46:12     5120
     7TypARC_PARAMS     028.08.199708:36:28     5120
     8TypPRI_LAYOUT     006.11.200320:30:04     3072
     9TypPRIPAR_EXT     008.09.201114:21:28     3072
    10TypPRIPAR_EX2     008.09.201114:21:28     2048
    11TypPRIPAR_EX3     008.09.201114:21:28     3072
    12TypTPRI_DEF     009.11.200014:24:28     5120
    13PrgSAPLSPOO    1309.03.201422:59:14   189440E
    14TypTSP03     002.11.199809:57:05     5120
    15TypUSR01     008.09.201114:25:08     4096
    16TypTSP1D     008.09.201114:24:13     5120
    17PrgSAPLRSPOLSTDRV    1718.06.200908:32:31    64512E
    18TypTSPOPTIONS     029.01.199719:13:56     2048
    19PrgSAPCNVE    1909.09.200414:36:10     9216E
    20PrgSAPLSPOC    2009.03.201422:48:00   178176E
    21TypRSPOCHECK     013.08.199712:53:10     4096
    22TypDEVPAR     008.09.201114:26:09     3072
    23TypRSPOATTR     010.11.199917:44:19     2048
    24TypRSSCR     030.03.200510:21:45     5120
    25PrgRSDBSPBL     010.08.201113:47:05    84992E
    26PrgSAPDB__S     030.03.200510:22:01    21504E
    27TypVARID     012.05.199716:51:30     5120
    28TypSSCRFIELDS     013.05.199712:54:26     5120
    29PrgRSDBSPVA     009.03.201422:51:09   161792E
    30Prg%_CSYDB0     017.06.200913:36:11    40960E
    31PrgSAPLSVAR    3109.03.201422:59:29   970752E
    32TypVARIS     012.05.199715:27:21     2048
    33TypRSVAMEMKEY     007.05.199713:07:49     2048
    34PrgRSDBSPMC     017.06.200913:36:11    92160E
    35TypDDSHDESCR     003.09.199703:05:16     4096
    36TypSPPARAMS     007.05.199713:10:38     2048
    37PrgSAPLICON    3717.12.200716:04:40    31744E
    38Prg%_CICON    3713.12.201304:46:30   132096E
    39TypICONT     012.09.200611:25:01     2048
    40PrgSAPLSABE    4013.12.201304:36:55    14336E
    41PrgSAPLSECU    4109.03.201422:58:35   114688E
    42TypRSSUBINFO     014.10.199922:01:03     3072
    43PrgRSDBSPVD     008.09.201115:23:28   102400E
    44TypDFIES     008.09.201114:18:19    10240
    45TypVARI     012.05.199715:27:09     6144
    46TypRVARI     030.03.199809:40:50     4096
    47TypRSVARIVDAT     004.04.199516:12:54     2048
    48TypRSVARKEY     007.05.199713:07:54     2048
    49PrgSAPLSSEL    4909.03.201422:59:24  1701888E
    50PrgRSDBSPDS     013.12.201304:46:32    66560E
    51TypRSEXFCODE     013.08.199712:52:57     2048
    52PrgSAPLDSYA    5218.09.201302:46:20    52224E
    53PrgSAPFSDS1    5230.03.200510:22:01    61440E
    54TypTDCLD     002.11.199809:51:35     5120
    55PrgSAPLSDOD    5513.12.201305:06:11    50176E
    56TypDOKIL     012.05.199716:46:17     3072
    57PrgSAPLLANG    5713.12.201303:11:44    13312E
    58TypT002     010.09.200714:53:12     2048
    59PrgSAPFSPOR     012.06.200813:33:02    16384E
    60TypRSPARINT     010.04.199509:58:38     2048
    61PrgSAPLSCNT    6118.02.200514:16:06    34816E
    62PrgSAPSHDTV    6113.12.201305:11:04    38912E
    63PrgSAPFS_SECLOG     113.12.201305:17:47    21504E
    64TypINDX     029.07.199818:38:15     6144
    65TypTSECLOG_SETTINGS     019.09.201323:39:22     2048
    66PrgSDYNPRAL     113.12.201305:23:33    14336E
    67PrgSAPLSDYNPRAL    6713.12.201305:19:27    13312E
    68TypDYNP_RAL_ID     013.12.201302:34:59     3072
    69TypDYNP_RAL_SCREEN     013.12.201302:34:59     2048
    70PrgCL_SRAL_RECORDER_FACTORY_DYNP=CP    7009.03.201423:00:45    17408E
    71PrgSRAL_DYNP_ADAPTER    6713.12.201305:23:38    23552E
    72PrgCL_SRAL_FACTORY_DYNP==========CP    7209.03.201423:00:44    25600E
    73PrgCL_SRAL_SWITCH_CLIENT=========CP    7313.12.201305:16:38    10240E
    74PrgSAPFGUICNTL     118.02.200514:15:08    27648E
    75PrgSAPLOLEA    7513.12.201303:53:47   111616E
    76PrgSAPLSGUI    7610.08.201112:45:24   105472E
    77PrgSAPLSTTM    7708.09.201115:16:06    79872E
    78PrgSAPLSBDC    7818.06.200909:21:28    49152E
    79PrgSAPLSFES    7913.12.201304:29:55   318464E
    80PrgSAPLTHFB    8013.12.201303:08:28   472064E
    81TypWPINFO     026.02.199914:49:01     6144
    82PrgSAPLURFC    8209.03.201422:47:53    28672E
    83PrgSAPLSPLUGIN    8308.09.201115:09:26     9216E
    84TypSWCBCONT     008.09.201114:24:16     3072
    85TypOLE_VERBS     004.04.199516:02:20     2048
    86TypOLE_PA     004.04.199516:02:19     2048
    87TypSSCRTEXTS     003.09.199703:12:33     3072
    88PrgCL_RSDRC_NCUM_GEN_TYPES=======CP    8819.09.201315:15:33     9216E
    89PrgSAPLRSMANDT    8920.09.201300:54:42    57344E
    90PrgSAPLRSVERS    9009.03.201422:43:55   373760E
    91PrgSAPLRS_GENERAL    9113.12.201304:16:07   121856E
    92TypBAL_S_MSG     008.09.201114:17:15     7168
    93PrgSAPLRSCC    9320.09.201300:54:37    45056E
    94PrgSAPLSDIFRUNTIME    9409.03.201422:50:49   123904E
    95TypX031L     008.09.201114:25:34     6144
    96PrgSAPLSDNT    9609.03.201422:51:06   280576E
    97PrgSAPLSUGS    9708.05.201401:14:33    93184E
    98TypRSCC_S_FIELD     018.12.200317:14:18     2048
    99Prg%_CRSCUS    9308.09.201116:11:25    30720E
   100TypRSADMINA     008.09.201114:27:41     6144
   101PrgSAPLRSDG_IOBJ_DB_READ   10113.12.201304:44:44   362496E
   102TypRSDIOBJV     008.09.201114:22:24     5120
   103TypRSD_S_VIOBJ     008.09.201114:27:44    30720
   104PrgSAPLRSDN_IOBJ   10420.09.201300:54:44   163840E
   105PrgCL_RSD_IOBJ_UTILITIES=========CP   10508.09.201116:18:00    57344E
   106PrgSAPLRSDN   10620.09.201300:54:44    86016E
   107TypRSNPAR     008.09.201114:27:45     3072
   108PrgSAPLSTR4   10813.12.201303:54:18    74752E
   109Prg%_CTRNSP   10818.02.200514:16:09    10240E
   110PrgSAPLSTRD   11013.12.201305:10:35   872448E
   111TypTRNSPACE     016.07.199714:46:18     3072
   112PrgSAPLSKEY   11213.12.201304:43:09    35840E
   113PrgSAPLSCP2   11309.03.201422:43:55   171008E
   114TypCODEPAGES     009.07.199723:51:03     2048
   115PrgCL_ABAP_CHAR_UTILITIES========CP   11517.09.201320:40:37    14336E
   116PrgSAPLRRSI   11620.09.201300:54:55   395264E
   117TypRSDIOBJFIX     008.09.201114:16:09     5120
   118PrgCL_RSD_CHABAS=================CP   11808.09.201116:17:30   155648E
   119PrgSAPLRSD_DDIF   11909.03.201422:34:48    50176E
   120TypRSDDTEL     008.09.201114:23:19     5120
   121TypDTELINFO     009.03.201422:34:48     8192
   122TypDTFLAG1     014.02.199807:04:39     2048
   123TypDTFLAG2     014.02.199807:04:39     2048
   124TypDTFLAG3     009.03.201422:34:48     2048
   125PrgCL_RSROA_VQ_SERVICES==========CP   12520.09.201300:54:42    87040E
   126PrgCL_RS_BASE====================CP   12620.09.201300:54:37    15360E
   127PrgCL_ABAP_ELEMDESCR=============CP   12718.06.200909:21:28    41984E
   128PrgCL_ABAP_DATADESCR=============CP   12818.06.200909:21:28    21504E
   129PrgCL_ABAP_TYPEDESCR=============CP   12918.09.201302:52:40    33792E
   130PrgCL_ABAP_REFDESCR==============CP   13018.09.201302:52:40    34816E
   131PrgCL_ABAP_STRUCTDESCR===========CP   13118.09.201302:52:40    49152E
   132PrgCL_ABAP_COMPLEXDESCR==========CP   13218.06.200909:21:28    19456E
   133PrgCL_ABAP_TABLEDESCR============CP   13308.09.201114:58:17    37888E
   134PrgCL_ABAP_CLASSDESCR============CP   13418.06.200909:21:28    34816E
   135PrgCL_ABAP_OBJECTDESCR===========CP   13518.06.200909:21:28    37888E
   136PrgCL_ABAP_INTFDESCR=============CP   13618.06.200909:21:28    27648E
   137PrgCL_ABAP_SOFT_REFERENCE========CP   13718.06.200909:21:27    10240E
   138PrgCL_ABAP_REFERENCE=============CP   13809.09.200414:18:16     8192E
   139PrgCL_RSRTS_METADATA=============CP   13920.09.201300:54:43   106496E
   140PrgCL_RSRTS_METADATA_R3IS========CP   14013.12.201304:44:43   157696E
   141PrgIF_RSRTS_METADATA=============IP   13420.09.201300:54:42    26624E
   142Prg%_CABAP   13418.06.200909:21:27    36864E
   143PrgIF_SERIALIZABLE_OBJECT========IP   13418.02.200514:13:43     5120E
   144PrgCL_RSROA_VQ_METADATA==========CP   14413.12.201304:44:43   252928E
   145PrgCL_RSL_ME_METADATA============CP   14513.12.201304:44:43   236544E
   146PrgIF_RSDRV_TREX_NAME_MAPPER=====IP   13420.09.201300:52:55     9216E
   147PrgCL_RSDDLTIP_IPROV_TABLE=======CP   14720.09.201300:54:55   147456E
   148PrgCL_RSAN_PR_ANPR_PROV_TRANSIENTCP   14813.12.201304:46:31   117760E
   149PrgCL_RSD_DTA====================CP   14913.12.201304:46:31   320512E
   150PrgIF_RSO_TLOGO_MAINTAIN=========IP   13420.09.201300:54:43    13312E
   151PrgIF_RSD_DTA====================IP   13420.09.201300:54:43    30720E
   152TypSYST     009.09.200414:18:12    30720
   153TypRSRTSDIRMETADATA     008.09.201114:23:29     2048
   154TypRSD_S_IOBJ_CMP     008.09.201114:27:44     3072
   155PrgIF_RSL_TLOGO==================IP   10119.09.201308:23:05    15360E
   156TypRSDVDPA     008.09.201114:27:44     9216

Directory of Application Tables

NameDateTimeLngth
Val.

ProgramRSUPGRCHECK

SYST09.09.200414:18:1200004612
\0\0\0\0\x0006\0\x0005\0\0\0\0\0\0\0\0\0\0\0\0\0\x0007\0
SY  .  .  :  :00004612
\0\0\0\0\x0006\0\x0005\0\0\0\0\0\0\0\0\0\0\0\0\0\x0007\0
VARI  .  .  :  :00003052
000VARSUPGRCHECK                             SAP&VAR1
SSCRFIELDS09.09.200414:18:0200001708

SSCRTEXTS  .  .  :  :00000742

ProgramRSDBRUNT

VARID  .  .  :  :00000252
   RSUPGRCHECK
DFIES  .  .  :  :00001350

ProgramSAPLSPRI

TSP03  .  .  :  :00000460
                                                     \0\0
USR01  .  .  :  :00000222
000DDIC                                 HK1
PRI_PARAMS  .  .  :  :00000380
    001RSUPGRCHEDDI
ARC_PARAMS  .  .  :  :00000660

TPRI_DEF  .  .  :  :00002932
000GV21            \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0
TSP1D  .  .  :  :00000320
                          0000000000

ProgramSAPLSPOO

TSP03  .  .  :  :00000460
LP01        HPLJIIID                                L\0\0
TSP1D  .  .  :  :00000320
X_PAPER         ANY     PL0001000010SAP         1998040711

ProgramSAPLRSPOLSTDRV

TSP03  .  .  :  :00000460
                                                     \0\0
TSPOPTIONS  .  .  :  :00000432

ProgramSAPLSVAR

VARIS  .  .  :  :00000122
000RSUPGRCHECK                             1000SAP&VAR1

ProgramSAPLICON

ICONT  .  .  :  :00000130

ProgramSAPFSDS1

TDCLD  .  .  :  :00000098
RE  DOKU  40R XX XXLIMUDOCUX (XR3TRPROGX         |

ProgramSAPLSDOD

DOKIL  .  .  :  :00000152

ProgramSAPLLANG

T002  .  .  :  :00000010
ES1EN|

ProgramSAPFS_SECLOG

INDX  .  .  :  :00003104
000%L%_SeclogExcludedCaller\0\0\0  00000000

ProgramSAPLRSCC

RSADMINA  .  .  :  :00000780
BW

ABAP Control Blocks (CONT)

IndexNameFlPAR0PAR1PAR2PAR3PAR4PAR5PAR6Source CodeLine

   40----000000<SYSINI>      50
   41xper16E90D00120019<SYSINI>      55
   43PERP800001<SYSINI>      55
   44PERP800002<SYSINI>      55
   45ENDM000000<SYSINI>      56
   46----000000<SYSINI>      56
   47METH140000000200010000000000000000CL_ABAP_TYPEDESCR=============CM002       1
   51PAR200000080000000CL_ABAP_TYPEDESCR=============CM002       1
   53PAR21D0000C0000000CL_ABAP_TYPEDESCR=============CM002       1
   55SYSC600004CL_ABAP_TYPEDESCR=============CM002       8
   56PAR40000008000001A001B001C00000000CL_ABAP_TYPEDESCR=============CM002       8
   60SYSC600001CL_ABAP_TYPEDESCR=============CM002      12
>>>>>PAR4000000001D8000001EC001001F0000CL_ABAP_TYPEDESCR=============CM002      12
   65TREA0602E2002000210021000000000000CL_ABAP_TYPEDESCR=============CM002      16
   69cmpr0000E200220000CL_ABAP_TYPEDESCR=============CM002      17
   71BRAF02001FCL_ABAP_TYPEDESCR=============CM002      17
   72BREL800000CL_ABAP_TYPEDESCR=============CM002      17
   73STCK050000CL_ABAP_TYPEDESCR=============CM002      18
   74ASSI0F0000004880010000000000000000CL_ABAP_TYPEDESCR=============CM002      18
   78clom100001002300010000000000000000CL_ABAP_TYPEDESCR=============CM002      18
former_member189797
Active Contributor
0 Kudos


Hello,


Could you please check this note.
1902094 - Syntax error in CL_RSRTS_METADATA_ODP

Thank you.

Best Regards,
Gaurav Pandey

Reagan
Advisor
Advisor
0 Kudos

Hello Letz

Based on the ABAP dump provided it looks like the issue is with the SAP kernel.

The SAP kernel is 720 and the OS is Windows 2012

According to PAM you should have 720 EXT kernel.

Replace the kernel with 720 EXT and see if that helps.

Also what does the work process 13 trace file say ?

Regards

RB

Former Member
0 Kudos

Hi Benjamin,

Thanks for the reply. Should I replace the Kernel in Upgrade directory..(SUM)?

Regards,

letz..

Former Member
0 Kudos

Hi Benjamin,

I have updated the kernel 720EXT but the error still exist.

Below is the st22 dump.

CategoryABAP Programming Error
Runtime ErrorsSYNTAX_ERROR
ABAP ProgramCL_RSRTS_METADATA_ODP=========CP
Application ComponentBW-BEX-OT
Date and Time09.05.201401:26:28

Short text
Syntax error in program "CL_RSRTS_METADATA_ODP=========CP ".

What happened?
Error in the ABAP Application Program

The current ABAP program "CL_ABAP_TYPEDESCR=============CP" had to be
terminated because it has
come across a statement that unfortunately cannot be executed.

The following syntax error occurred in program
"CL_RSRTS_METADATA_ODP=========CP " in include
"CL_RSRTS_METADATA_ODP=========CM001 " in
line 47:
""L_S_HEADER-APPL_COMP" is not type-compatible with formal parameter "I"
"_APPL_COMP"."
" "
" "

The include has been created and last changed by:
Created by: "SAP "
Last changed by: "SAP "
Error in the ABAP Application Program

The current ABAP program "CL_ABAP_TYPEDESCR=============CP" had to be
terminated because it has
come across a statement that unfortunately cannot be executed.

What can you do?
Please eliminate the error by performing a syntax check
(or an extended program check) on the program "CL_RSRTS_METADATA_ODP=========CP
".
You can also perform the syntax check from the ABAP Editor.

If the problem persists, proceed as follows:
Note down which actions and inputs caused the error.

To process the problem further, contact you SAP system
administrator.

Using Transaction ST22 for ABAP Dump Analysis, you can look
at and manage termination messages, and you can also
keep them for a long time.

Error analysis
The following syntax error was found in the program
CL_RSRTS_METADATA_ODP=========CP :
""L_S_HEADER-APPL_COMP" is not type-compatible with formal parameter "I"
"_APPL_COMP"."
" "
" "

How to correct the error
Probably the only way to eliminate the error is to correct the program.
-
If you cannot solve the problem yourself and want to send an error
notification to SAP, include the following information:

1. The description of the current problem (short dump)

   To save the description, choose "System->List->Save->Local File
(Unconverted)".

2. Corresponding system log

   Display the system log by calling transaction SM21.
   Restrict the time interval to 10 minutes before and five minutes
after the short dump. Then choose "System->List->Save->Local File
(Unconverted)".

3. If the problem occurs in a problem of your own or a modified SAP
program: The source code of the program
   In the editor, choose "Utilities->More
Utilities->Upload/Download->Download".

4. Details about the conditions under which the error occurred or which
actions and input led to the error.

System environment
SAP Release..... 731
SAP Basis Level. 0010

Application server... "SAP-DEVL"
Network address...... "128.128.128.172"
Operating system..... "Windows NT"
Release.............. "6.2"
Hardware type........ "12x AMD64 Level"
Character length.... 16 Bits
Pointer length....... 64 Bits
Work process number.. 12
Shortdump setting.... "full"

Database server... "SAP-DEVL"
Database type..... "SYBASE"
Database name..... "RFD"
Database user ID.. "SAPSR3"

Terminal.......... " "

Char.set.... "C"

SAP kernel....... 720
created (date)... "Mar 9 2014 22:55:07"
create on........ "NT 6.0 6002 S x86 MS VC++ 16.00"
Database version. "Sybase ASE 15.7.0.506 "

Patch level. 600
Patch text.. " "

Database............. "15.7"
SAP database version. 720
Operating system..... "Windows NT 5.1, Windows NT 5.2, Windows NT 6.0, Windows
NT 6.1, Windows NT 6.2, Windows NT 6.3"

Memory consumption
Roll.... 0
EM...... 12569376
Heap.... 0
Page.... 24576
MM Used. 2389056
MM Free. 1798064

User and Transaction
Client.............. 000
User................ "DDIC"
Language key........ "E"
Transaction......... " "
Transaction ID...... "CAFFD6E372D9F18E93FEF01FAFCE7A27"

EPP Whole Context ID.... 35333641413935423533364141393542
EPP Connection ID....... 35333643303439323533364330343932
EPP Caller Counter...... 1

Program............. "CL_ABAP_TYPEDESCR=============CP"
Screen.............. "SAPMSSY0 1000"
Screen Line......... 6
Debugger Active..... "none"

Information on where terminated
Termination occurred in the ABAP program "CL_ABAP_TYPEDESCR=============CP" -
in "DESCRIBE_BY_NAME".
The main program was "RSUPGRCHECK ".

In the source code you have the termination point in line 12
of the (Include) program "CL_ABAP_TYPEDESCR=============CM002".
The program "CL_ABAP_TYPEDESCR=============CP" was started as a background job.
Job Name....... "RSUPGRCHECK"
Job Initiator.. "DDIC"
Job Number..... 01262600

Source Code Extract

LineSourceCde

    1method describe_by_name .
    2
    3  data:
    4    crc type XTYPE_TYPE,
    5    res like p_descr_ref.
    6
    7* check name for sequence of c
    8  system-call check p_name for sequence of c
    9    class 'CL_ABAP_TYPEDESCR' method 'DESCRIBE_BY_NAME' parameter 'P_NAME'.
   10
   11* get administration information
>>>>>  system-call describe administration
   13    mode 'N' of p_name into admin_tab_line-xtype crc admin_tab_line-kind.
   14
   15* look at hash tabel wether descr object already exists
   16  read table admin_tab from admin_tab_line into admin_tab_line.
   17  if sy-subrc = 0.
   18    res ?= admin_tab_line-ref->get( ).
   19    if res is bound.
   20      p_descr_ref = res.
   21      return.
   22    endif.
   23    delete table admin_tab from admin_tab_line.
   24  endif.
   25
   26* create new descr object
   27  case admin_tab_line-kind.
   28    when kind_elem.
   29      raise event create_elemdescr
   30        exporting xtype = admin_tab_line-xtype.
   31    when kind_ref.

Contents of system fields

NameVal.

SY-SUBRC0
SY-INDEX0
SY-TABIX6
SY-DBCNT7
SY-FDPOS1
SY-LSIND0
SY-PAGNO0
SY-LINNO1
SY-COLNO1
SY-PFKEY
SY-UCOMM
SY-TITLE
SY-MSGTYE
SY-MSGIDDA
SY-MSGNO300
SY-MSGV1
SY-MSGV2
SY-MSGV3
SY-MSGV4
SY-MODNO0
SY-DATUM20140509
SY-UZEIT012626
SY-XPROGSAPCNVE
SY-XFORMCONVERSION_EXIT

Active Calls/Events

No.Ty.ProgramIncludeLine
Name

   10METHODCL_ABAP_TYPEDESCR=============CPCL_ABAP_TYPEDESCR=============CM002   12
CL_ABAP_TYPEDESCR=>DESCRIBE_BY_NAME
    9METHODCL_RSRTS_METADATA=============CPCL_RSRTS_METADATA=============CM00Q   12
CL_RSRTS_METADATA=>SYNTAX_CHECK
    8METHODCL_RSRTS_METADATA=============CPCL_RSRTS_METADATA=============CM00C    9
CL_RSRTS_METADATA=>CLASS_CONSTRUCTOR
    7METHODCL_RSROA_VQ_SERVICES==========CPCL_RSROA_VQ_SERVICES==========CM004    6
CL_RSROA_VQ_SERVICES=>IS_IOBJ_VIRTUAL
    6FUNCTIONSAPLRSDG_IOBJ_DB_READLRSDG_IOBJ_DB_READU19   47
RSD_IOBJ_CMP_GET
    5FUNCTIONSAPLRSDN_IOBJLRSDN_IOBJU23  300
RSD_VIOBJ_COMPLETE
    4FORMSAPLRSDG_IOBJ_DB_READLRSDG_IOBJ_DB_READF60  512
FILL_VIOBJ_BUFFER_COMPLETE
    3FORMSAPLRSDG_IOBJ_DB_READLRSDG_IOBJ_DB_READF60  279
GET_IOBJS_FROM_DB
    2FUNCTIONSAPLRSDG_IOBJ_DB_READLRSDG_IOBJ_DB_READU02   62
RSD_IOBJ_MULTI_GET
    1EVENTRSUPGRCHECKRSUPGRCHECK  156
START-OF-SELECTION

Chosen variables

Name
Val.

No.   10Ty.METHOD
NameCL_ABAP_TYPEDESCR=>DESCRIBE_BY_NAME

P_NAME
CL_RSRTS_METADATA_ODP
445555555445444545445222222222
3CF23243FD5414141FF40000000000
000000000000000000000000000000
000000000000000000000000000000
43004C005F00520053005200540053005F004D0045005400410044004100540041005F004F00440050002000200020
P_DESCR_REF
{O:initial}
F0000000
F0000000
FF00000000000000
SY-REPID
CL_ABAP_TYPEDESCR=============CP
4454445555544454533333333333334522222222
3CF1210F490545332DDDDDDDDDDDDD3000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
43004C005F0041004200410050005F005400590050004500440045005300430052003D003D003D003D003D003D003D
%_DUMMY$$

2222
0000
0000
0000
2000200020002000
%_SPACE

2
0
0
0
2000
CL_ABAP_TYPEDESCR=>ADMIN_TAB_LINE-XTYPE
õ#ᘕ#
F010
5055
0010
0060
F500000015160500
CRC
####
0000
0000
0000
0000
0000000000000000
CL_ABAP_TYPEDESCR=>ADMIN_TAB_LINE-KIND
C
4
3
0
0
4300
CL_ABAP_TYPEDESCR=>ADMIN_TAB
Table IT_124[6x20]
\CLASS-POOL=CL_ABAP_TYPEDESCR\DATA=CL_ABAP_TYPEDESCR=>ADMIN_TAB
Table reference: 31
TABH+  0(20) = 00821A00DF070000000000000000000000000000
TABH+ 20(20) = 1F0000007C0000000600000014000000FFFFFFFF
TABH+ 40(16) = 048100005075000004000000A425C000
store        = 0x00821A00DF070000
ext1         = 0x0000000000000000
shmId        = 0     (0x00000000)
id           = 31    (0x1F000000)
label        = 124   (0x7C000000)
fill         = 6     (0x06000000)
leng         = 20    (0x14000000)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000008
occu         = 4     (0x04000000)
accKind      = 4     (ItAccessHashed)
idxKind      = 0     (ItIndexNone)
uniKind      = 1     (ItUniYes)
keyKind      = 3     (user defined)
cmpMode      = 2     (cmpSingleMcmpR)
occu0        = 1
stMode       = 0
groupCntl    = 0
rfc          = 0
unShareable  = 0
mightBeShared = 0
sharedWithShmTab = 0
isShmLockId  = 0
isUsed       = 1
isCtfyAble   = 1
hasScndKeys  = 0
hasRowId     = 0
scndKeysOutdated = 0
scndUniKeysOutdated = 0
----- Shareable Table Header Data -----
tabi         = 0x90811A00DF070000
pgHook       = 0x206F2000DF070000
idxPtr       = 0x80821A00DF070000
id           = 122   (0x7A000000)
shmTabhSet   = 0x0000000000000000
refCount     = 0     (0x00000000)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 508   (0xFC010000)
lineAlloc    = 12    (0x0C000000)
shmVersId    = 0     (0x00000000)
shmRefCount  = 1     (0x01000000)
rowId        = 18446744073709551615
scndKeyAdmin = 0x0000000000000000

##Ȣ#E#õ###
002040F000
60205050A0
0000000000
0020000000
060000002202000045000000F50000000A000000

É#ᘕ#C#ó###
C01040F000
90553030C0
0010000000
0060000000
C90000001516050043000000F30000000C000000

Ó#ᘕ#C#ñ###
D01040F000
30553010E0
0010000000
0060000000
D30000001516050043000000F10000000E000000

¶#ᘕ#C#ï###
B01040E010
605530F000
0010000000
0060000000
B60000001516050043000000EF00000010000000

ð#ᘕ#C#í###
F01040E010
005530D020
0010000000
0060000000
F00000001516050043000000ED00000012000000
CL_ABAP_TYPEDESCR=>ADMIN_TAB_LINE
õ#ᘕ#C#ë###
F01040E010
505530B040
0010000000
0060000000
F50000001516050043000000EB00000014000000
SY-SUBRC
0
0000
0000
00000000
%_FSREG_001
???
??????
??????
????????????
CL_ABAP_TYPEDESCR=>ADMIN_TAB_LINE-REF
{O:20*\CLASS=CL_ABAP_SOFT_REFERENCE}
E0001000
B0004000
EB00000014000000
RES
{O:initial}
F0000000
F0000000
FF00000000000000
SPACE

2
0
0
0
2000
CL_ABAP_TYPEDESCR=>KIND_ELEM
E
4
5
0
0
4500
%_VIASELSCR
#
0
4
04

No.    9Ty.METHOD
NameCL_RSRTS_METADATA=>SYNTAX_CHECK

I_CLNM
CL_RSRTS_METADATA_ODP
445555555445444545445222222222
3CF23243FD5414141FF40000000000
000000000000000000000000000000
000000000000000000000000000000
43004C005F00520053005200540053005F004D0045005400410044004100540041005F004F00440050002000200020
R_ERROR
X
5
8
0
0
5800
SY-REPID
CL_RSRTS_METADATA=============CP
4455555554454445433333333333334522222222
3CF23243FD5414141DDDDDDDDDDDDD3000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
43004C005F00520053005200540053005F004D0045005400410044004100540041003D003D003D003D003D003D003D
%_DUMMY$$

2222
0000
0000
0000
2000200020002000
SY
##########################A###P#################ż#############################T#######⨰# u####
0000000000000000000000000040005000000010000000007000000000000000000000000000105000000030270000
000060500000000000007010101010000000004000000000C000000000000000000000000000604000000000050500
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000
00000000000000000000000000000000000000000000000010000000000000000000000000000000000000A000000C
0000000000000000060000000500000000000000000000000000000000000000000000000000000007000000010000
SY-SUBRC
0
0000
0000
00000000
L_CHECK

2
0
0
0
2000
RS_C_TRUE
X
5
8
0
0
5800
RS_C_OBJVERS
%AMBDNTHI
244444544
51D24E489
000000000
000000000
250041004D00420044004E00540048004900
L_PROGNM

22222222222222222222222222222222
00000000000000000000000000000000
00000000000000000000000000000000
00000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
SYST-REPID
CL_RSRTS_METADATA=============CP
4455555554454445433333333333334522222222
3CF23243FD5414141DDDDDDDDDDDDD3000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
43004C005F00520053005200540053005F004D0045005400410044004100540041003D003D003D003D003D003D003D
L_T_ABAP
Table[initial]

L_MESS
<empty string>
10000000
40000000
1400000000000000
L_LINE
0
0000
0000
00000000
L_WORD
<empty string>
10000000
40000000
1400000000000000

No.    8Ty.METHOD
NameCL_RSRTS_METADATA=>CLASS_CONSTRUCTOR

CL_RSRTS_METADATA=>P_TH_IOBJ_BUFFER
Table[initial]

<%_TABLE_RSRTSDIRMETADATA>
???
??????
??????
????????????
RSD_C_OBJTP
CHAKYFTIMUNIDPAATRMTA
444454544544454455454
381B9649D5E9401142D41
000000000000000000000
000000000000000000000
4300480041004B0059004600540049004D0055004E0049004400500041004100540052004D0054004100
%_ITAB_MODIFY_LIST
Table[initial]

CL_RSRTS_METADATA=>P_TS_IMPLEMENTATION
Table IT_125[7x66]
\CLASS-POOL=CL_RSRTS_METADATA\DATA=CL_RSRTS_METADATA=>P_TS_IMPLEMENTATION
Table reference: 32
TABH+  0(20) = E0881A00DF070000000000000000000000000000
TABH+ 20(20) = 200000007D000000070000004200000010010000
TABH+ 40(16) = 048B0000B075010003000000A207C000
store        = 0xE0881A00DF070000
ext1         = 0x0000000000000000
shmId        = 0     (0x00000000)
id           = 32    (0x20000000)
label        = 125   (0x7D000000)
fill         = 7     (0x07000000)
leng         = 66    (0x42000000)
loop         = 272   (0x10010000)
xtyp         = TYPE#000019
occu         = 3     (0x03000000)
accKind      = 2     (ItAccessSorted)
idxKind      = 0     (ItIndexNone)
uniKind      = 1     (ItUniYes)
keyKind      = 3     (user defined)
cmpMode      = 3     (cmpSingleMcmpU)
occu0        = 0
stMode       = 0
groupCntl    = 0
rfc          = 0
unShareable  = 0
mightBeShared = 0
sharedWithShmTab = 0
isShmLockId  = 0
isUsed       = 1
isCtfyAble   = 1
hasScndKeys  = 0
hasRowId     = 0
scndKeysOutdated = 0
scndUniKeysOutdated = 0
----- Shareable Table Header Data -----
tabi         = 0xF0871A00DF070000
pgHook       = 0x60891A00DF070000
idxPtr       = 0x0000000000000000
id           = 123   (0x7B000000)
shmTabhSet   = 0x0000000000000000
refCount     = 0     (0x00000000)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 127   (0x7F000000)
lineAlloc    = 7     (0x07000000)
shmVersId    = 0     (0x00000000)
shmRefCount  = 1     (0x01000000)
rowId        = 18446744073709551615
scndKeyAdmin = 0x0000000000000000

1CL_RSRTS_METADATA_R3IS
344555555544544454553452222222222
13CF23243FD5414141F23930000000000
000000000000000000000000000000000
000000000000000000000000000000000
310043004C005F00520053005200540053005F004D0045005400410044004100540041005F00520033004900530020

2CL_RSROA_VQ_METADATA          X
344555544555544544454222222222252
23CF232F1F61FD5414141000000000080
000000000000000000000000000000000
000000000000000000000000000000000
320043004C005F005200530052004F0041005F00560051005F004D0045005400410044004100540041002000200020

3CL_RSL_ME_METADATA
344555454454454445422222222222222
33CF23CFD5FD541414100000000000000
000000000000000000000000000000000
000000000000000000000000000000000
330043004C005F00520053004C005F004D0045005F004D004500540041004400410054004100200020002000200020

5CL_RSDDLTIP_IPROV_TABLE
344555444545545545554444222222222
53CF2344C490F902F6F412C5000000000
000000000000000000000000000000000
000000000000000000000000000000000
350043004C005F0052005300440044004C005400490050005F004900500052004F0056005F005400410042004C0045

ACL_RSAN_PR_ANPR_PROV_TRANSIENTX
444555445555445555545555445444552
13CF231EF02F1E02F02F6F421E395E480
000000000000000000000000000000000
000000000000000000000000000000000
410043004C005F005200530041004E005F00500052005F0041004E00500052005F00500052004F0056005F00540052
L_S_IMPLEMENTATION
OCL_RSRTS_METADATA_ODP          X
444555555544544454544522222222225
F3CF23243FD5414141FF4000000000008
000000000000000000000000000000000
000000000000000000000000000000000
4F0043004C005F00520053005200540053005F004D0045005400410044004100540041005F004F0044005000200020
SY-MSGV1

22222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
L_S_IMPLEMENTATION-CLSNM
CL_RSRTS_METADATA_ODP
445555555445444545445222222222
3CF23243FD5414141FF40000000000
000000000000000000000000000000
000000000000000000000000000000
43004C005F00520053005200540053005F004D0045005400410044004100540041005F004F00440050002000200020
L_ERROR

2
0
0
0
2000
L_S_IMPLEMENTATION-IDENTIFIER
O
4
F
0
0
4F00
<%_L002>
???
??????
??????
????????????

No.    7Ty.METHOD
NameCL_RSROA_VQ_SERVICES=>IS_IOBJ_VIRTUAL

I_IOBJNM
0FACTCOUNT
344454454522222222222222222222
061343F5E400000000000000000000
000000000000000000000000000000
000000000000000000000000000000
3000460041004300540043004F0055004E005400200020002000200020002000200020002000200020002000200020
R_RESULT

2
0
0
0
2000
SY-REPID
CL_RSROA_VQ_SERVICES==========CP
4455554455555455444533333333334522222222
3CF232F1F61F35269353DDDDDDDDDD3000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
43004C005F005200530052004F0041005F00560051005F00530045005200560049004300450053003D003D003D003D
%_DUMMY$$

2222
0000
0000
0000
2000200020002000
CL_RSROA_VQ_SERVICES=>N_C_VIRTUAL_NAMESPACE
@32
433
032
000
000
400033003200
RS_C_FALSE

2
0
0
0
2000
SYST
##########################A###P#################ż#############################T#######⨰# u####
0000000000000000000000000040005000000010000000007000000000000000000000000000105000000030270000
000060500000000000007010101010000000004000000000C000000000000000000000000000604000000000050500
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000
00000000000000000000000000000000000000000000000010000000000000000000000000000000000000A000000C
0000000000000000060000000500000000000000000000000000000000000000000000000000000007000000010000
SCREEN
%_17NNS0001237242_%_%_%_%_%_%_
2533445333333333352525252525252222222222222222222222222222222222222222222222222222222222222222
5F17EE30001237242F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
25005F00310037004E004E00530030003000300031003200330037003200340032005F0025005F0025005F0025005F

No.    6Ty.FUNCTION
NameRSD_IOBJ_CMP_GET

I_BYPASS_BUFFER

2
0
0
0
2000
I_IOBJNM
0FACTCOUNT
344454454522222222222222222222
061343F5E400000000000000000000
000000000000000000000000000000
000000000000000000000000000000
3000460041004300540043004F0055004E005400200020002000200020002000200020002000200020002000200020
I_OBJVERS
A
4
1
0
0
4100
E_T_IOBJ_CMP
Table[initial]

G_TS_IOBJ_CMP
Table[initial]

L_S_IOBJ_CMP
                               0000
222222222222222222222222222222233332222222222222222222222222222222
000000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
%_PRINT
    001RSUPGRCHEDDI                                                                      X8#A#
2222333555545444444222222222222222222222222222222222222222222222222222222222222222222222253040
0000001235072385449000000000000000000000000000000000000000000000000000000000000000000000088010
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
2000200020002000300030003100520053005500500047005200430048004500440044004900200020002000200020
L_S_IOBJ_CMP-IOBJNM

222222222222222222222222222222
000000000000000000000000000000
000000000000000000000000000000
000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
SYST-REPID
SAPLRSDG_IOBJ_DB_READ
5454554454444544554442222222222222222222
310C2347F9F2AF42F25140000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
5300410050004C0052005300440047005F0049004F0042004A005F00440042005F0052004500410044002000200020
L_S_IOBJ_CMP-OBJVERS

2
0
0
0
2000
%_SPACE

2
0
0
0
2000
RS_C_RANGE_OPT
  EQLTLEGTGEBTCPNENBNP
2245454445444545444445
0051C4C574752430E5E2E0
0000000000000000000000
0000000000000000000000
20002000450051004C0054004C004500470054004700450042005400430050004E0045004E0042004E005000
SPACE

2
0
0
0
2000
RSD_C_ATR_DELIMITER
__
55
FF
00
00
5F005F00
L_SUBRC
8
0000
8000
08000000
RS_C_TRUE
X
5
8
0
0
5800
<%_TABLE_RSDVUNI>
???
??????
??????
????????????
SY-REPID
SAPLRSDG_IOBJ_DB_READ
5454554454444544554442222222222222222222
310C2347F9F2AF42F25140000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
5300410050004C0052005300440047005F0049004F0042004A005F00440042005F0052004500410044002000200020
SY-XPROG
SAPCNVE
5454454222222222222222222222222222222222
3103E65000000000000000000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
53004100500043004E0056004500200020002000200020002000200020002000200020002000200020002000200020
%_##TVREG_001

2
0
0
0
2000
%_DUMMY$$

2222
0000
0000
0000
2000200020002000
RS_C_FALSE

2
0
0
0
2000
SY-SUBRC
0
0000
0000
00000000
%_VIASELSCR
#
0
4
04
SY-LANGU
E
4
5
0
0
4500

No.    5Ty.FUNCTION
NameRSD_VIOBJ_COMPLETE

C_S_VIOBJ
0FACTCOUNT                    AKYFACTX XFACTCOUNT                     2.0/01####           SAP
3444544545222222222222222222224454445525444544545222222222222222222222323233000022222222222545
061343F5E4000000000000000000001B9613480861343F5E40000000000000000000002E0F01000000000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000C00000000000000
3000460041004300540043004F0055004E005400200020002000200020002000200020002000200020002000200020
C_S_VIOBJ-REFTP
F
4
6
0
0
4600
%_SPACE

2
0
0
0
2000
SY-REPID
SAPLRSDN_IOBJ
5454554454444222222222222222222222222222
310C234EF9F2A000000000000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
5300410050004C005200530044004E005F0049004F0042004A00200020002000200020002000200020002000200020
CL_RSD_IOBJ_UTILITIES=>N_C_REFOBJTP_BON_FIELD
F
4
6
0
0
4600
RSD_C_CMPSTA
12
233
012
000
000
200031003200
C_S_VIOBJ-CMPOFFSET
0
0000
0000
00000000
SYST-REPID
SAPLRSDN_IOBJ
5454554454444222222222222222222222222222
310C234EF9F2A000000000000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
5300410050004C005200530044004E005F0049004F0042004A00200020002000200020002000200020002000200020
C_S_VIOBJ-OBJVERS
A
4
1
0
0
4100
RS_C_OBJVERS-ACTIVE
A
4
1
0
0
4100
C_S_VIOBJ-CMPSTA

2
0
0
0
2000
RSD_C_CMPSTA-INI

2
0
0
0
2000
C_S_VIOBJ-IOBJTP
KYF
454
B96
000
000
4B0059004600
RSD_C_OBJTP-KEYFIGURE
KYF
454
B96
000
000
4B0059004600
RSD_C_OBJTP
CHAKYFTIMUNIDPAATRMTA
444454544544454455454
381B9649D5E9401142D41
000000000000000000000
000000000000000000000
4300480041004B0059004600540049004D0055004E0049004400500041004100540052004D0054004100
L_T_IOBJ_CMP
Table[initial]

L_OFFSET
0
0000
0000
00000000
RSD_C_DOMANM_DATE
DATUM
445542222222222222222222222222
4145D0000000000000000000000000
000000000000000000000000000000
000000000000000000000000000000
44004100540055004D0020002000200020002000200020002000200020002000200020002000200020002000200020
C_S_VIOBJ-IOBJNM
0FACTCOUNT
344454454522222222222222222222
061343F5E400000000000000000000
000000000000000000000000000000
000000000000000000000000000000
3000460041004300540043004F0055004E005400200020002000200020002000200020002000200020002000200020
SYST
##########################A###P#################ż#############################T#######⨰# u####
0000000000000000000000000040005000000010000000007000000000000000000000000000105000000030270000
000060500000000000007010101010000000004000000000C000000000000000000000000000604000000000050500
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000
00000000000000000000000000000000000000000000000010000000000000000000000000000000000000A000000C
0000000000000000060000000500000000000000000000000000000000000000000000000000000007000000010000
RS_C_OBJVERS-MODIFIED
M
4
D
0
0
4D00
RS_C_OBJVERS-NEW
N
4
E
0
0
4E00
%_DUMMY$$

2222
0000
0000
0000
2000200020002000
RSD_C_ATRTP-NAVIGATION
NAV
445
E16
000
000
4E0041005600
RSD_C_DOMANM_TIME
TIME
544422222222222222222222222222
49D500000000000000000000000000
000000000000000000000000000000
000000000000000000000000000000
540049004D004500200020002000200020002000200020002000200020002000200020002000200020002000200020

No.    4Ty.FORM
NameFILL_VIOBJ_BUFFER_COMPLETE

RSDG_C_CONVEXIT_UUID
%UUID
25544
55594
00000
00000
25005500550049004400
RSD_C_DPANM-ACTUALDATA_V
0ACTUALDATV
344554444552222222222222222222
013451C41460000000000000000000
000000000000000000000000000000
000000000000000000000000000000
3000410043005400550041004C00440041005400560020002000200020002000200020002000200020002000200020
RSD_C_CMPTP-REF_KEYFIGURE
4
3
4
0
0
3400
L_SUBRC
0
0000
0000
00000000
L_S_VIOBJ
0FACTCOUNT                    AKYFACTX XFACTCOUNT                     2.0/01####           SAP
3444544545222222222222222222224454445525444544545222222222222222222222323233000022222222222545
061343F5E4000000000000000000001B9613480861343F5E40000000000000000000002E0F01000000000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000C00000000000000
3000460041004300540043004F0055004E005400200020002000200020002000200020002000200020002000200020
G_TH_VIOBJ
Table IT_121[15x2432]
\FUNCTION-POOL=RSDG_IOBJ_DB_READ\DATA=G_TH_VIOBJ
Table reference: 27
TABH+  0(20) = 40C31900DF070000000000000000000000000000
TABH+ 20(20) = 1B000000790000000F00000080090000FFFFFFFF
TABH+ 40(16) = 0465000020C4040004000000A425C000
store        = 0x40C31900DF070000
ext1         = 0x0000000000000000
shmId        = 0     (0x00000000)
id           = 27    (0x1B000000)
label        = 121   (0x79000000)
fill         = 15    (0x0F000000)
leng         = 2432  (0x80090000)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000008
occu         = 4     (0x04000000)
accKind      = 4     (ItAccessHashed)
idxKind      = 0     (ItIndexNone)
uniKind      = 1     (ItUniYes)
keyKind      = 3     (user defined)
cmpMode      = 2     (cmpSingleMcmpR)
occu0        = 1
stMode       = 0
groupCntl    = 0
rfc          = 0
unShareable  = 0
mightBeShared = 0
sharedWithShmTab = 0
isShmLockId  = 0
isUsed       = 1
isCtfyAble   = 1
hasScndKeys  = 0
hasRowId     = 0
scndKeysOutdated = 0
scndUniKeysOutdated = 0
----- Shareable Table Header Data -----
tabi         = 0x60CC1900DF070000
pgHook       = 0xD0571900DF070000
idxPtr       = 0xC0C31900DF070000
id           = 120   (0x78000000)
shmTabhSet   = 0x0000000000000000
refCount     = 0     (0x00000000)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 16    (0x10000000)
lineAlloc    = 16    (0x10000000)
shmVersId    = 0     (0x00000000)
shmRefCount  = 1     (0x01000000)
rowId        = 18446744073709551615
scndKeyAdmin = 0x0000000000000000

0ALEAFNODCH                   ADPAACT  XALEAFNODCH                    7.0/00#偐允貕X          SAP
3444444444422222222222222222224454445225444444444422222222222222222222323233054952222222222545
01C516EF438000000000000000000014011340081C516EF438000000000000000000007E0F00201580000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000055800000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000001C00000000000000
300041004C004500410046004E004F0044004300480020002000200020002000200020002000200020002000200020

0ALEAFNODSP                   ADPAACT  XALEAFNODSP                    7.0/00#偐剁鱰X          SAP
3444444445522222222222222222224454445225444444445522222222222222222222323233054752222222222545
01C516EF430000000000000000000014011340081C516EF430000000000000000000007E0F00201080000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000055900000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000002C00000000000000
300041004C004500410046004E004F0044005300500020002000200020002000200020002000200020002000200020

0BUCKET                       ACHAACT  XBUCKET                        3.0/01#匐儁ఁ           SAP
3454445222222222222222222222224444445225454445222222222222222222222222323233010022222222222545
0253B54000000000000000000000001381134008253B540000000000000000000000003E0F01201100000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000055000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000031C00000000000000
30004200550043004B0045005400200020002000200020002000200020002000200020002000200020002000200020

0CALDAY                       ATIMACT  XCALDAY                        1.2/01####           SAP
3444445222222222222222222222224544445225444445222222222222222222222222323233000022222222222545
031C41900000000000000000000000149D13400831C4190000000000000000000000001E2F01000000000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000C00000000000000
3000430041004C00440041005900200020002000200020002000200020002000200020002000200020002000200020

0CALMONTH                     ATIMACT  XCALMONTH                      1.2/01####           SAP
3444444542222222222222222222224544445225444444542222222222222222222222323233000022222222222545
031CDFE48000000000000000000000149D13400831CDFE4800000000000000000000001E2F01000000000000000310
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000C00000000000000
3000430041004C004D004F004E00540048002000200020002000200020002000200020002000200020002000200020
<%_TABLE_RSDNAIP>
???
??????
??????
????????????
RSD_C_KYFTP-QUANTITY
QUA
554
151
000
000
510055004100

No.    3Ty.FORM
NameGET_IOBJS_FROM_DB

SYST
##########################A###P#################ż#############################T#######⨰# u####
0000000000000000000000000040005000000010000000007000000000000000000000000000105000000030270000
000060500000000000007010101010000000004000000000C000000000000000000000000000604000000000050500
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000
00000000000000000000000000000000000000000000000010000000000000000000000000000000000000A000000C
0000000000000000060000000500000000000000000000000000000000000000000000000000000007000000010000
E_T_VIOBJ
Table[initial]

I_READ_ALL
X
5
8
0
0
5800
RSD_C_OBJTP-UNIT
UNI
544
5E9
000
000
55004E004900
I_OBJVERS
A
4
1
0
0
4100
I_BYPASS_BUFFER

2
0
0
0
2000
I_LANGU
E
4
5
0
0
4500
L_SUBRC
0
0000
0000
00000000
G_IOBJ_CMP_ALL_READ

2
0
0
0
2000
RSD_C_METAIOBJ-RESTNODE
1HIER_REST
344455545522222222222222222222
18952F253400000000000000000000
000000000000000000000000000000
000000000000000000000000000000
310048004900450052005F005200450053005400200020002000200020002000200020002000200020002000200020
%_##TVREG_001

2
0
0
0
2000
I_NO_MESSAGE

2
0
0
0
2000

No.    2Ty.FUNCTION
NameRSD_IOBJ_MULTI_GET

I_BYPASS_BUFFER

2
0
0
0
2000
I_NO_MESSAGE

2
0
0
0
2000
I_OBJVERS
A
4
1
0
0
4100
I_READ_ALL
X
5
8
0
0
5800
E_NOT_ALL_OBJ_READ

2
0
0
0
2000
E_T_ATR
Table[initial]

E_T_ATRNAVT
Table[initial]

E_T_ATR_NAV
Table[initial]

E_T_DPA
Table[initial]

E_T_IOBJNM_BCT_COMP_INA
Table[initial]

E_T_IOBJT
Table[initial]

E_T_IOBJ_CMP
Table[initial]

E_T_IOBJ_DTEL
Table[initial]

E_T_KYF
Table[initial]

E_T_TIM
Table[initial]

E_T_UNI
Table[initial]

E_T_VCHA
Table[initial]

E_T_VIOBJ
Table[initial]

C_T_IOBJ
Table[initial]

SY-MSGID
DA
44222222222222222222
41000000000000000000
00000000000000000000
00000000000000000000
44004100200020002000200020002000200020002000200020002000200020002000200020002000
SY-MSGNO
300
333
300
000
000
330030003000
RSD_C_OBJTP-TIME
TIM
544
49D
000
000
540049004D00
SYST
##########################A###P#################ż#############################T#######⨰# u####
0000000000000000000000000040005000000010000000007000000000000000000000000000105000000030270000
000060500000000000007010101010000000004000000000C000000000000000000000000000604000000000050500
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000
00000000000000000000000000000000000000000000000010000000000000000000000000000000000000A000000C
0000000000000000060000000500000000000000000000000000000000000000000000000000000007000000010000
L_S_VIOBJ
                                                                            ####
2222222222222222222222222222222222222222222222222222222222222222222222222222000022222222222222
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000C00000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020

No.    1Ty.EVENT
NameSTART-OF-SELECTION

SY-MSGV2

22222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
SY-MSGV3

22222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
SY-MSGV4

22222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
L_DUMMY
I
4
9
0
0
4900
SY-MSGID
DA
44222222222222222222
41000000000000000000
00000000000000000000
00000000000000000000
44004100200020002000200020002000200020002000200020002000200020002000200020002000
%_SSCR[]
Table IT_2[9x492]
\PROGRAM=RSUPGRCHECK\DATA=%_SSCR[]
Table reference: 1
TABH+  0(20) = 70680C00DF070000000000000000000000000000
TABH+ 20(20) = 010000000200000009000000EC010000FFFFFFFF
TABH+ 40(16) = 040000009033010009000000C110C800
store        = 0x70680C00DF070000
ext1         = 0x0000000000000000
shmId        = 0     (0x00000000)
id           = 1     (0x01000000)
label        = 2     (0x02000000)
fill         = 9     (0x09000000)
leng         = 492   (0xEC010000)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000006
occu         = 9     (0x09000000)
accKind      = 1     (ItAccessStandard)
idxKind      = 0     (ItIndexNone)
uniKind      = 2     (ItUniNo)
keyKind      = 1     (default)
cmpMode      = 8     (cmpManyEq)
occu0        = 0
stMode       = 0
groupCntl    = 0
rfc          = 0
unShareable  = 0
mightBeShared = 1
sharedWithShmTab = 0
isShmLockId  = 0
isUsed       = 1
isCtfyAble   = 1
hasScndKeys  = 0
hasRowId     = 0
scndKeysOutdated = 0
scndUniKeysOutdated = 0
----- Shareable Table Header Data -----
tabi         = 0x00570C00DF070000
pgHook       = 0x0000000000000000
idxPtr       = 0x0000000000000000
id           = 4     (0x04000000)
shmTabhSet   = 0x0000000000000000
refCount     = 2     (0x02000000)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 9     (0x09000000)
lineAlloc    = 9     (0x09000000)
shmVersId    = 0     (0x00000000)
shmRefCount  = 3     (0x03000000)
rowId        = 18446744073709551615
scndKeyAdmin = 0x0000000000000000

%_SKP000䉀#B ##
2554533340420022222222222222222222222222222222222222222222222222222222222222222222222222222222
5F3B00000F200000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000
25005F0053004B00500030003000300040420F00420020000000000020002000200020002000200020002000200020

%BDCH001䉁#K ##     B1
2444433340420022222432222222222222222222222222222222222222222222222222222222222222222222222222
524380011FB00000000210000000000000000000000000000000000000000000000000000000000000000000000000
0000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000
2500420044004300480030003000310041420F004B0020000000000020002000200020002000420031002000200020

P_IOBJ  䉂#P ##CCHARRS_BOOL
5544442240520044445555444422222222222222222222222222222222222222222222222222222222222222222222
0F9F2A002F00103381223F2FFC00000000000000000000000000000000000000000000000000000000000000000000
0000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000
50005F0049004F0042004A002000200042420F00500020000100000043004300480041005200520053005F0042004F

P_ODSO  䉃#P ##CCHARRS_BOOL
5544542240520044445555444422222222222222222222222222222222222222222222222222222222222222222222
0FF43F003F00103381223F2FFC00000000000000000000000000000000000000000000000000000000000000000000
0000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000
50005F004F00440053004F002000200043420F00500020000100000043004300480041005200520053005F0042004F

P_CUBE  䉄#P ##CCHARRS_BOOL
5545442240520044445555444422222222222222222222222222222222222222222222222222222222222222222222
0F3525004F00103381223F2FFC00000000000000000000000000000000000000000000000000000000000000000000
0000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000
50005F0043005500420045002000200044420F00500020000100000043004300480041005200520053005F0042004F
SY-MSGNO
300
333
300
000
000
330030003000
SY-MSGTY
E
4
5
0
0
4500
%_SSCR
%BDCH001䉈#K ##     B1
2444433340420022222432222222222222222222222222222222222222222222222222222222222222222222222222
524380018FB00000000210000000000000000000000000000000000000000000000000000000000000000000000000
0000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000
2500420044004300480030003000310048420F004B0020000000000020002000200020002000420031002000200020
SY-MSGV1

22222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
VARI
000VARSUPGRCHECK                             SAP&VAR1      ###00000000000000      T#ĂȂ#ㄱ〰##´#ἒ
3335455554544444222222222222222222222222222225452545322222200033333333333333222222500003300B01
000612350723853B000000000000000000000000000003106612100000000000000000000000000000402201000402
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000003300001
000000000000000000000000000000000000000000000000000000000000000000000000000000000006120100000F
3000300030005600410052005300550050004700520043004800450043004B00200020002000200020002000200020
SY-LDBPG
SAPDB__S
5454455522222222222222222222222222222222
31042FF300000000000000000000000000000000
0000000000000000000000000000000000000000
0000000000000000000000000000000000000000
530041005000440042005F005F00530020002000200020002000200020002000200020002000200020002000200020
%_P_ODSO_%_APP_%
P_ODSO
554454222222222222222222222222
0FF43F000000000000000000000000
000000000000000000000000000000
000000000000000000000000000000
50005F004F00440053004F002000200020002000200020002000200020002000200020002000200020002000200020
RS_C_OBJVERS-ACTIVE
A
4
1
0
0
4100
RS_C_TRUE
X
5
8
0
0
5800
%_P_CUBE_%_APP_%
InfoCubes
466647667222222222222222222222
9E6F35253000000000000000000000
000000000000000000000000000000
000000000000000000000000000000
49006E0066006F00430075006200650073002000200020002000200020002000200020002000200020002000200020
L_T_ATR
Table[initial]

P_CUBE
X
5
8
0
0
5800
L_T_VIOBJ
Table[initial]

P_TRFR
X
5
8
0
0
5800
L_S_VIOBJ
                                                                            ####
2222222222222222222222222222222222222222222222222222222222222222222222222222000022222222222222
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000000000000000C00000000000000
2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020
%_P_LOG_%_APP_%
....Display Log
222246776672466222222222222222
EEEE4930C190CF7000000000000000
000000000000000000000000000000
000000000000000000000000000000
2E002E002E002E0044006900730070006C006100790020004C006F0067002000200020002000200020002000200020
L_S_VIOBJ-IOBJTP

222
000
000
000
200020002000
RSD_C_OBJTP-CHARACT
CHA
444
381
000
000
430048004100

Internal notes
The termination was triggered in function "ab_genprog"
of the SAP kernel, in line 1843 of the module
"//bas/720_REL/src/krn/runt/abgen.c#12".
The internal operation just processed is "PAR4".
Internal mode was started at 20140509012626.
Program name.........: "CL_RSRTS_METADATA_ODP=========CP ".
Error message........: ""L_S_HEADER-APPL_COMP" is not type-compatible with
formal parameter "I".

Active Calls in SAP Kernel

Lines of C Stack in Kernel (Structure Differs on Each Platform)

SAP (R) - R/3(TM) Callstack, Version 1.0
Copyright (C) SAP AG. All rights reserved.
Callstack without Exception:
App       : disp+work.EXE (pid=48456)
When      : 5/9/2014 1:26:28.246
Threads   : 2
Computer Name       : SAP-DEVL
User Name           : SAPServiceRFD
Number of Processors: 12
Processor Type: Intel64 Family 6 Model 45 Stepping 7
Windows Version     : 6.2 Current Build: 9200
State Dump for Thread Id bd4c
00000000020A4C60 000007F777D59411 0020002000200020 disp+work!DumpStacks [ntstcdbg.c (548)]
00000000020A4D60 000007F7768DAEA4 000000005D182710 disp+work!NTDebugProcess [ntstcdbg.c (383)]
00000000020A4D90 000007F776AEFF89 000000005D182710 disp+work!CTrcStack2 [dptstack.c (354)]
00000000020A4DE0 000007F776AF55FF 00000000020A5800 disp+work!rabax_CStackSave [abrabax.c (8695)]
00000000020A56F0 000007F776ACFC5F 0000000000000000 disp+work!ab_rabax [abrabax.c (1442)]
00000000020A8550 000007F776D9A52D 0000000000000001 disp+work!ab_genprog [abgen.c (1847)]
00000000020A8630 000007F776D9AE13 000000000000BABA disp+work!newload [abload1.c (353)]
00000000020A8660 000007F776D9B01E 0000000000000000 disp+work!ab_LoadProgOrTrfo [abload1.c (159)]
00000000020A8690 000007F776DE1E1C 00000000020A8720 disp+work!ab_LoadProg [abload1.c (94)]
00000000020A8780 000007F776DE208A 00000000ADF468EA disp+work!LoadGlobalClass [abobject.c (990)]
00000000020A87C0 000007F776D7A077 0000000000000000 disp+work!ab_LoadGlobalClassNoActivate [abobjec
00000000020A88B0 000007F776D7AB6A 0000000000000014 disp+work!GetTypeByRelName [abdescr1.c (3189)]
00000000020A8960 000007F776D7FD5B 00000000020A89B8 disp+work!ab_GetTypeByName [abdescr1.c (3667)]
00000000020A8AA0 000007F776D80A8B 000007DF001A7118 disp+work!DescribeAdmName [abdescr1.c (4440)]
00000000020A8BB0 000007F776B11482 0000000000000015 disp+work!ab_SystemCallDescribe [abdescr1.c (61
00000000020A8D20 000007F776ADF551 0000000000000000 disp+work!ab_jsysc [absyscal.c (1596)]
00000000020A8EA0 000007F776B52170 0000000000000340 disp+work!ab_extri [abextri.c (676)]
00000000020A8EF0 000007F776B52915 0000000000000000 disp+work!ab_xevent [abrunt1.c (336)]
00000000020A8F80 000007F776B2FF79 000007DF000002A0 disp+work!ab_trigg [abrunt1.c (57)]
00000000020A9010 000007F776946BD6 0000000000000016 disp+work!ab_run [absubmit.c (511)]
00000000020A91C0 000007F77694B6AD 0000000000000000 disp+work!dynpmcal [dymainstp.c (2742)]
00000000020A9250 000007F77694A954 00000000020A9430 disp+work!dynppai0 [dymainstp.c (1359)]
00000000020A9320 000007F7769040BF 0000000000000020 disp+work!dynprctl [dymainstp.c (473)]
00000000020AF580 000007F77678924B 0000000000000000 disp+work!dynpen00 [dymain.c (2070)]
00000000020AF850 000007F776789A09 FFFFFFFFFFFFFF00 disp+work!TskhLoop [thxxhead.c (4960)]
00000000020AF8B0 000007F7766AD906 00000000020FB148 disp+work!ThStart [thxxhead.c (1194)]
00000000020AF950 000007F7766810A1 FFFFFFFF00000001 disp+work!DpMain [dpxxdisp.c (1201)]
00000000020AF980 000007F778039EEE 0000000000000001 disp+work!nlsui_main [thxxanf.c (80)]
00000000020AF9B0 000007F98AA81832 0000000000000000 disp+work!__tmainCRTStartup [crtexe.c (552)]
00000000020AF9E0 000007F98AD5D609 0000000000000000 KERNEL32!BaseThreadInitThunk
00000000020AFA30 0000000000000000 0000000000000000 ntdll!RtlUserThreadStart
State Dump for Thread Id b500
000000000B40FC20 000007F98801B101 000000FF00000002 ntdll!ZwFsControlFile
000000000B40FC90 000007F777F2B6EF FFFFFFFFFFFFFFFE KERNELBASE!ConnectNamedPipe
000000000B40FD30 000000005D0F1D9F 0000000002FA5240 disp+work!SigIMsgFunc [signt.c (717)]
000000000B40FD60 000000005D0F1E3B 000000005D182AC0 MSVCR100!endthreadex
000000000B40FD90 000007F98AA81832 0000000000000000 MSVCR100!endthreadex
000000000B40FDC0 000007F98AD5D609 0000000000000000 KERNEL32!BaseThreadInitThunk
000000000B40FE10 0000000000000000 0000000000000000 ntdll!RtlUserThreadStart

List of ABAP programs affected

IndexTypProgramGroupDateTimeSizeLang.

     0PrgRSUPGRCHECK     008.05.201401:15:04    95232E
     1PrgSAPMSSY0     113.12.201302:58:04   111616E
     2PrgSAPMSSYD     113.12.201305:11:03    27648E
     3PrgSAPFSYSCALLS     109.09.200414:18:32     8192E
     4PrgRSDBRUNT     013.12.201305:10:51   306176E
     5PrgSAPLSPRI     509.03.201422:50:55   412672E
     6TypPRI_PARAMS     002.11.199809:46:12     5120
     7TypARC_PARAMS     028.08.199708:36:28     5120
     8TypPRI_LAYOUT     006.11.200320:30:04     3072
     9TypPRIPAR_EXT     008.09.201114:21:28     3072
    10TypPRIPAR_EX2     008.09.201114:21:28     2048
    11TypPRIPAR_EX3     008.09.201114:21:28     3072
    12TypTPRI_DEF     009.11.200014:24:28     5120
    13PrgSAPLSPOO    1309.03.201422:59:14   189440E
    14TypTSP03     002.11.199809:57:05     5120
    15TypUSR01     008.09.201114:25:08     4096
    16TypTSP1D     008.09.201114:24:13     5120
    17PrgSAPLRSPOLSTDRV    1718.06.200908:32:31    64512E
    18TypTSPOPTIONS     029.01.199719:13:56     2048
    19PrgSAPCNVE    1909.09.200414:36:10     9216E
    20PrgSAPLSPOC    2009.03.201422:48:00   178176E
    21TypRSPOCHECK     013.08.199712:53:10     4096
    22TypDEVPAR     008.09.201114:26:09     3072
    23TypRSPOATTR     010.11.199917:44:19     2048
    24TypRSSCR     030.03.200510:21:45     5120
    25PrgRSDBSPBL     010.08.201113:47:05    84992E
    26PrgSAPDB__S     030.03.200510:22:01    21504E
    27TypVARID     012.05.199716:51:30     5120
    28TypSSCRFIELDS     013.05.199712:54:26     5120
    29PrgRSDBSPVA     009.03.201422:51:09   161792E
    30Prg%_CSYDB0     017.06.200913:36:11    40960E
    31PrgSAPLSVAR    3109.03.201422:59:29   970752E
    32TypVARIS     012.05.199715:27:21     2048
    33TypRSVAMEMKEY     007.05.199713:07:49     2048
    34PrgRSDBSPMC     017.06.200913:36:11    92160E
    35TypDDSHDESCR     003.09.199703:05:16     4096
    36TypSPPARAMS     007.05.199713:10:38     2048
    37PrgSAPLICON    3717.12.200716:04:40    31744E
    38Prg%_CICON    3713.12.201304:46:30   132096E
    39TypICONT     012.09.200611:25:01     2048
    40PrgSAPLSABE    4013.12.201304:36:55    14336E
    41PrgSAPLSECU    4109.03.201422:58:35   114688E
    42TypRSSUBINFO     014.10.199922:01:03     3072
    43PrgRSDBSPVD     008.09.201115:23:28   102400E
    44TypDFIES     008.09.201114:18:19    10240
    45TypVARI     012.05.199715:27:09     6144
    46TypRVARI     030.03.199809:40:50     4096
    47TypRSVARIVDAT     004.04.199516:12:54     2048
    48TypRSVARKEY     007.05.199713:07:54     2048
    49PrgSAPLSSEL    4909.03.201422:59:24  1701888E
    50PrgRSDBSPDS     013.12.201304:46:32    66560E
    51TypRSEXFCODE     013.08.199712:52:57     2048
    52PrgSAPLDSYA    5218.09.201302:46:20    52224E
    53PrgSAPFSDS1    5230.03.200510:22:01    61440E
    54TypTDCLD     002.11.199809:51:35     5120
    55PrgSAPLSDOD    5513.12.201305:06:11    50176E
    56TypDOKIL     012.05.199716:46:17     3072
    57PrgSAPLLANG    5713.12.201303:11:44    13312E
    58TypT002     010.09.200714:53:12     2048
    59PrgSAPFSPOR     012.06.200813:33:02    16384E
    60TypRSPARINT     010.04.199509:58:38     2048
    61PrgSAPLSCNT    6118.02.200514:16:06    34816E
    62PrgSAPSHDTV    6113.12.201305:11:04    38912E
    63PrgSAPFS_SECLOG     113.12.201305:17:47    21504E
    64TypINDX     029.07.199818:38:15     6144
    65TypTSECLOG_SETTINGS     019.09.201323:39:22     2048
    66PrgSDYNPRAL     113.12.201305:23:33    14336E
    67PrgSAPLSDYNPRAL    6713.12.201305:19:27    13312E
    68TypDYNP_RAL_ID     013.12.201302:34:59     3072
    69TypDYNP_RAL_SCREEN     013.12.201302:34:59     2048
    70PrgCL_SRAL_RECORDER_FACTORY_DYNP=CP    7009.03.201423:00:45    17408E
    71PrgSRAL_DYNP_ADAPTER    6713.12.201305:23:38    23552E
    72PrgCL_SRAL_FACTORY_DYNP==========CP    7209.03.201423:00:44    25600E
    73PrgCL_SRAL_SWITCH_CLIENT=========CP    7313.12.201305:16:38    10240E
    74PrgSAPFGUICNTL     118.02.200514:15:08    27648E
    75PrgSAPLOLEA    7513.12.201303:53:47   111616E
    76PrgSAPLSGUI    7610.08.201112:45:24   105472E
    77PrgSAPLSTTM    7708.09.201115:16:06    79872E
    78PrgSAPLSBDC    7818.06.200909:21:28    49152E
    79PrgSAPLSFES    7913.12.201304:29:55   318464E
    80PrgSAPLTHFB    8013.12.201303:08:28   472064E
    81TypWPINFO     026.02.199914:49:01     6144
    82PrgSAPLURFC    8209.03.201422:47:53    28672E
    83PrgSAPLSPLUGIN    8308.09.201115:09:26     9216E
    84TypSWCBCONT     008.09.201114:24:16     3072
    85TypOLE_VERBS     004.04.199516:02:20     2048
    86TypOLE_PA     004.04.199516:02:19     2048
    87TypSSCRTEXTS     003.09.199703:12:33     3072
    88PrgCL_RSDRC_NCUM_GEN_TYPES=======CP    8819.09.201315:15:33     9216E
    89PrgSAPLRSMANDT    8920.09.201300:54:42    57344E
    90PrgSAPLRSVERS    9009.03.201422:43:55   373760E
    91PrgSAPLRS_GENERAL    9113.12.201304:16:07   121856E
    92TypBAL_S_MSG     008.09.201114:17:15     7168
    93PrgSAPLRSCC    9320.09.201300:54:37    45056E
    94PrgSAPLSDIFRUNTIME    9409.03.201422:50:49   123904E
    95TypX031L     008.09.201114:25:34     6144
    96PrgSAPLSDNT    9609.03.201422:51:06   280576E
    97PrgSAPLSUGS    9708.05.201401:14:33    93184E
    98TypRSCC_S_FIELD     018.12.200317:14:18     2048
    99Prg%_CRSCUS    9308.09.201116:11:25    30720E
   100TypRSADMINA     008.09.201114:27:41     6144
   101PrgSAPLRSDG_IOBJ_DB_READ   10113.12.201304:44:44   362496E
   102TypRSDIOBJV     008.09.201114:22:24     5120
   103TypRSD_S_VIOBJ     008.09.201114:27:44    30720
   104PrgSAPLRSDN_IOBJ   10420.09.201300:54:44   163840E
   105PrgCL_RSD_IOBJ_UTILITIES=========CP   10508.09.201116:18:00    57344E
   106PrgSAPLRSDN   10620.09.201300:54:44    86016E
   107TypRSNPAR     008.09.201114:27:45     3072
   108PrgSAPLSTR4   10813.12.201303:54:18    74752E
   109Prg%_CTRNSP   10818.02.200514:16:09    10240E
   110PrgSAPLSTRD   11013.12.201305:10:35   872448E
   111TypTRNSPACE     016.07.199714:46:18     3072
   112PrgSAPLSKEY   11213.12.201304:43:09    35840E
   113PrgSAPLSCP2   11309.03.201422:43:55   171008E
   114TypCODEPAGES     009.07.199723:51:03     2048
   115PrgCL_ABAP_CHAR_UTILITIES========CP   11517.09.201320:40:37    14336E
   116PrgSAPLRRSI   11620.09.201300:54:55   395264E
   117TypRSDIOBJFIX     008.09.201114:16:09     5120
   118PrgCL_RSD_CHABAS=================CP   11808.09.201116:17:30   155648E
   119PrgSAPLRSD_DDIF   11909.03.201422:34:48    50176E
   120TypRSDDTEL     008.09.201114:23:19     5120
   121TypDTELINFO     009.03.201422:34:48     8192
   122TypDTFLAG1     014.02.199807:04:39     2048
   123TypDTFLAG2     014.02.199807:04:39     2048
   124TypDTFLAG3     009.03.201422:34:48     2048
   125PrgCL_RSROA_VQ_SERVICES==========CP   12520.09.201300:54:42    87040E
   126PrgCL_RS_BASE====================CP   12620.09.201300:54:37    15360E
   127PrgCL_ABAP_ELEMDESCR=============CP   12718.06.200909:21:28    41984E
   128PrgCL_ABAP_DATADESCR=============CP   12818.06.200909:21:28    21504E
   129PrgCL_ABAP_TYPEDESCR=============CP   12918.09.201302:52:40    33792E
   130PrgCL_ABAP_REFDESCR==============CP   13018.09.201302:52:40    34816E
   131PrgCL_ABAP_STRUCTDESCR===========CP   13118.09.201302:52:40    49152E
   132PrgCL_ABAP_COMPLEXDESCR==========CP   13218.06.200909:21:28    19456E
   133PrgCL_ABAP_TABLEDESCR============CP   13308.09.201114:58:17    37888E
   134PrgCL_ABAP_CLASSDESCR============CP   13418.06.200909:21:28    34816E
   135PrgCL_ABAP_OBJECTDESCR===========CP   13518.06.200909:21:28    37888E
   136PrgCL_ABAP_INTFDESCR=============CP   13618.06.200909:21:28    27648E
   137PrgCL_ABAP_SOFT_REFERENCE========CP   13718.06.200909:21:27    10240E
   138PrgCL_ABAP_REFERENCE=============CP   13809.09.200414:18:16     8192E
   139PrgCL_RSRTS_METADATA=============CP   13920.09.201300:54:43   106496E
   140PrgCL_RSRTS_METADATA_R3IS========CP   14013.12.201304:44:43   157696E
   141PrgIF_RSRTS_METADATA=============IP   13420.09.201300:54:42    26624E
   142Prg%_CABAP   13418.06.200909:21:27    36864E
   143PrgIF_SERIALIZABLE_OBJECT========IP   13418.02.200514:13:43     5120E
   144PrgCL_RSROA_VQ_METADATA==========CP   14413.12.201304:44:43   252928E
   145PrgCL_RSL_ME_METADATA============CP   14513.12.201304:44:43   236544E
   146PrgIF_RSDRV_TREX_NAME_MAPPER=====IP   13420.09.201300:52:55     9216E
   147PrgCL_RSDDLTIP_IPROV_TABLE=======CP   14720.09.201300:54:55   147456E
   148PrgCL_RSAN_PR_ANPR_PROV_TRANSIENTCP   14813.12.201304:46:31   117760E
   149PrgCL_RSD_DTA====================CP   14913.12.201304:46:31   320512E
   150PrgIF_RSO_TLOGO_MAINTAIN=========IP   13420.09.201300:54:43    13312E
   151PrgIF_RSD_DTA====================IP   13420.09.201300:54:43    30720E
   152TypSYST     009.09.200414:18:12    30720
   153TypRSRTSDIRMETADATA     008.09.201114:23:29     2048
   154TypRSD_S_IOBJ_CMP     008.09.201114:27:44     3072
   155PrgIF_RSL_TLOGO==================IP   10119.09.201308:23:05    15360E
   156TypRSDVDPA     008.09.201114:27:44     9216

Directory of Application Tables

NameDateTimeLngth
Val.

ProgramRSUPGRCHECK

SYST09.09.200414:18:1200004612
\0\0\0\0\x0006\0\x0005\0\0\0\0\0\0\0\0\0\0\0\0\0\x0007\0
SY  .  .  :  :00004612
\0\0\0\0\x0006\0\x0005\0\0\0\0\0\0\0\0\0\0\0\0\0\x0007\0
VARI  .  .  :  :00003052
000VARSUPGRCHECK                             SAP&VAR1
SSCRFIELDS09.09.200414:18:0200001708

SSCRTEXTS  .  .  :  :00000742

ProgramRSDBRUNT

VARID  .  .  :  :00000252
   RSUPGRCHECK
DFIES  .  .  :  :00001350

ProgramSAPLSPRI

TSP03  .  .  :  :00000460
                                                     \0\0
USR01  .  .  :  :00000222
000DDIC                                 HK1
PRI_PARAMS  .  .  :  :00000380
    001RSUPGRCHEDDI
ARC_PARAMS  .  .  :  :00000660

TPRI_DEF  .  .  :  :00002932
000GV21            \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0
TSP1D  .  .  :  :00000320
                          0000000000

ProgramSAPLSPOO

TSP03  .  .  :  :00000460
LP01        HPLJIIID                                L\0\0
TSP1D  .  .  :  :00000320
X_PAPER         ANY     PL0001000010SAP         1998040711

ProgramSAPLRSPOLSTDRV

TSP03  .  .  :  :00000460
                                                     \0\0
TSPOPTIONS  .  .  :  :00000432

ProgramSAPLSVAR

VARIS  .  .  :  :00000122
000RSUPGRCHECK                             1000SAP&VAR1

ProgramSAPLICON

ICONT  .  .  :  :00000130

ProgramSAPFSDS1

TDCLD  .  .  :  :00000098
RE  DOKU  40R XX XXLIMUDOCUX (XR3TRPROGX         |

ProgramSAPLSDOD

DOKIL  .  .  :  :00000152

ProgramSAPLLANG

T002  .  .  :  :00000010
ES1EN|

ProgramSAPFS_SECLOG

INDX  .  .  :  :00003104
000%L%_SeclogExcludedCaller\0\0\0  00000000

ProgramSAPLRSCC

RSADMINA  .  .  :  :00000780
BW

ABAP Control Blocks (CONT)

IndexNameFlPAR0PAR1PAR2PAR3PAR4PAR5PAR6Source CodeLine

   40----000000<SYSINI>      50
   41xper16E90D00120019<SYSINI>      55
   43PERP800001<SYSINI>      55
   44PERP800002<SYSINI>      55
   45ENDM000000<SYSINI>      56
   46----000000<SYSINI>      56
   47METH140000000200010000000000000000CL_ABAP_TYPEDESCR=============CM002       1
   51PAR200000080000000CL_ABAP_TYPEDESCR=============CM002       1
   53PAR21D0000C0000000CL_ABAP_TYPEDESCR=============CM002       1
   55SYSC600004CL_ABAP_TYPEDESCR=============CM002       8
   56PAR40000008000001A001B001C00000000CL_ABAP_TYPEDESCR=============CM002       8
   60SYSC600001CL_ABAP_TYPEDESCR=============CM002      12
>>>>>PAR4000000001D8000001EC001001F0000CL_ABAP_TYPEDESCR=============CM002      12
   65TREA0602E2002000210021000000000000CL_ABAP_TYPEDESCR=============CM002      16
   69cmpr0000E200220000CL_ABAP_TYPEDESCR=============CM002      17
   71BRAF02001FCL_ABAP_TYPEDESCR=============CM002      17
   72BREL800000CL_ABAP_TYPEDESCR=============CM002      17
   73STCK050000CL_ABAP_TYPEDESCR=============CM002      18
   74ASSI0F0000004880010000000000000000CL_ABAP_TYPEDESCR=============CM002      18
   78clom100001002300010000000000000000CL_ABAP_TYPEDESCR=============CM002      18
Reagan
Advisor
Advisor
0 Kudos

Where did you update the kernel ?

Former Member
0 Kudos

Hi Benjamin,

On my main Development server.

Thanks

Reagan
Advisor
Advisor
0 Kudos

In the previous thread you have created yesterday I suggested you to update the kernel at G:\usr\sap\SUM\abap\exe as this is the kernel used by the shadow instance.

Now the problem is with the main instance so you should update the kernel for the main system.

I don't know where you have updated the kernel.

If you have updated the kernel for the main system then raise an OSS message

Former Member
0 Kudos

Yes..Benjamin,

I have update the kernel on the main instance. But the issue remains same.

Kernel 720_EXT PL -600

I have raised an OSS still no reply.

What could be the another possibility of this error..?

Regards,

Letz..

former_member189797
Active Contributor
0 Kudos

Did you check note 1902094 - Syntax error in CL_RSRTS_METADATA_ODP

is it valid for your system???

Reagan
Advisor
Advisor
0 Kudos

Execute the below comand and supply the output

sapcontrol -nr 00 -function GetVersionInfo

Replace 00 with the right system number.

If the kernel has been updated then wait for the reply from SAP.

The above suggested SAP note 1902094 doesn't seem to be applicable for your system as it is valid only for SAP_BW and you have an ERP 6.0 EHP6 system.

Regards

RB

Former Member
0 Kudos

Hi..Reagan, thanks

C:\Windows\system32>sapcontrol -nr 00 -function GetVersionInfo

10.05.2014 22:39:29

GetVersionInfo

FAIL: HTTP error, HTTP/1.1 401 Unauthorized

C:\Windows\system32>

Gaurav yaar..thanks for the reply..but its not valid.

Reagan
Advisor
Advisor
0 Kudos

Are you running this command as sidadm user ?

Former Member
0 Kudos

Yes...i executed this command by sidadm.

I have run this command with administrator ...

C:\Users\Administrator>sapcontrol -nr 00 -function GetVersionInfo

'sapcontrol' is not recognized as an internal or external command,

operable program or batch file.

thanks.

Former Member
0 Kudos

Also...with the help of below command..

sapcontrol -nr 20-user administrator ******* -function GetEnvironment

10.05.2014 23:41:06

GetEnvironment

FAIL: NIECONN_REFUSED (WSAECONNREFUSED: Connection refused), NiRawConnect failed

in plugin_fopen()

Former Member
0 Kudos

Also.. I have check RSA6 ( ERP DEV System ) and I check the data source below are the display logs. Does these logs has any impact..??

Check for DataSource 0CFM_FI_TRA_ATTR

Application component CFM_TM-IO of DataSource 0CFM_FI_TRA_ATTR does not exist

The even-numbered length of the DEC field EFF_INT can lead to problems

The even-numbered length of the DEC field INT_RATE can lead to problems

The even-numbered length of the DEC field INT_RATE_IN can lead to problems

The even-numbered length of the DEC field INT_RATE_OUT can lead to problems

The even-numbered length of the DEC field INT_REF_SPRD can lead to problems

The even-numbered length of the DEC field INT_REF_SPRD_IN can lead to problems

The even-numbered length of the DEC field INT_REF_SPRD_OUT can lead to problems

Regards,

letz..

Former Member
0 Kudos

Its solved..

Hey Gaurav yaar. It was solved by applying the note. 1902094

Letz...

former_member189797
Active Contributor
0 Kudos

gr8....

Answers (2)

Answers (2)

former_member182657
Active Contributor
0 Kudos

Hi Letz,

In addition last option to reset upgrade and use of SUM SP09,once you can try to run RSDG_ODSO_ACTIVATE to activate missing ODS objects and retry the phase.If still issue persists than wait for SAP reply.

Regards,

Gaurav

Former Member
0 Kudos

Just one more query to all.

I ran /n/asu/upgrade.

All are obligatory and few are optional can I ignore the optional one and proceed.??

Reagan
Advisor
Advisor
0 Kudos

Read all the SAP notes and see which of them are applicable for your system and take relevant actions. If they are not applicable you may ignore and continue

Former Member
0 Kudos

Hi All,

Thanks a lot for your kind support.

I have one more query..

As of now my upgrade is running in shdadow System in MAINSHDRUN/ACT_UPG phase and I guess it will take some more time..in the mean time can i give my Main system to the team for the development work..? is it recommended.? .


The upgrade is running on Development Environment.

Actually we are running out of time.

Regards.

Letz...

ravi_kumar123
Explorer
0 Kudos

Hi Letz...

You can allow users to work on the system until it reaches to "Lock workbench " stage.

That's where it interacts with main repository.

At this stage you would be stopping the development and lock all users except few "super"

Hope this helps..

Regards,

-Ravi.

Reagan
Advisor
Advisor
0 Kudos

The command should be executed as sidadm user.

The FAIL: HTTP error, HTTP/1.1 401 Unauthorized could most probably be due to the sapstartsrv service.

You need to always make sure that the files that were part of the old kernel release are not present in the kernel location when you update the kernel.

I would do a quick restart of the server and execute the command again.

Regards

RB

Former Member
0 Kudos

Hi..Benajmin,

Thanks for your suggestions. Just a quick question

i will restart the whole server from windows..can i start the upgrade back from where i left..?? i

Your comments are highly appreciated.

thanking you in anticipation.

Reagan
Advisor
Advisor
0 Kudos

Yes you can restart the upgrade from the phase where it is now.

The phase which is under execution will be terminated (failed) but you will be asked to repeat the phase when you launch the SUM tool.

Former Member
0 Kudos

Hi...

Still the same...

Extract kernel with sidadm replaced the complete kernel..restarted the server.

stuck since 4 days..:(