cancel
Showing results for 
Search instead for 
Did you mean: 

BI JOB failing with dump DBIF_RSQL_SQL_ERROR exception CX_SY_OPEN_SQL_DB

Former Member
0 Kudos

Hi All,

One of our BI Jobs is failing with the runtime error (DBIF_RSQL_SQL_ERROR exception CX_SY_OPEN_SQL_DB). In SM21 i can see lot of logs saying "BREAKPOINT REACHED". In SM37 i can see this message "Overlapping check with archived data areas for InfoProvider ZCBJCMD0". We are on latest support pack SPS16 (BW 18). Could anybody guide me how i can proceed.

Thanks

Raj

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi everyone,

Note was created for solve this type of errors and dumps:

1946893 - ORA-00060 Deadlock in Cube load

Regards,

Janaina

Former Member
0 Kudos

Thanks Matt.

Little tips, if you can't mark the Update Subsequently in Data Targets option because it's desable, go into the InfoPackages via a Process chain and the option is availaible.

Former Member
0 Kudos

Hello Raj,

Kindly visit this note 1236334 and apply the necessary correction its a program error.

Regards

Vivek

Former Member
0 Kudos

Any replies please

Former Member
0 Kudos

Hi,

Please post the full ABAP dump.

Former Member
0 Kudos

Hi Warren ,

Below is the entire dump:

Runtime Errors DBIF_RSQL_SQL_ERROR

Exception CX_SY_OPEN_SQL_DB

Date and Time 10/15/2008 08:27:19

Short text

SQL error in the database when accessing a table.

What happened?

The database system detected a deadlock and avoided it by rolling back

your transaction.

What can you do?

If possible (and necessary), repeat the last database transaction in the

hope that locking the object will not result in another deadlock.

Note which actions and input led to the error.

For further help in handling the problem, contact your SAP administrator

.

You can use the ABAP dump analysis transaction ST22 to view and manage

termination messages, in particular for long term reference.

Note which actions and input led to the error.

For further help in handling the problem, contact your SAP administrator

.

You can use the ABAP dump analysis transaction ST22 to view and manage

termination messages, in particular for long term reference.

Error analysis

An exception occurred that is explained in detail below.

The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught

in

procedure "WRITE_ICFACT" "(FORM)", nor was it propagated by a RAISING clause.

Since the caller of the procedure could not have anticipated that the

exception would occur, the current program is terminated.

The reason for the exception is:

The database system recognized that your last operation on the database

would have led to a deadlock.

Therefore, your transaction was rolled back

to avoid this.

ORACLE always terminates any transaction that would result in deadlock.

The other transactions involved in this potential deadlock

are not affected by the termination.

How to correct the error

Database error text........: "ORA-00060: deadlock detected while waiting for

resource"

Internal call code.........: "[RSQL/INSR//BIC/FZCTKCMC01 ]"

Please check the entries in the system log (Transaction SM21).

If the error occures in a non-modified SAP program, you may be able to

find an interim solution in an SAP Note.

If you have access to SAP Notes, carry out a search with the following

keywords:

"DBIF_RSQL_SQL_ERROR" "CX_SY_OPEN_SQL_DB"

"GP44T5PEBTA9IEW5SBR2AVDLUXL" or "GP44T5PEBTA9IEW5SBR2AVDLUXL"

"WRITE_ICFACT"

If you cannot solve the problem yourself and want to send an error

notification to SAP, include the following information:

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

To save the description, choose "System->List->Save->Local File

(Unconverted)".

2. Corresponding system log

Display the system log by calling transaction SM21.

Restrict the time interval to 10 minutes before and five minutes

after the short dump. Then choose "System->List->Save->Local File

(Unconverted)".

3. If the problem occurs in a problem of your own or a modified SAP

program: The source code of the program

In the editor, choose "Utilities->More

Utilities->Upload/Download->Download".

4. Details about the conditions under which the error occurred or which

actions and input led to the error.

The exception must either be prevented, caught within proedure

"WRITE_ICFACT" "(FORM)", or its possible occurrence must be declared in the

RAISING clause of the procedure.

To prevent the exception, note the following:

Memory consumption

Roll.... 16192

EM...... 96366504

Heap.... 0

Page.... 32768

MM Used. 76916584

MM Free. 2684328

User and Transaction

Client.............. 100

User................ "ALEREMOTE"

Language key........ "E"

Transaction......... " "

Transactions ID..... "48E86BA3DD8300F0E100800081B07033"

Program............. "GP44T5PEBTA9IEW5SBR2AVDLUXL"

Screen.............. "SAPMSSY0 1000"

Screen line......... 6

Information on where terminated

Termination occurred in the ABAP program "GP44T5PEBTA9IEW5SBR2AVDLUXL" - in

"WRITE_ICFACT".

The main program was "RSBATCH_EXECUTE_PROZESS ".

In the source code you have the termination point in line 2876

of the (Include) program "GP44T5PEBTA9IEW5SBR2AVDLUXL".

The program "GP44T5PEBTA9IEW5SBR2AVDLUXL" was started as a background job.

Job Name....... "BWDTPR_100868_1"

Job Initiator.. "ALEREMOTE"

Job Number..... 08221600

The termination is caused because exception "CX_SY_OPEN_SQL_DB" occurred in

procedure "WRITE_ICFACT" "(FORM)", but it was neither handled locally nor

declared

in the RAISING clause of its signature.

The procedure is in program "GP44T5PEBTA9IEW5SBR2AVDLUXL "; its source code

begins in line

2848 of the (Include program "GP44T5PEBTA9IEW5SBR2AVDLUXL ".

Source Code Extract

Line SourceCde

2846 * write fact table data with array-insert *

2847 ----


2848 FORM write_icfact

2849 USING i_req_sid TYPE rsd_sid

2850 i_pkg_id TYPE rssid "pkg_id only used for delta

2851 i_pdimid TYPE rsdimid

2852 CHANGING c_rc LIKE sy-subrc

2853 c_lines LIKE sy-tabix.

2854 DATA:

2855 l_s_delta_pkg TYPE rsdd_delta_pkg,

2856 l_lines TYPE i,

2857 l_facttab TYPE rsd_tablnm. " KFL01: local fact table

2858

2859 FIELD-SYMBOLS:

2860 <l_s_u> TYPE /BIC/FZCTKCMC01.

2861

2862 l_facttab = '/BIC/FZCTKCMC01'.

2863

2864 CALL FUNCTION 'RSDU_DB_COMMIT'. "Commit falls duprec bei insert!

2865 c_lines = 0.

2866

2867 SORT g_t_u BY

2868 KEY_ZCTKCMC01P

2869 KEY_ZCTKCMC01T

2870 KEY_ZCTKCMC011

2871 KEY_ZCTKCMC012

2872 KEY_ZCTKCMC013

2873 KEY_ZCTKCMC014

2874 .

2875

>>>>> INSERT (l_facttab) FROM TABLE g_t_u.

2877 c_lines = sy-dbcnt.

2878

2879

2880 ***** Check requid if no inconsistency is happened********************

2881 CALL FUNCTION 'RSM_INFOCUBE_WRITE_CHECK'

2882 EXPORTING

2883 i_infocube = 'ZCTKCMC01'

2884 i_rnsid = i_req_sid

2885 EXCEPTIONS

2886 write_not_allowed = 1

2887 OTHERS = 2.

2888 **** shortdump if write is not allowed in the current state *********

2889 **** If no entry in the table RSMDATASTATE ===> no abort *********

2890 IF sy-subrc = 1.

2891 MESSAGE x299(brain)

2892 WITH sy-repid i_req_sid.

2893 ENDIF.

2894 ENDFORM. "WRITE_ICFACT

2895

Contents of system fields

Name Val.

SY-SUBRC 0

SY-INDEX 4

SY-TABIX 0

SY-DBCNT 1

SY-FDPOS 0

SY-LSIND 0

SY-PAGNO 0

SY-LINNO 1

SY-COLNO 1

SY-PFKEY

SY-UCOMM

SY-TITLE Execute Batch Process

SY-MSGTY S

SY-MSGID R7

SY-MSGNO 795

SY-MSGV1 /BIC/YZINVSGTR

SY-MSGV2

SY-MSGV3

SY-MSGV4

SY-MODNO 0

SY-DATUM 20081015

SY-UZEIT 082708

SY-XPROG SAPCNVE

SY-XFORM CONVERSION_EXIT

Active Calls/Events

No. Ty. Program Include Line

Name

7 FORM GP44T5PEBTA9IEW5SBR2AVDLUXL GP44T5PEBTA9IEW5SBR2AVDLUXL 2876

WRITE_ICFACT

6 METHOD CL_RSDD_CUBE_WRITER===========CP CL_RSDD_CUBE_WRITER===========CM00A 181

CL_RSDD_CUBE_WRITER=>WRITE_DTP

5 METHOD CL_RSDD_U_CUBE================CP CL_RSDD_U_CUBE================CM005 33

CL_RSDD_U_CUBE=>IF_RSBK_CMD_U~RECEIVE_DATAPACKAGE

4 METHOD CL_RSBK_PROCESS===============CP CL_RSBK_PROCESS===============CM00Q 132

CL_RSBK_PROCESS=>PROCESS_REQUEST

3 METHOD CL_RSBK_PROCESS===============CP CL_RSBK_PROCESS===============CM002 13

CL_RSBK_PROCESS=>IF_RSBATCH_EXECUTE~EXECUTE

2 FUNCTION SAPLRSBATCH LRSBATCHU13 411

RSBATCH_EXECUTE_PROCESS

1 EVENT RSBATCH_EXECUTE_PROZESS RSBATCH_EXECUTE_PROZESS 359

START-OF-SELECTION

Chosen variables

Name

Val.

No. 7 Ty. FORM

Name WRITE_ICFACT

SY-REPID

GP44T5PEBTA9IEW5SBR2AVDLUXL

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

4533535445434453545345445542222222222222

70444505241995753222164C58C0000000000000

L_FACTTAB

/BIC/FZCTKCMC01

000000000000000000000000000000

000000000000000000000000000000

244424545444433222222222222222

F293F6A34B3D301000000000000000

SY-MSGV4

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

22222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000

%_DUMMY$$

0000

0000

2222

0000

G_T_U

Table IT_9987[1000x60]

\PROGRAM=GP44T5PEBTA9IEW5SBR2AVDLUXL\DATA=G_T_U

Table reference: 986

TABH+ 0(20) = 0700000040ADF308000000000000000000000000

TABH+ 20(20) = 000003DA00002703000003E80000003CFFFFFFFF

TABH+ 40(16) = 0400024000000FE000102C8401800000

store = 0x0700000040ADF308

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 986 (0x000003DA)

label = 9987 (0x00002703)

fill = 1000 (0x000003E8)

leng = 60 (0x0000003C)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000070

occu = 16 (0x00000010)

access = 1 (ItAccessStandard)

idxKind = 1 (ItIndexLinear)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 0 (cmpAllDynamic)

occu0 = 1

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

isCtfyAble = 1

>>>>> Shareable Table Header Data <<<<<

tabi = 0x0700000042E1F648

pgHook = 0x0700000044AF1720

idxPtr = 0x0700000044B943E0

shmTabhSet = 0x0000000000000000

id = 3169 (0x00000C61)

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 1840 (0x00000730)

lineAlloc = 1072 (0x00000430)

shmVersId = 0 (0x00000000)

shmRefCount = 1 (0x00000001)

>>>>> 1st level extension part <<<<<

regHook = Not allocated

collHook = Not allocated

ext2 = Not allocated

>>>>> 2nd level extension part <<<<<

tabhBack = Not allocated

delta_head = Not allocated

pb_func = Not allocated

pb_handle = Not allocated

G_TH_SID_DP

Table[initial]

RSSGC_PDIR

44T5PEBTA9IEW5SBR2AVDLUXL RSDWTMPLWIDTP GP44T5PEBTA9IEW5SBR2AVDLUXL M04036

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

3353544543445354534544554222554554545445522222224533535445434453545345445542222222222222433333

444505241995753222164C58C00023474D0C79440000000070444505241995753222164C58C0000000000000D04036

I_REQ_SID

100868

0080

01A4

No. 6 Ty. METHOD

Name CL_RSDD_CUBE_WRITER=>WRITE_DTP

I_R_CMD

D0000002

C0000003

I_R_DATAPACKAGE

A0000005

4000002B

I_R_LOG

C0000003

B0000024

I_INFOCUBE

ZCTKCMC01

000000000000000000000000000000

000000000000000000000000000000

545444433222222222222222222222

A34B3D301000000000000000000000

E_LINES

0

0000

0000

E_SUBRC

0

0000

0000

CL_RSDD_CUBE_WRITER=>PS_SIMULATION

0

0

2

0

RS_C_FALSE

0

0

2

0

SYST

#######̴############################### #########x#############################T###<####XC#̀##

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FA000000

00000003000000000000000000000000000000000000000000000000000000000000000000000000000000FB000300

000000030000000000000000000000000000000A0000000007000000000000000000000000000105000300FA540000

04000004000000000000010001000100000000000000000008000000000000000000000000000604000C00F083000C

SYST-REPID

CL_RSDD_CUBE_WRITER===========CP

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

4455544545445554545333333333334522222222

3CF2344F3525F729452DDDDDDDDDDD3000000000

CL_RSDD_CUBE_WRITER=>NC_ERROR+4(4)

18

0001

0002

CL_RSDD_CUBE_WRITER=>OS_S_DTA+916(2)

0

0

2

0

RSD_C_BIA_STATUS-ONLY_BIA

O

0

0

4

F

%_ARCHIVE

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

L_PROGID

GP44T5PEBTA9IEW5SBR2AVDLUXL

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

4533535445434453545345445542222222222222

70444505241995753222164C58C0000000000000

L_REQ_SID

100868

0080

01A4

CL_RSDD_CUBE_WRITER=>PS_PDIMID

73

0004

0009

SPACE

0

0

2

0

%_DUMMY$$

0000

0000

2222

0000

SY-XFORM

CONVERSION_EXIT

000000000000000000000000000000

000000000000000000000000000000

444545544454545222222222222222

3FE65239FEF5894000000000000000

No. 5 Ty. METHOD

Name CL_RSDD_U_CUBE=>IF_RSBK_CMD_U~RECEIVE_DATAPACKAGE

I_R_DATAPACKAGE

A0000005

4000002B

I_R_LOG

C0000003

B0000024

R_LINES

0

0000

0000

CX_RS_STEP_FAILED=>UPDATE

RSBK 241#################

000000000000000000000000E000E000E000E000

000000000000000000000000B000C000F000F000

5544222222222222222233300000000000000000

232B000000000000000024100004000300000000

L_INFOCUBE

ZCTKCMC01

000000000000000000000000000000

000000000000000000000000000000

545444433222222222222222222222

A34B3D301000000000000000000000

ME->N_TGT

ZCTKCMC01

000000000000000000000000000000000000000000000

000000000000000000000000000000000000000000000

545444433222222222222222222222222222222222222

A34B3D301000000000000000000000000000000000000

SCREEN

%_17NNS0000026337_%_%_%_%_%_%_

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2533445333333333352525252525252222222222222222222222222222222222222222222222222222222222222222

5F17EE30000026337F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000

L_DATAPAKID

000045

000000

000000

333333

000045

I_R_DATAPACKAGE->N_DATAPAKID

000045

000000

000000

333333

000045

ME->N_TH_BP

Table IT_961[0x24]

\DATA=N_TH_BP

Table reference: 309

TABH+ 0(20) = 0000000000000000000000000000000000000000

TABH+ 20(20) = 00000135000003C10000000000000018FFFFFFFF

TABH+ 40(16) = 040000EE000004700010839401800000

store = 0x0000000000000000

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 309 (0x00000135)

label = 961 (0x000003C1)

fill = 0 (0x00000000)

leng = 24 (0x00000018)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000009

occu = 16 (0x00000010)

access = 4 (ItAccessHashed)

idxKind = 0 (ItIndexNone)

uniKind = 1 (ItUnique)

keyKind = 3 (user defined)

cmpMode = 2 (cmpSingleMcmpR)

occu0 = 1

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

isCtfyAble = 1

>>>>> Shareable Table Header Data <<<<<

tabi = Not allocated

pghook = Not allocated

idxPtr = Not allocated

shmTabhSet = Not allocated

id = Not allocated

refCount = Not allocated

tstRefCount = Not allocated

lineAdmin = Not allocated

lineAlloc = Not allocated

shmVersId = Not allocated

shmRefCount = Not allocated

shmIsReadOnly = Not allocated

>>>>> 1st level extension part <<<<<

regHook = Not allocated

collHook = Not allocated

ext2 = Not allocated

>>>>> 2nd level extension part <<<<<

tabhBack = Not allocated

delta_head = Not allocated

pb_func = Not allocated

pb_handle = Not allocated

SY-REPID

CL_RSDD_U_CUBE================CP

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

4455544555454433333333333333334522222222

3CF2344F5F3525DDDDDDDDDDDDDDDD3000000000

SY-SUBRC

0

0000

0000

SYST-REPID

CL_RSDD_U_CUBE================CP

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

4455544555454433333333333333334522222222

3CF2344F5F3525DDDDDDDDDDDDDDDD3000000000

SYST

#######̴############################### #########x#############################T###<####XC#̀##

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FA000000

00000003000000000000000000000000000000000000000000000000000000000000000000000000000000FB000300

000000030000000000000000000000000000000A0000000007000000000000000000000000000105000300FA540000

04000004000000000000010001000100000000000000000008000000000000000000000000000604000C00F083000C

ME

D0000002

C0000003

L_LINES

0

0000

0000

L_SUBRC

0

0000

0000

%_DUMMY$$

0000

0000

2222

0000

%_VIASELSCR

#

0

4

L_KEY

No. 4 Ty. METHOD

Name CL_RSBK_PROCESS=>PROCESS_REQUEST

%_DUMMY$$

0000

0000

2222

0000

%_FSREG_001

???

??????

??????

RS_C_TRUE

X

0

0

5

8

SYST-REPID

CL_RSBK_PROCESS===============CP

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

4455544555444553333333333333334522222222

3CF232BF02F3533DDDDDDDDDDDDDDD3000000000

SY-REPID

CL_RSBK_PROCESS===============CP

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

4455544555444553333333333333334522222222

3CF232BF02F3533DDDDDDDDDDDDDDD3000000000

ME

F0000000

E0000001

ME->N_S_CURSOR_R-NODE

6

0000

0006

ME->P_R_LOG_STEP

C0000003

B0000024

ME->P_R_INBOUND

A0000005

4000002B

ME->P_R_OUTBOUND

F0000000

F0000000

L_R_UPDATE

D0000002

C0000003

ME->N_S_CURSOR_R+36(8)

D0000002

C0000003

SYST

#######̴############################### #########x#############################T###<####XC#̀##

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FA000000

00000003000000000000000000000000000000000000000000000000000000000000000000000000000000FB000300

000000030000000000000000000000000000000A0000000007000000000000000000000000000105000300FA540000

04000004000000000000010001000100000000000000000008000000000000000000000000000604000C00F083000C

L_LINES

1000

000E

0038

RSBC_C_PROCESSTYPE-FIRST

1

0

0

3

1

SY

#######̴############################### #########x#############################T###<####XC#̀##

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FA000000

00000003000000000000000000000000000000000000000000000000000000000000000000000000000000FB000300

000000030000000000000000000000000000000A0000000007000000000000000000000000000105000300FA540000

04000004000000000000010001000100000000000000000008000000000000000000000000000604000C00F083000C

L_S_PAR-PARVALUE

000000000000000000000000000000000000000000000000000000000000000000000000000

000000000000000000000000000000000000000000000000000000000000000000000000000

222222222222222222222222222222222222222222222222222222222222222222222222222

000000000000000000000000000000000000000000000000000000000000000000000000000

No. 3 Ty. METHOD

Name CL_RSBK_PROCESS=>IF_RSBATCH_EXECUTE~EXECUTE

I_PARAMETER

&āĂ耀㐱〲##ԏ##⠀#넇##########PROCESS###⢪######ಪ######Ҫ######ʪ###괏##㒪######⢪###긏##㒬ༀ#(밀# ƊЀ    㐀㔀#Ѐ#

F008330000020B00000000000000000A002000A000000A000000A000000A003000A002100A003000B0200333333000

F110400050080100000000000000000B008800A00C800A004800A002000D004800A008400E004F00C0014000045040

0000330000000000000000005544455000A000000A000000A000000A000000A000000A000000A00200080000000000

61201200F00047000000000002F3533F00A004600A004800A004000A002F00A004000A008F00C008000A0000000000

E_RETURN

E_T_MSG

Table[initial]

RSBTC_C_STATUS-OK

@08@

0000

0000

4334

0080

%_FSREG_001

???

??????

??????

SY-XFORM

CONVERSION_EXIT

000000000000000000000000000000

000000000000000000000000000000

444545544454545222222222222222

3FE65239FEF5894000000000000000

ME

F0000000

E0000001

%_ARCHIVE

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

%_PRINT

000 0###

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

%_VIASELSCR

#

0

4

L_R_ERROR

F0000000

F0000000

No. 2 Ty. FUNCTION

Name RSBATCH_EXECUTE_PROCESS

ID

DTPR_100868_1

000000000000000000000000000000

000000000000000000000000000000

455553333335322222222222222222

4402F100868F100000000000000000

I_DIALOG_DEBUG_MODE

0

0

2

0

PROCESS

47

0002

000F

G_T_SERVER_100

00

000000000000000000000000000000000000000000000000000000000000000000000000000000000000

000000000000000000000000000000000000000000000000000000000000000000000000000000000000

222222222222222222222222222222222222222222222222222222222222222222222222222222222332

000000000000000000000000000000000000000000000000000000000000000000000000000000000000

L_S_CTRL-LANGU

E

0

0

4

5

SY-LANGU

E

0

0

4

5

SYST-REPID

SAPLRSBATCH

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

5454554454422222222222222222222222222222

310C232143800000000000000000000000000000

SPACE

0

0

2

0

G_NUM3

000

000

000

333

000

%_DUMMY$$

0000

0000

2222

0000

SY-REPID

SAPLRSBATCH

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

5454554454422222222222222222222222222222

310C232143800000000000000000000000000000

L_MODULE_NAME

CL_RSBK_PROCESS

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

4455544555444552222222222222222222222222

3CF232BF02F35330000000000000000000000000

%_SPACE

0

0

2

0

%_CX_TABLEVIEW_ID

2

0000

0002

L_S_CTRL-PROCESS_TYPE

DTP_LOAD

0000000000

0000000000

4555444422

440FCF1400

%_CX_TABSTRIP_ID

3

0000

0003

L_S_CTRL-BATCH_ID

DTPR_100868_1

000000000000000000000000000000

000000000000000000000000000000

455553333335322222222222222222

4402F100868F100000000000000000

%_CX_TABLEVIEW_VERSION

0

0

0

3

0

L_S_CTRL-BATCH_PROCESS

47

0000000000

0000000000

2222222332

0000000470

%_CX_TABSTRIP_VERSION

0

0

0

3

0

L_PARAMETER

&āĂ耀㐱〲##ԏ##⠀#넇##########PROCESS###⢪######ಪ######Ҫ######ʪ###괏##㒪######⢪###긏##㒬ༀ#(밀# ƊЀ    㐀㔀#Ѐ#

F008330000020B00000000000000000A002000A000000A000000A000000A003000A002100A003000B0200333333000

F110400050080100000000000000000B008800A00C800A004800A002000D004800A008400E004F00C0014000045040

0000330000000000000000005544455000A000000A000000A000000A000000A000000A000000A00200080000000000

61201200F00047000000000002F3533F00A004600A004800A004000A002F00A004000A008F00C008000A0000000000

L_R_BATCH_EXECUTE

F0000000

E0000001

L_RETURN

L_T_MSG

Table[initial]

CTRL_200_VAL-CX

<initial>

<initial>

<initial>

G_500_WP_NO

000

000

222

000

SY-SUBRC

0

0000

0000

G_S_800_SEL-DATE_LOW

00000000

00000000

00000000

33333333

00000000

L_S_MSG

IRSBATCH 037CL_RSBK_PROCESS 20081015132653

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

4554454422222222222223334455544555444552222222222222222222222222222222222233333333333333222222

9232143800000000000000373CF232BF02F35330000000000000000000000000000000000020081015132653000000

<%_L016>

???

??????

??????

No. 1 Ty. EVENT

Name START-OF-SELECTION

SYST-REPID

RSBATCH_EXECUTE_PROZESS

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

5544544545445545554545522222222222222222

2321438F5853545F02FA53300000000000000000

L_T_CTRL

Table[initial]

SCREEN

%_17NNS0000026337_%_%_%_%_%_%_

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2533445333333333352525252525252222222222222222222222222222222222222222222222222222222222222222

5F17EE30000026337F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000

L_S_CTRL

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

L_LINES

0

0000

0000

L_S_CTRL-BATCH_PROCESS

0000000000

0000000000

2222222222

0000000000

L_S_PAR-WP_NO

000

000

222

000

ID

DTPR_100868_1

000000000000000000000000000000

000000000000000000000000000000

455553333335322222222222222222

4402F100868F100000000000000000

L_PROCESS

47

0002

000F

%_DUMMY$$

0000

0000

2222

0000

L_S_HEADER-HOLD_PAR_PROCS

0

0

2

0

%_SPACE

0

0

2

0

SYST

#######̴############################### #########x#############################T###<####XC#̀##

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FA000000

00000003000000000000000000000000000000000000000000000000000000000000000000000000000000FB000300

000000030000000000000000000000000000000A0000000007000000000000000000000000000105000300FA540000

04000004000000000000010001000100000000000000000008000000000000000000000000000604000C00F083000C

PROCESS

47

0002

000F

L_S_HEADER-PROCESS_TYPE

DTP_LOAD

0000000000

0000000000

4555444422

440FCF1400

RSBTC_C_PROCESS-DTP_LOAD

DTP_LOAD

0000000000

0000000000

4555444422

440FCF1400

Internal notes

The termination was triggered in function "HandleRsqlErrors"

of the SAP kernel, in line 786 of the module

"//bas/700_REL/src/krn/runt/absapsql.c#10".

The internal operation just processed is "SQLS".

Internal mode was started at 20081015082653.

ORACLE error ORA-060:

"ORA-00060: deadlock detected while waiting for resource"

Internal call code.........: "[RSQL/INSR//BIC/FZCTKCMC01 ]"

Active Calls in SAP Kernel

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

=> 64 bit R/3 Kernel

=> 64 bit AIX Kernel

=> Heap limit = unlimited

=> Stack limit = unlimited

=> Core limit = 1073741312

=> File size limit = unlimited

=> Heap address = 0x0x11be88880

=> Stack address = 0xfffffffffff8360

=> Stack low = 0xfffffffffff8360

=> Stack high = 0xffffffffffff7f0

=> Stack Trace:

AixStack() at 0x1000c8304

CTrcStack2() at 0x1000c83fc

rabax_CStackSave__Fv() at 0x1000b2d70

ab_rabax() at 0x1000af728

ab_rsqlerr__FPCUsiT1P11RS_HEADER94T1Pv() at 0x100588d70

HandleRsqlErrors__F9RsqlError9CloseMode() at 0x100ec5f64

SqlsExecuteCall__FUcP11DynCallInfo() at 0x100ec3d38

ab_jsqls__Fv() at 0x100ebe8fc

ab_extri__Fv() at 0x100417b00

ab_xevent__FPCUs() at 0x100aac420

ab_trigg__Fv() at 0x100aac10c

ab_run() at 0x1014cc908

N_ab_run() at 0x100d68af8

dynpmcal() at 0x100d678c4

dynppai0() at 0x100d6555c

dynprctl() at 0x100d6d2cc

dynpen00() at 0x100d61774

Thdynpen00() at 0x1000e4338

TskhLoop() at 0x1000e6350

ThStart() at 0x1001011f4

DpMain() at 0x10157bba4

nlsui_main() at 0x101ab2968

List of ABAP programs affected

Index Typ Program Group Date Time Size Lang.

0 Prg RSBATCH_EXECUTE_PROZESS 0 08/30/2008 15:06:52 39936 E

1 Prg SAPMSSY0 1 08/30/2008 13:56:27 92160 E

2 Prg SAPMSSYD 1 02/09/2007 16:52:25 21504 E

3 Prg SAPFSYSCALLS 1 03/07/2005 18:01:13 8192 E

4 Prg RSDBRUNT 0 08/30/2008 14:13:00 254976 E

5 Typ RSSCR 0 11/23/1999 09:24:41 5120

6 Prg RSDBSPBL 0 03/07/2005 18:01:13 72704 E

7 Prg SAPDB__S 0 03/07/2005 18:01:13 19456 E

8 Typ VARID 0 04/11/1997 18:32:23 5120

9 Typ SSCRFIELDS 0 05/02/1997 13:16:39 5120

10 Prg %_CSYDB0 0 03/07/2005 18:01:13 36864 E

11 Prg RSDBSPVA 0 08/30/2008 14:49:26 133120 E

12 Typ RSVAMEMKEY 0 12/16/1996 19:31:50 2048

13 Prg RSDBSPMC 0 02/09/2007 16:36:20 79872 E

14 Typ DDSHDESCR 0 11/28/1997 16:26:30 4096

15 Typ SPPARAMS 0 03/07/1997 14:48:48 2048

16 Prg SAPLICON 16 08/30/2008 14:13:02 27648 E

17 Prg %_CICON 16 08/30/2008 14:12:34 107520 E

18 Typ ICONT 0 02/09/2007 15:15:55 2048

19 Prg SAPLSABE 19 03/07/2005 18:01:13 13312 E

20 Prg SAPLSECU 20 08/30/2008 13:26:02 87040 E

21 Typ RSSUBINFO 0 11/22/1999 21:15:17 3072

22 Typ RSEXFCODE 0 07/18/1997 17:04:17 2048

23 Prg SAPLDSYA 23 08/30/2008 13:52:21 45056 E

24 Prg SAPFSDS1 23 03/07/2005 18:01:13 53248 E

25 Typ TDCLD 0 07/14/1998 14:53:43 5120

26 Prg SAPLSDOD 26 01/23/2006 17:31:16 46080 E

27 Typ DOKIL 0 04/07/1997 18:29:04 3072

28 Prg SAPCNVE 28 03/07/2005 18:01:13 8192 E

29 Prg SAPLLANG 29 02/11/2007 23:39:57 10240 E

30 Typ T002 0 02/11/2007 23:39:56 2048

31 Prg SAPFSPOR 0 03/07/2005 18:01:13 15360 E

32 Typ RSPARINT 0 03/10/1995 17:53:00 2048

33 Prg SAPLSTUP 33 08/30/2008 12:32:21 74752 E

34 Prg SAPLCNDP 34 08/30/2008 13:25:16 195584 E

35 Prg SAPLSCNT 35 03/07/2005 18:01:13 30720 E

36 Prg SAPSHDTV 35 03/07/2005 18:01:13 33792 E

37 Prg SAPFGUICNTL 1 03/07/2005 18:01:13 24576 E

38 Prg SAPLOLEA 38 06/30/2007 18:25:14 96256 E

39 Prg SAPLSGUI 39 08/30/2008 13:56:27 84992 E

40 Prg SAPLSTTM 40 11/18/2005 14:35:29 69632 E

41 Prg SAPLSBDC 41 08/30/2008 12:37:16 44032 E

42 Prg SAPLSFES 42 08/30/2008 14:49:06 261120 E

43 Prg SAPLTHFB 43 08/30/2008 14:39:32 394240 E

44 Typ WPINFO 0 02/08/1999 14:18:32 6144

45 Prg SAPLURFC 45 08/30/2008 13:52:50 22528 E

46 Prg SAPLSPLUGIN 46 03/07/2005 18:01:13 8192 E

47 Typ SWCBCONT 0 10/07/1997 12:13:50 3072

48 Typ OLE_VERBS 0 02/09/1995 13:23:37 2048

49 Typ OLE_PA 0 01/13/1995 11:06:59 2048

50 Typ SSCRTEXTS 0 08/15/1997 14:15:15 3072

51 Typ RSBATCHHEADER 0 01/23/2006 19:24:22 6144

52 Prg SAPLRSBATCH 52 08/30/2008 15:12:33 595968 E

53 Typ RSBATCHDEBUG 0 06/14/2004 17:15:14 4096

54 Prg /1BCDWBEN/SAPLREN0002 54 08/30/2008 15:13:47 237568 E

55 Prg SAPLSENA 55 06/30/2007 18:28:43 33792 E

56 Prg SAPLBTCH 56 08/30/2008 14:48:51 1874944 E

57 Typ RSBATCHCTRL_PAR 0 01/23/2006 19:24:22 5120

58 Typ BAL_S_MSG 0 02/01/2001 17:04:55 7168

59 Typ RSBATCHCTRL 0 09/17/2004 14:15:41 5120

60 Typ RSBATCHDATA 0 04/18/2005 09:27:49 6144

61 Prg SAPLRSSM 61 08/30/2008 15:12:41 1010688 E

62 Prg SAPLSYDB 62 08/30/2008 13:28:39 63488 E

63 Prg CL_RSBK_PROCESS===============CP 63 08/30/2008 15:12:31 94208 E

64 Typ RSBK_S_CMD_R 0 06/14/2004 17:14:04 3072

65 Typ RSBKCMDPROP 0 11/18/2005 16:13:41 4096

66 Prg IF_RSBATCH_CALLBACK===========IP 52 08/30/2008 15:02:36 9216 E

67 Prg IF_RSBATCH_EXECUTE============IP 52 03/07/2005 18:01:13 8192 E

68 Typ RSBK_S_PROCESS 0 04/19/2005 14:56:01 3072

69 Typ RSBK_S_CMD_MEMENTO 0 09/17/2004 14:15:27 2048

70 Prg CL_RSBK_REQUEST===============CP 70 08/30/2008 15:12:31 161792 E

71 Prg CL_RSBK_REQUEST_GENERAL=======CP 71 08/30/2008 15:12:31 35840 E

72 Prg SAPLRRSI 72 08/30/2008 15:12:41 246784 E

73 Typ RSD_S_COB_PRO 0 08/30/2008 12:34:41 23552

74 Prg CL_RSR========================CP 74 08/30/2008 15:12:40 157696 E

75 Typ RSR_S_CHANM 0 09/12/2003 11:33:26 2048

76 Typ RSD_S_DTA 0 08/30/2008 12:34:45 27648

77 Prg CL_RS_BASE====================CP 77 08/30/2008 15:03:34 12288 E

78 Prg CL_RSROA_VQ_SERVICES==========CP 78 08/30/2008 15:10:29 47104 E

79 Prg CL_RSD_CHA====================CP 79 08/30/2008 15:12:40 423936 E

80 Typ RSDIOBJV 0 04/18/2005 09:29:38 5120

81 Typ RSDO_S_CHA 0 08/30/2008 12:34:31 14336

82 Prg CL_RSD_IOBJ_VERS==============CP 82 08/30/2008 15:12:40 250880 E

83 Prg SAPLRRMS 83 08/30/2008 15:12:41 40960 E

84 Prg SAPLRRI1 84 08/30/2008 15:12:42 409600 E

85 Typ RSR_S_DEBUGFLAGS 0 08/30/2008 12:35:54 13312

86 Prg SAPLRSDI 86 08/30/2008 15:12:25 40960 E

87 Prg SAPLRSDG_IOBJ_DB_READ 87 08/30/2008 15:12:41 319488 E

88 Typ RSD_S_VIOBJ 0 08/30/2008 12:34:51 27648

89 Prg SAPLRSDN_IOBJ 89 08/30/2008 15:12:41 142336 E

90 Typ RSAROUT 0 09/12/2003 11:34:07 4096

91 Typ RSAROUTT 0 09/12/2003 11:34:07 2048

92 Typ RSDVDPA 0 02/09/2007 18:31:26 8192

93 Typ RSDKYF 0 11/23/2005 13:24:16 5120

94 Typ RSDVTIM 0 04/18/2005 09:29:40 11264

95 Typ RSDVUNI 0 08/30/2008 12:41:29 8192

96 Typ RSDVCHA 0 08/30/2008 12:41:23 13312

97 Typ RSDIOBJ 0 06/14/2004 17:15:23 5120

98 Typ RSDIOBJT 0 09/12/2003 11:34:27 3072

99 Typ RSDNAIP 0 09/12/2003 11:34:41 2048

100 Typ RSD_S_NAIP 0 09/12/2003 11:32:32 2048

101 Prg SAPLRSDN 101 08/30/2008 15:12:41 78848 E

102 Typ RSNSPACE 0 09/12/2003 11:35:01 2048

103 Typ RSPSPACE 0 09/12/2003 11:35:22 2048

104 Typ RSNPAR 0 09/12/2003 11:33:10 3072

105 Prg SAPLSTR4 105 11/23/2005 11:32:50 65536 E

106 Prg %_CTRNSP 105 03/07/2005 18:01:13 9216 E

107 Prg SAPLSTRD 107 08/30/2008 14:49:10 769024 E

108 Typ TRNSPACE 0 07/07/1997 13:56:33 3072

109 Prg SAPLSKEY 109 03/07/2005 18:01:13 27648 E

110 Prg SAPLSCP2 110 08/30/2008 14:40:24 136192 E

111 Typ CODEPAGES 0 06/13/1997 12:41:11 2048

112 Prg CL_ABAP_CHAR_UTILITIES========CP 112 11/18/2005 14:35:28 13312 E

113 Typ RSD_S_DTA_PRO 0 08/30/2008 12:34:47 23552

114 Typ RSDIOBJFIX 0 09/12/2003 11:34:26 5120

115 Prg SAPLRSD_DDIF 115 08/30/2008 15:12:25 29696 E

116 Typ RSDDTEL 0 09/12/2003 11:31:49 5120

117 Prg SAPLSDIFRUNTIME 117 08/30/2008 14:47:26 96256 E

118 Typ DFIES 0 12/19/2004 17:28:52 10240

119 Typ X031L 0 11/18/2005 14:35:28 6144

120 Prg SAPLSDNT 120 08/30/2008 13:25:14 219136 E

121 Prg SAPLSUGS 121 11/23/2005 11:32:50 47104 E

122 Typ DTELINFO 0 11/18/2005 14:35:08 7168

123 Typ DTFLAG1 0 02/02/1998 14:57:43 2048

124 Typ DTFLAG2 0 02/02/1998 14:57:43 2048

125 Typ DTFLAG3 0 01/19/2005 15:59:44 2048

126 Typ RSDCHATHJ 0 02/28/2005 11:34:46 2048

127 Prg CL_RSMD_ALPHA=================CP 127 08/30/2008 15:12:40 82944 E

128 Typ RSMDSTATE 0 06/03/2004 11:20:35 3072

129 Typ RSMDCONVEXIT 0 09/12/2003 11:34:57 2048

130 Prg CL_RSDDTREX_BASE==============CP 130 08/30/2008 15:12:40 50176 E

131 Typ RSDDTREXTABLSTAT 0 08/30/2008 12:39:42 4096

132 Prg SAPLRSDGUTILITIES 132 08/30/2008 15:12:41 96256 E

133 Prg %_CRSDG 132 08/30/2008 15:12:22 76800 E

134 Prg CL_RSD_IOBJ===================CP 134 08/30/2008 15:12:40 233472 E

135 Typ RSDO_S_IOBJ_R 0 09/12/2003 11:32:18 2048

136 Prg CL_RSD_UTILITIES==============CP 136 08/30/2008 15:12:40 65536 E

137 Prg SAPLRSSG 137 08/30/2008 14:48:57 331776 E

138 Typ RSSGTPDIR 0 02/16/2005 19:03:33 4096

139 Typ RSSGTPCLA 0 02/01/2001 17:18:52 2048

140 Typ TRDIR 0 10/05/1998 15:24:19 6144

141 Typ D010SINF 0 02/06/2001 09:52:41 7168

142 Prg GP4DF48GB7N4FFLTLDLUGHMH8EA 72 08/30/2008 15:03:37 53248 E

143 Typ /BI0/SREQUID 0 04/18/2005 08:53:00 3072

144 Typ RSDMHSITABNEW 0 06/14/2004 17:15:24 3072

145 Prg %_CRRSI 72 08/30/2008 13:10:56 22528 E

146 Typ /BI0/RREQUID 0 04/18/2005 09:29:36 2048

147 Typ RSBKREQUEST 0 08/30/2008 12:39:37 6144

148 Typ RSBK_S_DP_R 0 06/14/2004 17:14:04 2048

149 Prg CL_RSBK_REQUEST_STATE=========CP 149 08/30/2008 15:12:31 176128 E

150 Typ DD07V 0 09/15/2004 17:26:57 3072

151 Prg SAPLSDIF 151 08/30/2008 14:47:26 197632 E

152 Typ DD01V 0 12/23/2004 19:35:24 6144

153 Prg SAPLSDDO 153 08/30/2008 14:49:01 242688 E

154 Typ DCDOMAGET 0 01/13/1995 11:00:43 2048

155 Prg RADBTDDO 153 11/18/2005 14:35:29 39936 E

156 Prg RADBTDDF 153 09/10/2008 18:26:03 259072 E

157 Typ DD01L 0 12/19/2004 17:29:53 6144

158 Typ DD01T 0 08/08/1997 14:46:15 3072

159 Typ DDDOSTATE 0 12/20/1996 15:00:00 2048

160 Typ DD07L 0 09/15/2004 17:26:14 3072

161 Typ DD07T 0 08/08/1997 14:46:27 3072

162 Prg CL_RSBK_REQUEST_ACTIVE========CP 162 08/30/2008 15:12:31 59392 E

163 Typ RSBKDATAPAKID 0 02/09/2007 18:30:56 4096

164 Typ RSBKREQUESTRUN 0 12/19/2004 18:19:35 2048

165 Prg CL_RSBK_DTP_H=================CP 165 08/30/2008 15:12:31 65536 E

166 Typ RSBK_S_BUFFER 0 02/19/2005 12:27:24 3072

167 Typ TADIR 0 11/23/2005 11:32:45 5120

168 Prg CL_RSBK_DTP_DATABASE==========CP 168 08/30/2008 15:12:31 72704 E

169 Prg CL_RSBK_DTP_V=================CP 169 08/30/2008 15:12:40 211968 E

170 Typ RSBSOURCEPROP 0 01/04/2005 15:08:14 2048

171 Typ RSBKDTPH 0 08/30/2008 12:39:37 8192

172 Typ RSBKCMD 0 09/17/2004 14:15:42 3072

173 Typ RSBK_S_TPL_R 0 06/14/2004 17:14:04 3072

174 Typ RSBKDTP 0 08/30/2008 12:39:37 8192

175 Typ RSBKDTPTH 0 06/14/2004 17:15:16 2048

176 Typ RSBKDTPT 0 06/14/2004 17:15:16 2048

177 Prg CL_RSBK_DTP===================CP 177 08/30/2008 15:12:40 394240 E

178 Typ RSBKCMDH 0 09/17/2004 14:15:43 3072

179 Prg CL_RSTRAN_TRFN_TPL============CP 179 08/30/2008 15:12:41 95232 E

180 Typ RSTRAN_S_TLOGO 0 10/18/2004 10:32:23 2048

181 Prg CL_RSBK_CMD_TPL_T=============CP 181 08/30/2008 15:12:31 29696 E

182 Prg CL_RSBK_CMD_TPL===============CP 182 08/30/2008 15:12:31 47104 E

183 Typ RSZCOMPKEY 0 09/12/2003 11:33:32 3072

184 Prg IF_RSBK_CMD_TPL===============IP 168 08/30/2008 15:12:33 21504 E

185 Prg IF_SERIALIZABLE_OBJECT========IP 168 03/07/2005 18:01:13 5120 E

186 Prg IF_RSBK_TPL_MANDATORY=========IP 179 08/30/2008 15:12:33 11264 E

187 Prg IF_RSBK_TPL_OPTIONAL==========IP 179 08/30/2008 15:12:33 19456 E

188 Prg IF_RSBK_DEBUG=================IP 179 08/30/2008 15:12:33 13312 E

189 Prg IF_RSBK_SRC_LAST==============IP 179 03/07/2005 18:01:13 6144 E

190 Prg IF_RSBK_TGT_FIRST=============IP 179 08/30/2008 15:12:33 10240 E

191 Prg IF_RSBK_TPL_STATIC============IP 179 08/30/2008 15:12:33 10240 E

192 Prg CL_RSBC_ERROR_HANDLER_TPL=====CP 192 08/30/2008 15:12:40 100352 E

193 Prg IF_RSBC_ERROR_HANDLER=========IP 192 08/30/2008 14:56:37 8192 E

194 Typ RSBM_S_PSA 0 09/17/2004 15:40:46 2048

195 Prg CL_RSBK_CMD_START=============CP 195 08/30/2008 15:12:31 48128 E

196 Prg IF_RSBK_CMD===================IP 195 08/30/2008 15:12:33 15360 E

197 Prg IF_RSBK_CMD_P=================IP 195 08/30/2008 15:12:33 10240 E

198 Prg CL_RSBK_TPL_PREPARE===========CP 198 08/30/2008 15:12:31 41984 E

199 Prg CL_RSBK_TPL_DP_LOOP===========CP 199 08/30/2008 15:12:31 38912 E

200 Prg CL_RSDS_X_TPL=================CP 200 08/30/2008 15:12:40 74752 E

201 Typ RSDS_S_TPL 0 02/09/2007 18:30:35 3072

202 Prg CL_RSBK_CMD_TPL_X=============CP 202 08/30/2008 15:12:31 51200 E

203 Prg CL_RSDS_DTP_PROXY=============CP 203 08/30/2008 15:12:31 95232 E

204 Prg CL_RSBC_FILTER================CP 204 08/30/2008 15:12:40 73728 E

205 Prg CL_RSDD_U_CUBE_TPL============CP 205 08/30/2008 15:12:31 59392 E

206 Prg CL_RSBK_CMD_TPL_U=============CP 206 08/30/2008 15:12:31 30720 E

207 Prg CL_RSBK_CMD_DP_ENDLOOP========CP 207 08/30/2008 15:12:31 51200 E

208 Prg CL_RSBK_CMD_END===============CP 208 08/30/2008 15:12:31 60416 E

209 Typ RSBKDTPSTAT 0 08/30/2008 12:39:37 3072

210 Prg CL_RSBM_LOG_REQUEST_ROOT======CP 210 08/30/2008 15:12:31 64512 E

211 Prg CL_RSBM_LOG_COMPONENT=========CP 211 08/30/2008 15:12:27 107520 E

212 Typ RSBMNODETYPES 0 09/17/2004 14:15:43 2048

213 Prg SAPLRSAS 213 08/30/2008 14:28:36 43008 E

214 Typ TFDIR 0 01/19/2005 15:10:28 3072

215 Prg SAPLRSMANDT 215 08/30/2008 15:12:28 29696 E

216 Prg SAPLRSCC 216 08/30/2008 15:09:55 39936 E

217 Typ DDFIXVALUE 0 01/19/2000 18:27:52 3072

218 Typ DDFTX 0 08/08/1997 14:46:46 5120

219 Typ RSCC_S_FIELD 0 09/12/2003 11:31:33 2048

220 Prg %_CRSCUS 216 08/30/2008 15:03:41 27648 E

221 Typ RSADMINA 0 02/09/2007 18:30:55 6144

222 Typ T000 0 08/22/1997 13:07:16 4096

223 Typ RSBASIDOC 0 08/29/2003 09:35:20 4096

224 Typ RSBM_S_STORAGE 0 02/04/2005 17:35:15 2048

225 Prg CL_RSBM_LOG_PROCESS_STEP======CP 225 08/30/2008 15:12:31 48128 E

226 Typ RSBMNODES 0 01/19/2005 15:32:40 4096

227 Typ RSBMLOG 0 07/21/2004 09:28:55 2048

228 Typ RSBMONMESS 0 11/23/2005 13:24:25 4096

229 Typ RSBMLOGPAR 0 11/23/2005 13:24:25 3072

230 Prg CL_RSBK_DP_STATE==============CP 230 08/30/2008 15:12:31 90112 E

231 Typ RSBKDATAPAKSEL 0 06/14/2004 17:15:16 3072

232 Typ RSBKDATA_V 0 04/18/2005 09:29:36 3072

233 Prg CL_RSBM_LOG_CURSOR_PROCESS====CP 233 08/30/2008 15:12:31 52224 E

234 Prg CL_RSBM_LOG_CURSOR_RUNTIME====CP 234 08/30/2008 15:03:31 19456 E

235 Typ RSBATCHPARALLEL 0 11/23/2005 13:24:24 3072

236 Prg CL_RSTRAN_TRFN_CMD============CP 236 08/30/2008 15:12:32 125952 E

237 Prg CL_RSBK_CMD_T=================CP 237 08/30/2008 15:12:31 24576 E

238 Prg CL_RSBK_CMD===================CP 238 08/30/2008 15:12:31 37888 E

239 Prg CL_RSBC_ERROR_HANDLER=========CP 239 08/30/2008 15:12:31 56320 E

240 Prg CL_RSBM_ERROR_HANDLER_DATA====CP 240 08/30/2008 15:12:22 43008 E

241 Prg CL_RSBK_CMD_PREPARE===========CP 241 08/30/2008 15:12:31 41984 E

242 Prg CL_RSBK_CMD_DP_LOOP===========CP 242 08/30/2008 15:12:31 39936 E

243 Prg CL_RSDS_X_CMD=================CP 243 08/30/2008 15:12:31 83968 E

244 Prg CL_RSAR_X_CMD=================CP 244 08/30/2008 15:12:31 51200 E

245 Prg CL_RSBK_CMD_X_REALTIME========CP 245 08/30/2008 15:12:31 32768 E

246 Prg CL_RSBK_CMD_X=================CP 246 08/30/2008 15:12:31 62464 E

247 Prg CL_RSBC_FILTER_CMD============CP 247 08/30/2008 15:12:30 52224 E

248 Typ RSBKSELECT 0 09/17/2004 15:41:09 3072

249 Prg CL_RSDD_U_CUBE================CP 249 08/30/2008 15:12:31 52224 E

250 Prg CL_RSBK_CMD_U=================CP 250 08/30/2008 15:12:31 34816 E

251 Typ RSBTARGETPROP 0 11/12/2004 15:54:21 3072

252 Prg CL_RSDD_INFOCUBE==============CP 252 08/30/2008 15:12:31 80896 E

253 Typ RSBK_S_DATASTATE 0 01/04/2005 15:07:44 3072

254 Prg CL_RSDD_DTA_TGT===============CP 254 08/30/2008 15:12:31 57344 E

255 Prg CL_RSDD_DTA===================CP 255 08/30/2008 15:12:40 128000 E

256 Prg IF_RSBK_REQUEST_OBSERVER======IP 206 08/30/2008 15:03:42 8192 E

257 Prg IF_RSBK_REQUEST_SERVER========IP 206 08/30/2008 15:11:51 8192 E

258 Prg IF_RSBK_SERVER================IP 206 08/30/2008 15:03:44 8192 E

259 Prg IF_RSBK_SRC===================IP 206 08/30/2008 15:03:44 11264 E

260 Prg IF_RSTRAN_SOURCE==============IP 206 08/30/2008 15:03:37 10240 E

261 Prg IF_RSBK_TGT===================IP 206 08/30/2008 15:03:44 12288 E

262 Prg IF_RSTRAN_TARGET==============IP 206 08/30/2008 15:03:37 9216 E

263 Prg IF_RSBK_SRC_STATIC============IP 206 08/30/2008 15:03:44 7168 E

264 Prg IF_RSBK_TGT_STATIC============IP 206 08/30/2008 15:03:44 7168 E

265 Prg CL_RSD_DTA====================CP 265 08/30/2008 15:12:40 294912 E

266 Typ RSD_S_IPROV 0 08/30/2008 12:34:49 4096

267 Prg CL_RSD_ODSO===================CP 267 08/30/2008 15:12:40 339968 E

268 Typ RSDODSOLOC 0 09/12/2003 11:34:41 2048

269 Typ RSDODSO 0 08/30/2008 12:39:43 8192

270 Typ RSDCUBE 0 08/30/2008 12:39:38 20480

271 Prg CL_RSD_CUBE===================CP 271 08/30/2008 15:12:40 284672 E

272 Typ RSDCUBEPROP 0 08/30/2008 12:34:01 24576

273 Typ RSD_S_INFOPROV_LOC 0 03/07/2005 21:20:33 2048

274 Typ RSCUBESV 0 09/17/2004 14:15:28 4096

275 Typ RSDPROVDATA 0 11/12/2004 15:54:05 3072

276 Typ RSDO_S_CUBE_R 0 09/12/2003 11:32:18 2048

277 Typ RSDG_DIAL_PAR 0 11/12/2004 15:54:04 11264

278 Typ RSDCUBELOC 0 04/18/2005 09:27:50 2048

279 Prg CL_RSARCH_IPRO================CP 279 08/30/2008 15:12:40 197632 E

280 Typ RSARCHIPROLOC 0 09/12/2003 11:34:06 3072

281 Prg CL_RSARCH_CUBE================CP 281 08/30/2008 15:12:40 71680 E

282 Prg IF_RSD_DTA====================IP 271 08/30/2008 15:12:25 31744 E

283 Typ RSD_S_DTA_REQ 0 10/18/2004 10:32:20 2048

284 Typ RSDCOBPROTSTMPL 0 09/12/2003 11:34:18 2048

285 Typ RSDIX 0 09/12/2003 11:34:27 6144

286 Typ RSD_S_DTA_HEAD_BUF 0 08/30/2008 12:34:47 28672

287 Prg IF_RSBK_CMD_X=================IP 239 08/30/2008 15:12:33 16384 E

288 Typ RSBK_SX_FIELDS_KEYFL 0 02/09/2007 18:30:19 4096

289 Prg CL_RSBK_CONVERT===============CP 289 08/30/2008 15:12:31 33792 E

290 Prg CL_RSSM_STATMAN===============CP 290 08/30/2008 15:12:32 143360 E

291 Typ RSSTATMANREQMAP 0 06/14/2004 17:15:49 3072

292 Prg CL_RSDS_RSDS==================CP 292 08/30/2008 15:12:40 399360 E

293 Typ SCX_T100KEY 0 08/21/2003 14:43:58 3072

294 Prg CL_RSO_APPLICATION_LOG========CP 294 08/30/2008 15:12:40 57344 E

295 Typ BAL_S_LOG 0 02/01/2001 17:04:54 7168

296 Prg CL_RSO_REPOSITORY=============CP 296 08/30/2008 15:12:40 295936 E

297 Prg CL_IXML=======================CP 297 11/18/2005 14:35:28 225280 E

298 Prg CL_IXML_UNKNOWN===============CP 298 11/18/2005 14:35:28 8192 E

299 Typ RSO_S_XML_TLOGO 0 09/12/2003 11:33:20 2048

300 Typ RSO_S_XMI_CLASSES 0 09/12/2003 11:33:20 2048

301 Typ RSOCLASS 0 09/12/2003 11:35:02 3072

302 Prg SAPLSBAL 302 08/30/2008 14:47:16 324608 E

303 Typ BAL_S_CONT 0 10/26/1998 14:08:10 2048

304 Typ BAL_S_PARM 0 02/01/2001 17:04:56 3072

305 Typ BAL_S_CLBK 0 10/26/1998 14:08:10 2048

306 Typ BAL_S_SCNT 0 11/30/1998 10:34:01 3072

307 Typ BAL_S_SDEF 0 02/01/2001 17:04:57 2048

308 Prg SAPLSBAL_SERVICE 308 02/11/2007 23:48:41 173056 E

309 Typ BALOBJ 0 06/18/1999 08:44:34 2048

310 Typ BALSUB 0 06/18/1999 08:45:51 2048

311 Prg SAPLSYGU 311 03/07/2005 18:01:13 29696 E

312 Typ RSDS 0 06/30/2007 23:04:18 10240

313 Prg CL_RSDS_RSDS_COLLECTION=======CP 313 08/30/2008 15:12:31 46080 E

314 Typ RSTLOGOPROP 0 02/09/2007 18:31:15 6144

315 Typ RSTSTP 0 07/14/1997 13:01:32 2048

316 Prg CL_RSO_TLOGO_COLLECTION=======CP 316 08/30/2008 15:12:40 137216 E

317 Typ RSO_S_TLOGO_COLL 0 09/12/2003 11:33:20 3072

318 Prg SAPLRSDS_DATASOURCE 318 08/30/2008 15:12:41 311296 E

319 Typ RSOLTPSOURCE 0 11/18/2005 16:13:48 8192

320 Prg CL_RSSM_STATMAN_SOURCE_DTASRC=CP 320 08/30/2008 15:12:32 56320 E

321 Prg CL_RSSM_STATMAN_SOURCE========CP 321 08/30/2008 15:11:51 22528 E

322 Prg SAPLRSDS_BACKEND 322 08/30/2008 15:12:33 106496 E

323 Typ RSSM_S_STATMANSTATUS 0 06/14/2004 17:14:46 2048

324 Prg CL_RSSM_STATMAN_TARGET_CUBE===CP 324 08/30/2008 15:12:32 70656 E

325 Prg CL_RSBK_DP====================CP 325 08/30/2008 15:12:31 34816 E

326 Prg CL_RSBK_DP_GREEN==============CP 326 08/30/2008 15:12:31 25600 E

327 Prg IF_RSBK_DATAPACKAGE_OBSERVER==IP 252 03/07/2005 18:01:13 7168 E

328 Prg CL_RSBM_ERROR_HANDLER=========CP 328 08/30/2008 15:12:31 146432 E

329 Prg /1BCDWBEN/SAPLSENQ03 329 03/07/2005 18:01:13 11264 E

330 Prg GP452386XPC02S15KJJ2UCX5HI1 137 09/05/2008 07:47:42 29696 E

331 Prg SAPLRSAODS 331 08/30/2008 15:12:41 483328 E

332 Typ RSTSODS 0 11/18/2005 16:13:50 4096

333 Prg SAPLSDD2 333 11/18/2005 14:52:57 41984 E

334 Prg SAPLSDB1 334 02/09/2007 16:21:40 39936 E

335 Prg SDB1FORA 334 08/30/2008 14:41:06 73728 E

336 Prg SDB2FORA 334 08/30/2008 14:49:35 208896 E

337 Prg SAPLSDSB 337 02/09/2007 16:21:43 178176 E

338 Prg SDB4FORA 334 02/11/2007 23:44:10 69632 E

339 Prg CL_SQL_STATEMENT==============CP 339 02/11/2007 23:44:10 30720 E

340 Prg CL_SQL_CONNECTION=============CP 340 02/11/2007 23:44:10 21504 E

341 Prg CL_SQL_PARAMETERS=============CP 341 11/18/2005 14:35:29 18432 E

342 Prg CL_SQL_RESULT_SET=============CP 342 02/11/2007 23:44:10 23552 E

343 Prg CL_RSBK_DP_ACTIVE=============CP 343 08/30/2008 15:12:31 39936 E

344 Prg %_CRSSM 331 08/30/2008 15:12:31 172032 E

345 Typ TREEMSNOD 0 01/31/2002 16:40:19 4096

346 Typ RSBK_S_DTP_R 0 06/14/2004 17:14:04 2048

347 Prg CL_RSBK_DTP_A=================CP 347 08/30/2008 15:12:31 75776 E

348 Typ RSBK_S_BP 0 06/14/2004 17:14:04 2048

349 Prg IF_RSBM_LOG_COMP_GUI==========IP 211 08/30/2008 15:03:37 14336 E

350 Prg IF_RSBM_LOG_COMP_RUNTIME======IP 211 08/30/2008 15:03:37 10240 E

351 Prg IF_RSBM_LOG_COMP_STATIC=======IP 211 08/30/2008 15:03:42 6144 E

352 Prg CL_RSBM_LOG_STEP==============CP 352 08/30/2008 15:12:31 74752 E

353 Typ RSBKSUBSTEP 0 03/07/2005 21:20:45 2048

354 Prg CL_RSBK_REUSE=================CP 354 06/30/2007 23:17:40 26624 E

355 Prg CL_RSBM_LOG_DATAPACKAGE=======CP 355 08/30/2008 15:12:31 63488 E

356 Prg CL_RSBK_DATA==================CP 356 08/30/2008 15:12:31 38912 E

357 Prg CX_RS_NOT_FOUND===============CP 357 11/18/2005 14:35:29 14336 E

358 Typ SCX_SRCPOS 0 06/03/2004 11:20:58 2048

359 Prg CX_RS_ACCESS_ERROR============CP 359 11/18/2005 14:35:29 13312 E

360 Prg CX_RS_STATIC_CHECK============CP 360 11/23/2005 13:27:41 14336 E

361 Prg CX_RS_ERROR===================CP 361 11/18/2005 14:35:29 12288 E

362 Prg CX_STATIC_CHECK===============CP 362 11/18/2005 14:35:29 10240 E

363 Prg CX_ROOT=======================CP 363 06/30/2007 18:39:20 11264 E

364 Prg CX_NO_CHECK===================CP 364 11/18/2005 14:35:29 10240 E

365 Typ RSBK_S_RANGE 0 08/30/2008 12:33:30 3072

366 Prg CX_RS_STEP_FAILED=============CP 366 08/30/2008 15:03:34 40960 E

367 Prg CX_RS_DATA_ERROR==============CP 367 11/18/2005 14:35:29 13312 E

368 Prg CL_RSBM_LOG_CURSOR_STEP=======CP 368 08/30/2008 15:12:31 29696 E

369 Prg IF_RSBK_CMD_T=================IP 63 08/30/2008 15:12:33 11264 E

370 Prg CL_RSTRAN_RUNTIME_EXE=========CP 370 08/30/2008 15:12:32 172032 E

371 Prg CL_RSTRAN_STAT================CP 371 08/30/2008 15:12:41 257024 E

372 Typ RSTRANT 0 11/12/2004 15:54:34 3072

373 Typ RSTRAN 0 08/30/2008 12:39:59 7168

374 Prg CL_RSTRAN_MODEL===============CP 374 08/30/2008 15:12:24 52224 E

375 Prg CL_RSTRAN_MASTER==============CP 375 08/30/2008 15:12:32 65536 E

376 Typ RSTRAN_S_MODEL 0 11/12/2004 15:54:14 2048

377 Prg CL_RSTRAN_TRFN================CP 377 08/30/2008 15:12:41 262144 E

378 Typ RSTRAN_S_TRAN 0 11/12/2004 15:54:14 2048

379 Prg CL_RSTRAN_TRFN_VERS===========CP 379 08/30/2008 15:12:41 246784 E

380 Typ RSTRAN_S_SEGMENT 0 09/17/2004 15:41:02 2048

381 Typ RSTRAN_S_RULE 0 09/17/2004 15:41:02 2048

382 Typ RSTRAN_S_GROUP 0 07/21/2004 09:28:49 2048

383 Typ RSTRAN_S_RULE_REF 0 03/07/2005 21:20:35 2048

384 Typ RSTRAN_S_RULESTEP 0 11/12/2004 15:54:14 2048

385 Prg CL_RSODSO_CONSTANTS===========CP 385 02/12/2007 06:18:49 9216 E

386 Prg CL_RSTRAN_STEP_ROUT===========CP 386 08/30/2008 15:12:24 133120 E

387 Typ RSTRANSTEPTYPE 0 11/18/2005 16:13:50 3072

388 Prg CL_RSTRAN_STEP================CP 388 08/30/2008 15:12:24 72704 E

389 Typ RSTRANIF 0 09/17/2004 15:41:22 2048

390 Prg CL_RSDS_RSDS_VERS=============CP 390 08/30/2008 15:12:40 142336 E

391 Typ RSDST 0 06/14/2004 17:15:30 3072

392 Typ RSDSSEG 0 09/17/2004 15:41:14 4096

393 Typ RSDSSEGT 0 09/17/2004 14:15:47 3072

394 Typ RSDSSEGFD 0 08/30/2008 12:34:39 6144

395 Typ RSDSSEGFDT 0 09/17/2004 14:15:46 4096

396 Typ RSDSACCESSATTR 0 06/14/2004 17:15:29 3072

397 Typ RSTRANSEG 0 01/23/2006 19:24:27 2048

398 Typ RSTRANHEADIF 0 12/15/2004 14:27:23 3072

399 Typ RSTRAN_S_FIELD 0 02/09/2007 18:30:44 6144

400 Prg SAPLRSAC 400 08/30/2008 15:12:41 1064960 E

401 Prg SAPLCRFC 401 08/30/2008 14:47:40 375808 E

402 Prg CL_RSAR_SRCTYPE===============CP 402 08/30/2008 15:03:31 22528 E

403 Typ RSSRCTYPE_MAP 0 04/18/2005 09:27:57 4096

404 Typ RSDS_S_SEGFD_INT 0 08/30/2008 12:34:40 7168

405 Prg SAPLSDDM 405 02/09/2007 16:32:59 58368 E

406 Typ RSBK_S_SEGTXT 0 09/17/2004 15:40:46 2048

407 Typ RSTRANFIELDPROP 0 02/09/2007 18:31:15 3072

408 Typ RSDO_S_DIME_SG_R 0 09/12/2003 11:32:18 2048

409 Typ RSDO_S_IOBJ_NA_R 0 09/12/2003 11:32:18 3072

410 Typ RSD_SX_DTA_BUF 0 08/30/2008 12:34:41 14336

411 Prg SAPLRSDG_IOBJ 411 08/30/2008 15:12:41 281600 E

412 Typ RSTRANRULE 0 02/12/2007 06:16:36 3072

413 Prg CL_RSTRAN_TRFN_RULE===========CP 413 08/30/2008 15:12:41 424960 E

414 Typ RSTRAN_SX_MAPPED_FIELD 0 02/09/2007 18:30:44 9216

415 Prg CL_RSO_MSG====================CP 415 08/30/2008 15:12:40 36864 E

416 Prg SAPLRSDG_CUBE_DB_READ 416 08/30/2008 15:12:40 190464 E

417 Typ RSDTBHD 0 09/12/2003 11:32:26 4096

418 Prg %_CRSD 416 08/30/2008 15:12:22 164864 E

419 Typ RSDCUBET 0 09/12/2003 11:34:19 3072

420 Prg SAPLRSDN_CUBE 420 08/30/2008 15:12:41 51200 E

421 Prg SAPLSINT 421 08/30/2008 14:12:41 206848 E

422 Typ DD02L 0 11/13/2001 00:13:06 6144

423 Typ RSTRANRULET 0 12/19/2004 18:19:50 3072

424 Typ RSTRANFIELD 0 02/09/2007 18:31:15 4096

425 Typ RSTRANSTEPMAP 0 11/12/2004 15:54:34 3072

426 Typ RSTRAN_S_POSIT_MAPPING 0 01/19/2005 15:32:33 2048

427 Typ RSTRAN_S_AGGR 0 11/12/2004 15:54:14 2048

428 Typ RSTRANRULESTEP 0 02/04/2005 17:35:42 3072

429 Prg CL_RSTRAN_STEP_DIRECT=========CP 429 08/30/2008 15:12:28 33792 E

430 Prg CL_RSTRAN_STEP_SIMPLE=========CP 430 08/30/2008 15:12:28 39936 E

431 Typ RSTRAN_S_STEP 0 11/12/2004 15:54:14 2048

432 Prg CL_RSTRAN_STEP_CONVERT========CP 432 08/30/2008 15:12:28 39936 E

433 Typ RSTRAN_SX_STEP_FIELD 0 11/18/2005 16:13:36 3072

434 Prg CX_RSTRAN_NUMBER_OF_PARAMETER=CP 434 08/30/2008 14:54:50 16384 E

435 Prg CX_RSTRAN_EXCEPTION===========CP 435 08/30/2008 14:55:56 13312 E

436 Typ RSTRAN_S_MAPPING 0 11/12/2004 15:54:14 3072

437 Typ RSDHIECHA 0 09/12/2003 11:34:25 2048

438 Typ RSD_S_HIECHA 0 09/12/2003 11:32:30 2048

439 Typ RSTRANSTEPROUT 0 04/19/2005 14:56:19 3072

440 Prg SAPLRSAA 440 08/30/2008 15:12:33 173056 E

441 Typ RSAABAP 0 09/12/2003 11:34:02 2048

442 Typ RSAABAPINV 0 09/12/2003 11:34:02 2048

443 Typ RSADMIN 0 06/03/1998 10:31:23 2048

444 Typ ABAPSOURCE 0 01/20/1995 16:59:09 2048

445 Typ RSDBCHATR 0 09/12/2003 11:34:18 3072

446 Typ RSDATRNAV 0 04/18/2005 09:27:50 3072

447 Typ RSD_S_ATR_NAV 0 10/18/2004 10:32:20 4096

448 Typ RSDATRNAVT 0 09/12/2003 11:34:18 3072

449 Typ RSDIOBJCMP 0 09/12/2003 11:34:26 2048

450 Typ RSDICE 0 09/12/2003 11:34:25 3072

451 Typ RSD_S_ICE 0 09/12/2003 11:32:30 3072

452 Prg CL_RSD_KYF====================CP 452 08/30/2008 15:12:40 130048 E

453 Typ RSDO_S_KYF 0 11/23/2005 13:24:17 6144

454 Prg CL_RSTRAN_STEP_TIME===========CP 454 08/30/2008 15:12:24 68608 E

455 Typ RSTRAN_S_POSIT 0 12/15/2004 14:27:23 2048

456 Prg CL_RS_UTILITIES===============CP 456 08/30/2008 15:12:24 55296 E

457 Prg SAPLRSTIME 457 08/30/2008 15:12:30 95232 E

458 Prg CL_RS_TIME_SERVICE============CP 458 08/30/2008 15:12:30 135168 E

459 Typ RSTRAN_S_TIMECONV 0 11/12/2004 15:54:14 2048

460 Prg SAPLRSDC 460 08/30/2008 15:12:41 87040 E

461 Prg CL_RRSI_LOCAL_SID_70==========CP 461 08/30/2008 15:03:31 14336 E

462 Prg SAPLRRSV 462 08/30/2008 15:12:30 252928 E

463 Prg IF_RRSI_LOCAL_SID_70==========IP 461 02/09/2007 18:57:56 5120 E

464 Prg CL_RSRTS_METADATA=============CP 464 08/30/2008 15:10:29 107520 E

465 Typ RSRTSDIRMETADATA 0 08/30/2008 12:39:48 2048

466 Prg GP4BTVE50KYXEAQST4SC8996F2A 72 08/30/2008 15:03:37 55296 E

467 Typ /BI0/SIOBJNM 0 04/18/2005 08:53:02 3072

468 Prg CL_RSTRAN_STEP_CONSTANT=======CP 468 08/30/2008 15:12:30 61440 E

469 Typ RSTRANSTEPCNST 0 11/12/2004 15:54:34 3072

470 Prg CL_RSTRAN_TRFN_RULE_PROXY=====CP 470 08/30/2008 15:12:24 46080 E

471 Prg CL_RSTRAN_TRFN_GROUP==========CP 471 08/30/2008 15:12:28 37888 E

472 Typ RSTRANGROUPT 0 01/19/2005 16:37:32 2048

473 Prg CL_RSTRAN_TRFN_SEGMENT========CP 473 08/30/2008 15:12:28 17408 E

474 Typ RSTRAN_SX_INFO 0 07/21/2004 09:28:49 3072

475 Prg SAPLRSSB 475 08/30/2008 15:12:41 260096 E

476 Prg CL_ABAP_TYPEDESCR=============CP 476 11/18/2005 14:35:28 30720 E

477 Prg CL_ABAP_ELEMDESCR=============CP 477 02/09/2007 16:34:38 36864 E

478 Prg CL_ABAP_DATADESCR=============CP 478 11/18/2005 14:35:28 19456 E

479 Prg CL_ABAP_REFDESCR==============CP 479 11/18/2005 14:35:28 24576 E

480 Prg CL_ABAP_STRUCTDESCR===========CP 480 08/30/2008 13:27:06 40960 E

481 Prg CL_ABAP_COMPLEXDESCR==========CP 481 11/18/2005 14:35:28 17408 E

482 Prg CL_ABAP_TABLEDESCR============CP 482 11/18/2005 14:35:28 25600 E

483 Prg CL_ABAP_CLASSDESCR============CP 483 11/18/2005 14:35:28 30720 E

484 Prg CL_ABAP_OBJECTDESCR===========CP 484 11/18/2005 14:35:28 34816 E

485 Prg CL_ABAP_INTFDESCR=============CP 485 11/18/2005 14:35:28 25600 E

486 Prg CL_ABAP_SOFT_REFERENCE========CP 486 11/18/2005 14:35:28 10240 E

487 Prg CL_ABAP_REFERENCE=============CP 487 03/07/2005 18:01:13 8192 E

488 Prg CL_RSBK_DATA_SEGMENT==========CP 488 08/30/2008 15:06:17 58368 E

489 Typ RSBK_S_FIELD_RT 0 02/09/2007 18:30:19 4096

490 Prg %_CABAP 488 11/18/2005 14:35:28 29696 E

491 Prg CX_SY_STRUCT_COMP_NAME========CP 491 11/18/2005 14:35:29 12288 E

492 Prg CX_SY_STRUCT_CREATION=========CP 492 11/18/2005 14:35:29 11264 E

493 Prg CX_SY_TYPE_CREATION===========CP 493 11/18/2005 14:35:29 10240 E

494 Prg CX_DYNAMIC_CHECK==============CP 494 11/18/2005 14:35:29 10240 E

495 Prg CX_SY_STRUCT_ATTRIBUTES=======CP 495 06/30/2007 18:43:02 11264 E

496 Prg CX_SY_STRUCT_SUFFIX_NAME======CP 496 01/23/2006 17:28:56 12288 E

497 Prg CX_SY_STRUCT_COMP_TYPE========CP 497 11/18/2005 14:35:29 11264 E

498 Rty type000000000000 0 10/15/2008 08:26:54 0

499 Prg CX_SY_TABLE_LINE_TYPE=========CP 499 11/18/2005 14:35:29 11264 E

500 Prg CX_SY_TABLE_CREATION==========CP 500 11/18/2005 14:35:29 10240 E

501 Typ RSAR_S_REF_TO_DATA 0 10/18/2004 10:32:19 2048

502 Prg CL_RSBM_LOG_SUBSTEP===========CP 502 08/30/2008 15:12:31 74752 E

503 Typ RSBKSUBSTEPT 0 09/17/2004 15:40:35 3072

504 Prg SAPLRSDS_SERVICES 504 08/30/2008 15:12:33 261120 E

505 Rty type000000000001 0 10/15/2008 08:26:54 0

506 Prg CL_RSMDS_ABAP_UNIVERSE========CP 506 08/30/2008 14:51:03 24576 E

507 Prg CL_RSMDS_UNIVERSE=============CP 507 08/30/2008 14:51:03 92160 E

508 Prg CL_RSMDS_ABAP_DIMENSION=======CP 508 08/30/2008 14:51:03 24576 E

509 Prg CL_RSMDS_DIMENSION============CP 509 08/30/2008 14:51:03 68608 E

510 Typ X030L 0 11/18/2005 14:35:26 6144

511 Prg CL_RSMDS_ABAP_TYPE============CP 511 08/30/2008 14:51:03 72704 E

512 Prg CX_RSMDS_INPUT_INVALID========CP 512 03/07/2005 18:01:13 21504 E

513 Prg CX_RSMDS_MESSAGE==============CP 513 06/30/2007 18:39:20 15360 E

514 Prg CX_RSMDS_STATIC_CHECK=========CP 514 03/07/2005 18:01:13 10240 E

515 Prg IF_RSMDS_TYPE=================IP 509 08/30/2008 14:51:03 7168 E

516 Typ RSCEDST 0 09/12/2003 11:31:33 2048

517 Prg CL_RSMDS_ORDERED==============CP 517 03/07/2005 18:01:13 14336 E

518 Prg IF_RSMDS_ORDERED==============IP 507 02/09/2007 16:42:09 6144 E

519 Prg IF_RSMDS_DIMENSION============IP 509 08/30/2008 14:51:03 14336 E

520 Prg CL_RSMDS_PATTERN_UTILITIES====CP 520 08/30/2008 13:27:21 39936 E

521 Prg CL_RSMDS_BITSTRING============CP 521 03/07/2005 18:01:13 35840 E

522 Prg CL_RSMDS_SET==================CP 522 08/30/2008 14:51:03 48128 E

523 Prg CL_RSMDS_HASH_UTILITIES=======CP 523 02/09/2007 16:42:09 34816 E

524 Prg SAPLSECH 524 11/18/2005 14:35:29 26624 E

525 Prg CX_SY_MOVE_CAST_ERROR=========CP 525 11/18/2005 14:35:29 11264 E

526 Typ RSMDS_S_DICTITEM 0 09/15/2004 17:25:02 2048

527 Prg CX_SY_ASSIGN_CAST_ILLEGAL_CASTCP 527 03/07/2005 18:01:13 11264 E

528 Prg CX_SY_ASSIGN_CAST_ERROR=======CP 528 03/07/2005 18:01:13 10240 E

529 Prg CX_SY_ASSIGN_ERROR============CP 529 03/07/2005 18:01:13 10240 E

530 Prg CL_RSMDS_DIMENSION_SET========CP 530 08/30/2008 14:51:03 73728 E

531 Prg CL_RSMDS_DATA_REFERENCE=======CP 531 03/07/2005 18:01:13 8192 E

532 Prg CL_ABAP_WEAK_REFERENCE========CP 532 11/18/2005 14:35:28 10240 E

533 Prg CL_RSMDS_CARTESIAN_PRODUCT_SETCP 533 08/30/2008 14:51:03 43008 E

534 Prg CL_RSMDS_OPENSQL_RENDERER=====CP 534 08/30/2008 14:51:03 18432 E

535 Prg CL_RSMDS_SQL_RENDERER=========CP 535 08/30/2008 14:51:00 28672 E

536 Typ RSDMD_S_WHERE 0 09/12/2003 11:31:55 2048

537 Prg CL_RSAR_PSA_API===============CP 537 08/30/2008 15:12:31 137216 E

538 Typ RSAR_S_PSAREQUEST 0 07/21/2004 09:28:39 2048

539 Typ RSTSODSREQUEST 0 04/18/2005 09:27:57 2048

540 Typ /BIC/B0000064000 0 02/14/2007 17:53:35 6144

541 Prg %_CRSODS 331 08/30/2008 15:12:22 52224 E

542 Typ RSTSODSPART 0 09/12/2003 11:35:45 2048

543 Prg /1BCDWBEN/SAPLREN0001 543 08/30/2008 15:13:25 185344 E

544 Prg GP44T5PQX0CZ38F3NTBC4ZUTR6H 331 09/05/2008 07:49:50 45056 E

545 Prg CL_RSAR_PSA===================CP 545 08/30/2008 15:12:31 125952 E

546 Typ RSBM_SX_CROSSTAB 0 05/23/2005 13:27:37 3072

547 Typ RSPCPROCESSLOG 0 04/18/2005 09:27:54 5120

548 Prg SAPLRSPC_BACKEND 548 08/30/2008 15:12:41 240640 E

549 Typ RSPCKILL 0 08/30/2008 12:39:47 3072

550 Rty type000000000002 0 10/15/2008 08:26:54 0

551 Prg IF_RSBK_CMD_U=================IP 63 08/30/2008 15:12:33 11264 E

552 Rty type000000000003 0 10/15/2008 08:26:54 0

553 Typ RSSMSLEEPDEBUG 0 09/12/2003 11:35:42 2048

554 Typ RSSGTPDIRSUB 0 02/16/2005 19:03:34 3072

555 Prg %_CRSSG 137 03/07/2005 18:01:13 23552 E

556 Prg GP44T5PTOV7GXG58ONF6ZFHJAHL 137 09/05/2008 07:54:06 106496 E

557 Prg CL_RSBK_REQUEST_PROXY=========CP 557 08/30/2008 15:12:31 54272 E

558 Typ RSBKREQUEST_V 0 11/18/2005 16:13:52 5120

559 Typ /BI0/ABP_REL00 0 04/18/2008 21:52:16 11264

560 Typ /BI0/ABP_ID00 0 02/14/2007 17:44:48 4096

561 Typ SRFC_SMETH 0 01/22/2003 11:38:16 2048

562 Prg SAPLSCAL 562 08/30/2008 13:55:22 32768 E

563 Prg CL_CALENDAR_DEFINITION_CALLER=CP 563 08/30/2008 13:58:03 18432 E

564 Typ INDX 0 04/29/1998 10:21:27 6144

565 Prg CL_CAL_DEF_CALLER_DYNAMIC=====CP 565 08/30/2008 13:58:03 11264 E

566 Prg CALENDAR_DEFINITION===========CP 566 08/30/2008 16:27:14 13312 E

567 Prg CL_BADI_BASE==================CP 567 03/07/2005 18:01:13 7168 E

568 Prg CL_BADI_CACHE_HANDLER=========CP 568 11/18/2005 14:50:18 15360 E

569 Prg CL_ISO_CALENDAR_DEFINITION====CP 569 08/30/2008 13:58:48 9216 E

570 Prg IF_CALENDAR_DEFINITION========IP 563 08/30/2008 14:07:07 6144 E

571 Typ RSBM_S_CROSSTAB 0 09/17/2004 14:15:28 3072

572 Typ RSBERRORCROSS 0 12/23/2004 20:17:01 3072

573 Prg CL_RSDD_CUBE_WRITER===========CP 573 08/30/2008 15:10:20 92160 E

574 Typ RSDDSTAT_WRITE 0 08/30/2008 12:39:42 3072

575 Prg SAPLRSDDWRITE 575 08/30/2008 15:12:33 123904 E

576 Prg GP44T5PEBTA9IEW5SBR2AVDLUXL 573 09/05/2008 07:53:51 103424 E

577 Prg SAPLRSMDATASTATE 577 08/30/2008 15:12:40 78848 E

578 Typ RSMDATASTATE 0 08/30/2008 12:39:45 5120

579 Typ RSDDTREXDIR 0 08/30/2008 12:34:18 4096

580 Prg CL_RSDA_INFOPROV==============CP 580 08/30/2008 15:12:40 82944 E

581 Prg CL_RSMDS_FILTER===============CP 581 08/30/2008 14:51:03 56320 E

582 Prg CL_RSDA_DAP_REQUEST_COLLECTIONCP 582 08/30/2008 15:12:31 81920 E

583 Prg CL_RSMDS_DDIC_UNIVERSE========CP 583 08/30/2008 14:51:03 25600 E

584 Prg IF_RSDA_CONSTANTS=============IP 582 08/30/2008 15:12:25 20480 E

585 Prg CL_RSDA_DAP===================CP 585 08/30/2008 15:12:40 247808 E

586 Typ RSDADAPLOC 0 02/04/2005 17:35:36 2048

587 Typ /BIC/DZCTKCMC01P 0 03/12/2007 10:21:05 2048

588 Prg GPALCXE7QVUDYSYVTESSRGWZSTS 72 08/30/2008 15:03:37 68608 E

589 Typ /BI0/SCALMONTH 0 04/18/2005 08:53:00 3072

590 Prg GP8EICPCJYOUHCM5ZW07D5NAA40 72 08/30/2008 15:03:37 54272 E

591 Typ /BI0/SCALQUART1 0 04/18/2005 08:52:59 2048

592 Prg GPAPMDOVO2L5G5986J846ILN35C 72 08/30/2008 15:03:37 67584 E

593 Typ /BI0/SCALWEEK 0 04/18/2005 08:53:02 3072

594 Prg GPARR3U7MNYJ6TEED3FRW1FYQB4 72 08/30/2008 15:03:37 67584 E

595 Typ /BI0/SCALYEAR 0 04/18/2005 08:52:59 2048

596 Prg GP8A8WEOMRY300BTMRKVY3YMZSG 72 08/30/2008 15:03:37 54272 E

597 Typ /BI0/SHALFYEAR1 0 04/18/2005 08:53:02 2048

598 Prg GP8CDMK0LDBGQOGZTBSJNMSYMY8 72 08/30/2008 15:03:37 56320 E

599 Typ /BI0/SWEEKDAY1 0 04/18/2005 08:52:59 2048

600 Prg CL_RSR_META===================CP 600 08/30/2008 14:56:27 51200 E

601 Prg CL_RSR_BASE===================CP 601 08/30/2008 15:12:31 17408 E

602 Prg GPAW0K4VJUPAO5OQQ7V3B34M0MO 72 08/30/2008 15:03:37 54272 E

603 Typ /BI0/SDATE 0 04/18/2005 08:52:59 2048

604 Typ /BIC/DZCTKCMC01T 0 03/12/2007 10:21:05 3072

605 Prg GP44SZ6YEHHR58STR6KIYRZ5BKP 72 08/30/2008 15:03:34 157696 E

606 Typ /BI0/SBPARTNER 0 02/13/2007 15:29:39 3072

607 Prg GP44T1JWOEFMQTJ1LQIVG1EESBD 72 08/30/2008 15:03:35 66560 E

608 Typ /BIC/SZSPONKEY 0 02/13/2007 11:22:57 3072

609 Prg GP44T0MFQ8EP00VACQGJTHX3J6H 72 08/30/2008 15:03:35 66560 E

610 Typ /BIC/SZSPONSOR 0 02/13/2007 11:08:32 3072

611 Typ /BIC/DZCTKCMC011 0 03/12/2007 10:21:04 2048

612 Prg GP44T1JUJL60PQCS78WISMLV55L 72 08/30/2008 15:03:35 66560 E

613 Typ /BIC/SZMASACNUM 0 02/13/2007 11:22:55 3072

614 Prg GP44T1JVEB9V4KFAD1JV1ZQ300P 72 08/30/2008 15:03:35 66560 E

615 Typ /BIC/SZPROTCOL 0 02/13/2007 11:22:56 3072

616 Typ /BIC/DZCTKCMC012 0 03/12/2007 10:21:04 2048

617 Prg GP44T1JSMGFDACP5C7G07K3DGPL 72 08/30/2008 15:03:35 66560 E

618 Typ /BIC/SZACCNUM 0 02/13/2007 11:22:53 3072

619 Prg GP44T1JU4843IBBJ4CKUNY1R7Q1 72 08/30/2008 15:03:35 65536 E

620 Typ /BIC/SZINVSGTR 0 02/13/2007 11:22:54 3072

621 Typ /BIC/DZCTKCMC013 0 03/12/2007 10:21:04 2048

622 Prg GP44T1JT1THAHRQEF3ROC8NHE55 72 08/30/2008 15:03:35 65536 E

623 Typ /BIC/SZCARRIER 0 02/13/2007 11:22:53 3072

624 Prg GP44SYXTTADIHO0LRSYETHV48UX 72 08/30/2008 15:03:34 66560 E

625 Typ /BIC/SZCOUNTRY 0 02/13/2007 10:50:32 3072

626 Prg GP44T1JW91DPJEHSIU77BCUAUVT 72 08/30/2008 15:03:35 65536 E

627 Typ /BIC/SZSERVICE 0 02/13/2007 11:22:57 3072

628 Prg GP44T1JWGPWO540F2AD1DP4CTLL 72 08/30/2008 15:03:35 66560 E

629 Typ /BIC/SZSHIP_LOC 0 02/13/2007 11:22:57 3072

630 Prg GP44T1JTWJL4WLSWKWF0LLRP909 72 08/30/2008 15:03:35 66560 E

631 Typ /BIC/SZDOW_DT 0 02/13/2007 11:22:54 3072

632 Prg GP44T1JUBWN240U5NSQOQABT6FT 72 08/30/2008 15:03:35 65536 E

633 Typ /BIC/SZKITORKY 0 02/13/2007 11:22:55 3072

634 Prg GP44SZX8P1ENJUFNR9FDDIN5595 72 08/30/2008 15:03:35 55296 E

635 Typ /BI0/SCURTYPE 0 02/13/2007 11:01:35 2048

636 Typ /BIC/DZCTKCMC014 0 03/12/2007 10:21:05 3072

637 Typ /BIC/FZCTKCMC01 0 03/12/2007 10:21:07 4096

638 Prg CL_RSR_RRSI_SERVICE===========CP 638 08/30/2008 15:12:23 19456 E

639 Prg SAPLRRBA 639 08/30/2008 15:12:30 46080 E

640 Typ TNRO 0 02/19/2005 11:21:14 6144

641 Typ NRIV 0 01/16/1998 17:48:54 3072

642 Prg SAPLRSKC 642 08/30/2008 15:12:26 41984 E

643 Prg CL_ABAP_CONV_IN_CE============CP 643 11/18/2005 14:35:28 22528 E

644 Prg SAPLSBUF 644 08/30/2008 13:53:03 128000 E

645 Prg CL_RSDMD_UPDATE_MASTER_DATA===CP 645 08/30/2008 15:12:31 293888 E

646 Typ RSDMD_S_ERROR 0 09/12/2003 11:31:54 2048

647 Prg CL_RSDMD_MD===================CP 647 08/30/2008 15:12:31 73728 E

648 Prg CL_RSDMD_FACTORY==============CP 648 08/30/2008 15:12:31 25600 E

649 Typ RSDMD_S_UPDATE_CATALOGUE 0 09/12/2003 11:31:55 3072

650 Prg CL_RSD_CRD====================CP 650 08/30/2008 15:12:23 25600 E

651 Typ DD03P 0 02/16/2005 19:03:10 13312

652 Typ DD05M 0 02/01/2001 17:09:48 4096

653 Typ DD08V 0 02/06/1998 12:40:54 4096

654 Typ DD12V 0 07/20/2004 13:13:28 5120

655 Typ DD17V 0 04/07/1997 18:28:05 3072

656 Typ DD35V 0 03/14/2001 11:04:51 2048

657 Typ DD36M 0 03/14/2001 11:04:51 5120

658 Typ DD02V 0 11/13/2001 00:18:46 7168

659 Typ DD09V 0 12/23/2004 19:34:52 5120

660 Prg SAPLSDTB 660 11/18/2005 14:35:48 405504 E

661 Typ DDCACHE 0 01/13/1995 11:02:04 2048

662 Typ DCTABDGET 0 05/02/1997 13:15:33 2048

663 Prg SAPLSDSG 663 11/18/2005 14:35:46 123904 E

664 Typ DD02T 0 04/07/1997 18:27:24 3072

665 Typ DDSTATE 0 12/18/1996 10:40:59 2048

666 Typ DCTABLGET 0 05/02/1997 13:15:34 3072

667 Prg SAPLRSDU_UTIL 667 08/30/2008 15:12:25 76800 E

668 Prg SAPLRSDU_UTIL_ORA 668 08/30/2008 15:12:25 229376 E

669 Prg SAPLSDBT 669 11/18/2005 14:35:28 15360 E

670 Typ /BIC/PZKITORKY 0 02/13/2007 11:22:50 2048

671 Typ /BIC/TZKITORKY 0 02/13/2007 11:23:00 2048

672 Typ RSDMD_S_WHERE_REF 0 06/03/2004 11:20:32 3072

673 Prg CL_RS_WHERE===================CP 673 08/30/2008 15:12:32 27648 E

674 Prg SAPLRSMDD 674 08/30/2008 15:12:26 35840 E

675 Typ RSMDDELTAEX 0 09/12/2003 11:34:58 2048

676 Typ DD03L 0 12/19/2004 17:30:39 6144

677 Typ DD04L 0 07/20/2004 13:13:14 8192

678 Typ DD04T 0 08/01/1997 20:16:12 3072

679 Typ DDSETSTATE 0 12/20/1996 15:00:02 3072

680 Typ TPARA 0 11/23/1999 09:25:36 2048

681 Typ DCDTELGET 0 01/13/1995 11:00:46 2048

682 Typ DD08L 0 05/09/1997 12:50:26 4096

683 Prg SAPLSDFK 683 11/18/2005 14:35:28 26624 E

684 Typ DD35L 0 11/28/1997 16:26:27 2048

685 Typ DD12L 0 07/20/2004 13:13:14 4096

686 Typ DD09L 0 12/23/2004 19:35:15 4096

687 Typ RRSI_S_VALSID 0 09/12/2003 11:30:42 2048

688 Typ /BIC/PZINVSGTR 0 02/13/2007 11:22:49 2048

689 Typ /BIC/TZINVSGTR 0 02/13/2007 11:23:00 2048

690 Prg SAPLRSDU_SQL 690 08/30/2008 15:12:33 83968 E

691 Prg CX_SY_OPEN_SQL_DB=============CP 691 11/18/2005 14:35:29 12288 E

692 Prg CX_SY_OPEN_SQL_ERROR==========CP 692 11/18/2005 14:35:29 10240 E

693 Prg CX_SY_SQL_ERROR===============CP 693 11/18/2005 14:35:29 10240 E

694 Prg CX_SY_NO_HANDLER==============CP 694 11/18/2005 14:35:29 10240 E

695 Typ SYST 0 09/15/2004 17:25:35 31744

696 Prg IF_MESSAGE====================IP 366 11/18/2005 14:35:29 5120 E

697 Prg IF_RS_MESSAGE=================IP 366 03/07/2005 18:01:13 6144 E

698 Prg IF_T100_MESSAGE===============IP 366 11/18/2005 14:35:29 6144 E

699 Prg IF_RSBM_EXCEPTION_LOG=========IP 366 08/30/2008 15:02:49 6144 E

700 Prg IF_RSBK_CMD_STATIC============IP 249 08/30/2008 15:12:33 10240 E

701 Prg %_CRSDS 0 03/07/2005 18:01:13 10240 E

702 Prg %_CSYLDB 0 03/07/2005 18:01:13 8192 E

703 Prg %_CSLIS 20 01/23/2006 17:44:15 89088 E

704 Typ DTC_S_LAYO 0 02/01/2001 17:11:04 6144

705 Typ CAT_SVARS 0 05/18/2004 16:56:44 3072

706 Typ ALRLRSNODE 0 02/01/2001 17:03:46 7168

707 Typ BTCSELECT 0 10/26/1998 14:08:15 5120

708 Typ TBTCJOB 0 02/01/2001 17:26:48 12288

709 Typ TBTCSTRT 0 10/11/1995 09:07:28 6144

710 Typ BTCH1140 0 02/01/2001 17:06:15 15360

711 Typ BAL_S_MDEF 0 02/01/2001 17:04:55 5120

712 Typ BAL_S_CONF 0 09/04/2002 14:38:05 19456

713 Typ BAL_S_COLL 0 09/04/2002 14:38:05 10240

714 Typ BAL_S_MFIL 0 09/04/2002 14:38:05 9216

715 Typ BAL_S_DISP 0 09/04/2002 14:38:05 11264

716 Typ BALMSGHNDL 0 10/26/1998 14:08:09 2048

717 Typ BAL_S_NTAB 0 06/03/2004 11:19:02 4096

718 Prg %_CTCDAT 331 03/07/2005 18:01:13 52224 E

719 Typ TREEMCITEM 0 01/31/2002 16:40:16 3072

720 Typ TREEMIKEY 0 03/01/2001 10:53:26 2048

721 Typ RSSB_SX_IOBJVL_CHECK 0 06/30/2007 23:03:49 4096

722 Prg %_CRSDW 575 08/30/2008 15:12:31 51200 E

723 Prg IF_RSBK_REALTIME_PROCESS======IP 63 08/30/2008 15:12:33 10240 E

724 Typ BAL_S_PAR 0 10/26/1998 14:08:11 2048

Directory of Application Tables

Name Date Time Lngth

Val.

Program RSBATCH_EXECUTE_PROZESS

SYST 09/15/2004 17:25:35 00004612

\0\x0001\0\0\0\0\0̴\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001\0\0\0

SSCRFIELDS 09/15/2004 17:25:21 00001708

SSCRTEXTS / / : : 00000742

Program RSDBRUNT

VARID / / : : 00000252

Program SAPLICON

ICONT / / : : 00000130

E@81@Characteristic (active)

Program SAPFSDS1

TDCLD / / : : 00000098

RE DOKU 8R XX XXLIMUDOKUX ḀXR3TRPROGX

Program SAPLSDOD

DOKIL / / : : 00000152

Program SAPLLANG

T002 / / : : 00000010

ES1EN

Program SAPLRSSM

RSADMIN / / : : 00000120

DEBUG_USER

Program SAPLRSCC

RSADMINA / / : : 00000580

BW ALEREMOTE

Program CL_RSD_DTA====================CP

RSDIX / / : : 00003976

D3ZCTKCMC01 \0\0\0\0\0\0\0\0\0\0\0\0

Program CL_CALENDAR_DEFINITION_CALLER=CP

INDX / / : : 00003104

100ARCAL_DEF \0\0\0 00000000

Program SAPLSDBT

DD02L / / : : 00000316

/BIC/SZINVSGTR A0000TRANSP

ABAP Control Blocks (CONT)

Index Name Fl PAR0 PAR1 PAR2 PAR3 PAR4 PAR5 PAR6 Source Code Line

3831 FUNC 10 0001 GP44T5PEBTA9IEW5SBR2AVDLUXL 2864

3832 FUNC FF 0000 GP44T5PEBTA9IEW5SBR2AVDLUXL 2864

3833 mvqs 04 8500 0000 0000 GP44T5PEBTA9IEW5SBR2AVDLUXL 2865

3835 SORT 40 003B GP44T5PEBTA9IEW5SBR2AVDLUXL 2867

3836 PAR1 80 00B2 GP44T5PEBTA9IEW5SBR2AVDLUXL 2867

3837 PAR1 80 00B3 GP44T5PEBTA9IEW5SBR2AVDLUXL 2867

3838 PAR1 80 00B4 GP44T5PEBTA9IEW5SBR2AVDLUXL 2867

3839 PAR1 80 00B5 GP44T5PEBTA9IEW5SBR2AVDLUXL 2867

3840 PAR1 80 00B6 GP44T5PEBTA9IEW5SBR2AVDLUXL 2867

3841 PAR1 80 00B7 GP44T5PEBTA9IEW5SBR2AVDLUXL 2867

3842 SQLS 0B 0000 GP44T5PEBTA9IEW5SBR2AVDLUXL 2876

3843 SQLS 09 C002 GP44T5PEBTA9IEW5SBR2AVDLUXL 2876

>>>>> SQLS 0F 003B GP44T5PEBTA9IEW5SBR2AVDLUXL 2876

3845 mvqw 04 8505 0000 0028 GP44T5PEBTA9IEW5SBR2AVDLUXL 2877

3847 FUNC 00 5DE1 GP44T5PEBTA9IEW5SBR2AVDLUXL 2881

3848 FUNC 00 00C1 GP44T5PEBTA9IEW5SBR2AVDLUXL 2881

3849 PAR2 02 0000 00CA 0053 GP44T5PEBTA9IEW5SBR2AVDLUXL 2881

3851 PAR2 02 0000 00CB 8000 GP44T5PEBTA9IEW5SBR2AVDLUXL 2881

3853 FUNC 10 0005 GP44T5PEBTA9IEW5SBR2AVDLUXL 2881

3854 FUNC 81 00CC GP44T5PEBTA9IEW5SBR2AVDLUXL 2881

Thanks

Former Member
0 Kudos

Hi Rajendran,

Instead of begging for replies, you should consider why your post was not receiving replies in the first place. The only way for people to help you is if you have provided us with enough information to give a reasonable answer. When you are not receiving replies, it is because this standard has not been met. Do not ask the community to do your work for you. Perform your own due diligence and create a post with enough information and you will receive the replies you are seeking.

Best Regards,

Matt

Former Member
0 Kudos

Instead of giving so much lecture on why i don't get replies, it would have been better if you have suggested me something. Off course you are right that i did not give enough information in my first question but i did post the dump. You should have jumped in immediately when i posted the question but not after posting the dump. I'm waiting for some ideas and replies like this (at least after i posted the dump) are not healthy. I do take your advice to post the problem with more descriptively when i post the question itself, but i don't expect a reply like this after i posted the dump.

Thanks

Former Member
0 Kudos

Hi Rajendran,

I am a Moderator and it is my job to evaluate the quality of posts in the Forums I moderate. You must consider that I am probably not in the same time zone as you, and I have my own job to perform as well. That is, I do not read every post as soon as it is posted! I posted my "lecture" to you not only to have you clean up your post, but so anyone else reading will understand that posts like "any replies please" are completely inappropriate.

Best Regards,

Matt

Former Member
0 Kudos

@Vivek - Note 1236334 is not relevant as it only applies to BI 7.1

@Rajendran

According to your attached short dump, the deadlock error happened on InfoCube ZCTKCMC01.

Please follow all the steps in the Note 631668 "DEADLOCK when loading data into InfoCubes".

Note 631668 explains that the ORA-00060 deadlock error occurs during parallel insert operations, because ORACLE does not support a blocking concept for BITMAP indices at data record level.

Therefore, according to note 631668, you have 2 options to avoid the deadlock and to correct the ORA-00060 problem:

1) Before loading transaction data, delete secondary indexes on the fact table and recreate them after you have loaded the data. You can do this automatically by following the instructions in Note 631668. Basically, you need to do the following: (a) on the 'Performance' tab of cube ZCTKCMC01, click the button 'Create index (Batch)'. (b) now set the flag 'Delete InfoCube indexes before each data load and then refresh'. This is currently not set.

2) The second alternative given in the note is to load the InfoPackage serially into InfoCube ZCTKCMC01. This avoids the deadlock problem. You do this in the following way: In the InfoPackage ,on the 'Processing' tab, choose the 3rd option:

[X] Only PSA [X] Update Subsequently in Data Targets

In this way, the data will be loaded from the PSA to the data target serially, in a batch job, and the ORA-00060 error won't occur. (Currently, you have chosen the 2nd option in this InfoPackage ).

Using these options will resolve the issue for you.

More information can be found in the following Notes:

84348 Oracle deadlocks, ORA-00060

1090952 P16:Request creation is locked too restictively

1044110 INITRANS for InfoCube indexes in BW 7

Best Regards,

Matt

Former Member
0 Kudos

Hi Matt,

Thanks for your suggestions. Please don't take offensive. I somehow missed the note 631668. I will take care that i post full details from next time.

Thanks

Raj

nicola_blasi
Active Participant
0 Kudos

Hello

i've found this thread very useful for my problem .

I have the descripted dump too...and i've tried to apply the Oss note 631668..

In my case i have to use the first option because the user uses a data transfer process (DTP) and so the

second option is not more available.

I'd like to know if is enough going in the infocube written in the dump in rsa1 "create index (batch), setting the flag on "Delete InfoCube indexes before each data load and then refresh" and push continue .........

Is necessary do other things?

thanks

regards

Nicola Blasi

Former Member
0 Kudos

Hi,

I'm facing somewhat similar issue except that I'm loading data into write-optimized DSO with "Do not check uniquness of data" "CHECKED". Hence, this issue should not have arisen in the first place.

Here is a gist of the error and how to correct the error per the dump. I tried to search but found no note nor message anywhere. Before I create a OSS Message, I thought if anyone has encountered this issue and if there is a possible sol.

Runtime Error SAPSQL_ARRAY_INSERT_DUPREC

Exception CX_SY_OPEN_SQL_DB

How to correct the error

Use an ABAP/4 Open SQL array insert only if you are sure that none of

the records passed already exists in the database.

If the error occures in a non-modified SAP program, you may be able to

find an interim solution in an SAP Note.

If you have access to SAP Notes, carry out a search with the following

keywords:

"SAPSQL_ARRAY_INSERT_DUPREC" "CX_SY_OPEN_SQL_DB"

"CL_RSBM_LOG_COMPONENT=========CP" or "CL_RSBM_LOG_COMPONENT=========CM00H"

"IF_RSBM_LOG_COMP_RUNTIME~ADD_T_MSG"

Thanks

Former Member
0 Kudos

I answer my own question. Just found a note which might be relevant 1293589.

former_member209895
Contributor
0 Kudos

Hi Matt,

     Your answer helped me if fixing the data load issue. I had to drop the indices and run the DTP and the load got through successfully.

Wish I could award you more than 2 points by clicking on LIKE.

Thank you 🙂

Regards,

  Manohar. D