cancel
Showing results for 
Search instead for 
Did you mean: 

Job for V3 updates failing for inventory

Former Member
0 Kudos

Dear all,

We have implemented inventory in BW and are extracting data from R/3 using LO extraction method. The V3 update is scheduled in R/3 using 'Queued Delta' method. It has been running fine for last six months or so but suddenly the V3 update job in R/3 started failing with a dump (This does not happen for other LO applications). The dump says that a structure has been changed for this application but doesn't say which one. We found a solution for this kind of problem in SAP notes 834897, 838050 and 835466 but before we can implement these we need to identify which structure was changed. The dump is as follows:

-

-

-

-

-

-

-


START OF DUMP----

-

-

-

-

-

-


Runtime Errors MESSAGE_TYPE_X

Date and Time 05.10.2007 15:03:31

-

-

-

-

-

-

-


-

-

-

-

-

-

-


Short text

The current application triggered a termination with a short dump.

-

-

-

-

-

-

-


-

-

-

-

-

-

-


What happened?

The current application program detected a situation which really

should not occur. Therefore, a termination with a short dump was

triggered on purpose by the key word MESSAGE (type X).

-

-

-

-

-

-

-


-

-

-

-

-

-

-


What can you do?

Note down which actions and inputs caused the error.

To process the problem further, contact you SAP system

administrator.

Using Transaction ST22 for ABAP Dump Analysis, you can look

at and manage termination messages, and you can also

keep them for a long time.

-

-

-

-

-

-

-


-

-

-

-

-

-

-


Error analysis

Short text of error message:

Structures have changed (sy-subrc=2)

Long text of error message:

Technical information about the message:

Message class....... "MCEX"

Number.............. 194

Variable 1.......... 2

Variable 2.......... " "

Variable 3.......... " "

Variable 4.......... " "

-

-

-

-

-

-

-


-

-

-

-

-

-

-


How to correct the error

Probably the only way to eliminate the error is to correct the program.

-

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

find an interim solution in an SAP Note.

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

keywords:

"MESSAGE_TYPE_X" " "

"SAPLMCEX" or "LMCEXU02"

"MCEX_UPDATE_03"

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 700

Application server... "erpdevmil"

Network address...... "10.100.100.22"

Operating system..... "Windows NT"

Release.............. "5.2"

Hardware type........ "4x AMD64 Level"

Character length.... 16 Bits

Pointer length....... 64 Bits

Work process number.. 24

Shortdump setting.... "full"

Database server... "ERPDEVMIL"

Database type..... "MSSQL"

Database name..... "RD1"

Database user ID.. "rd1"

Char.set.... "C"

SAP kernel....... 700

created (date)... "Mar 20 2007 00:05:20"

create on........ "NT 5.2 3790 Service Pack 1 x86 MS VC++ 14.00"

Database version. "SQL_Server_8.00 "

Patch level. 102

Patch text.. " "

Database............. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"

SAP database version. 700

Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"

Memory consumption

Roll.... 16192

EM...... 20949200

Heap.... 0

Page.... 40960

MM Used. 2661520

MM Free. 1525696

-

-

-

-

-

-

-


-

-

-

-

-

-

-


User and Transaction

Client.............. 200

User................ "ENTEG1"

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

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

Program............. "SAPLMCEX"

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

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

-

-

-

-

-

-

-


-

-

-

-

-

-

-


Information on where terminated

Termination occurred in the ABAP program "SAPLMCEX" - in "MCEX_UPDATE_03".

The main program was "RMCEXUP1 ".

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

of the (Include) program "LMCEXU02".

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

Job Name....... "LIS-BW-VB_APPLICATION_03_200"

Job Initiator.. "ENTEG1"

Job Number..... 15033001

-

-

-

-

-

-

-


-

-

-

-

-

-

-


Source Code Extract

-

-

-

-

-

-

-


Line

SourceCde

-

-

-

-

-

-

-


29

30

IF NOT I_DDIC_HASH IS INITIAL.

31

32

IF gf_tmsp_hash_ok IS INITIAL.

33

34

CALL FUNCTION 'MCEX_GEN_AND_CHECK_HASH'

35

EXPORTING

36

I_FUNCNAME = 'MCEX_UPDATE_03'

37

I_COLLECTIVE_RUN = 'X'

38

I_APPLICATION = '03'

39

I_STORED_DDIC_HASH = I_DDIC_HASH

40

I_STORED_TMSP_HASH = I_TMSP_HASH

41

IMPORTING

42

E_DDIC_HASH = I_DDIC_HASH

43

E_TMSP_HASH = lf_TMSP_HASH

44

EXCEPTIONS

45

HASH_COMPARE_OK = 1

46

HASH_COMPARE_NOT_OK = 2

47

NO_INTERFACE = 3

48

HASH_ERROR = 4

49

DDIC_ERROR = 5

50

OTHERS = 6 .

51

52

IF I_TMSP_HASH = lf_tmsp_hash.

53

gf_tmsp_hash_ok = true.

54

ENDIF.

55

case sy-subrc.

56

when 0. " Compare OK - do nothing

57

when 1. " Compare OK - do nothing

58

when 2. " Compare not ok - abort

>>>>>

message x194(mcex) with sy-subrc.

60

when others.

61

message x193(mcex) with sy-subrc.

62

endcase.

63

endif.

64

endif.

65

66

  • HASH*****************************************************************

67

68

69

  • Structure for logging.

70

DATA: l_mcsi_key LIKE mcs06.

71

72

DATA: ls_mcexlog_info LIKE mcexlog_info. "MCEXLOG766622

73

74

  • Initialization of tables

75

REFRESH: mc03bf0_tab,

76

mc03bx0_tab,

77

mc03um0_tab.

78

-

-

-

-

-

-

-


-

-

-

-

-

-

-


Contents of system fields

-

-

-

-

-

-

-


Name

Val.

-

-

-

-

-

-

-


SY-SUBRC

2

SY-INDEX

0

SY-TABIX

3

SY-DBCNT

0

SY-FDPOS

30

SY-LSIND

0

SY-PAGNO

0

SY-LINNO

1

SY-COLNO

1

SY-PFKEY

SY-UCOMM

SY-TITLE

BW Logistics Extraction Delta Update

SY-MSGTY

X

SY-MSGID

MCEX

SY-MSGNO

194

SY-MSGV1

2

SY-MSGV2

SY-MSGV3

SY-MSGV4

SY-MODNO

0

SY-DATUM

20071005

SY-UZEIT

150331

SY-XPROG

SAPMSSY1

SY-XFORM

XAB_READ

-

-

-

-

-

-

-


-

-

-

-

-

-

-


Active Calls/Events

-

-

-

-

-

-

-


No. Ty. Program Include Line

Name

-

-

-

-

-

-

-


8 FUNCTION SAPLMCEX LMCEXU02 59

MCEX_UPDATE_03

7 FUNCTION SAPLMCEX LMCEXU43 13

MCEX_UPDATE_03_QRFC

6 FORM SAPLMCEX LMCEXU43 1

MCEX_UPDATE_03_QRFC

5 FORM SAPMSSY1 SAPMSSY1 271

XAB_RUN_DRIVER

4 FUNCTION SAPLSXAB LSXABU01 9

RFC_RUN_XAB_DRIVER

3 FUNCTION SAPLERFC LERFCU01 75

ARFC_EXECUTE

2 FUNCTION SAPLERFC LERFCU11 116

TRFC_QOUT_GET_AND_PROCESS

1 EVENT RMCEXUP1 RMCEXUP1 7

START-OF-SELECTION

-

-

-

-

-

-

-


-

-

-

-

-

-

-


Chosen variables

-

-

-

-

-

-

-


Name

Val.

-

-

-

-

-

-

-


No. 8 Ty. FUNCTION

Name MCEX_UPDATE_03

-

-

-

-

-

-

-


CONTR

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

I_DDIC_HASH

##ºªÜç##Ä#µõ#×#å

21BADE19C8BF0D0E

3AAAC7EC4C55C7F5

I_TMSP_HASH

gr\u00D3µ##A´}9Ç##*;

675DB824B73C8923

72C35F314D97BDAB

ZEITP

BF

44

26

00

00

XMCBEST[]

Table IT_140[6x1294]

FUNCTION-POOL=MCEXFORM=MCEX_UPDATE_03_QRFCDATA=%_%_XMCBEST

Table reference: 21

TABH+ 0(20) = 8088336DFE070000908B2A6DFE07000000000000

TABH+ 20(20) = 150000008C000000060000000E050000FFFFFFFF

TABH+ 40(16) = 04540000E06C000008000000C1308001

store = 0x8088336DFE070000

ext1 = 0x908B2A6DFE070000

shmId = 0 (0x00000000)

id = 21 (0x15000000)

label = 140 (0x8C000000)

fill = 6 (0x06000000)

leng = 1294 (0x0E050000)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000566

occu = 8 (0x08000000)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 8 (cmpManyEq)

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 = 0x70B9376DFE070000

pgHook = 0x0000000000000000

idxPtr = 0x0000000000000000

shmTabhSet = 0x0000000000000000

id = 137 (0x89000000)

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 8 (0x08000000)

lineAlloc = 8 (0x08000000)

shmVersId = 0 (0x00000000)

shmRefCount = 1 (0x01000000)

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

regHook = 0x0000000000000000

collHook = 0x0000000000000000

ext2 = 0x6089336DFE070000

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

tabhBack = 0x2072226DFE070000

delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000

pb_func = 0x0000000000000000

pb_handle = 0x0000000000000000

XMCMSEG[]

Table IT_141[3x4332]

FUNCTION-POOL=MCEXFORM=MCEX_UPDATE_03_QRFCDATA=%_%_XMCMSEG

Table reference: 23

TABH+ 0(20) = F088336DFE070000408A336DFE07000000000000

TABH+ 20(20) = 170000008D00000003000000EC100000FFFFFFFF

TABH+ 40(16) = 04540000406D000002000000C1308001

store = 0xF088336DFE070000

ext1 = 0x408A336DFE070000

shmId = 0 (0x00000000)

id = 23 (0x17000000)

label = 141 (0x8D000000)

fill = 3 (0x03000000)

leng = 4332 (0xEC100000)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000568

occu = 2 (0x02000000)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 8 (cmpManyEq)

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 = 0x0024386DFE070000

pgHook = 0xE08F2A6DFE070000

idxPtr = 0x0000000000000000

shmTabhSet = 0x0000000000000000

id = 140 (0x8C000000)

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 4 (0x04000000)

lineAlloc = 4 (0x04000000)

shmVersId = 0 (0x00000000)

shmRefCount = 1 (0x01000000)

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

regHook = 0x0000000000000000

collHook = 0x0000000000000000

ext2 = 0xD089336DFE070000

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

tabhBack = 0x30A53A6DFE070000

delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000

pb_func = 0x0000000000000000

pb_handle = 0x0000000000000000

SY-REPID

SAPLMCEX

5454444522222222222222222222222222222222

310CD35800000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

MC40RP0REVSETUP

0000000000###############################################################################

2222233333333330000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

CKS_EN

9

3

9

0

0

SY-SUBRC

2

0000

2000

%_DUMMY$$

2222

0000

0000

0000

T001

00

2222222222222222222222222222222222222222222222222222222222222222222222332222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

SY-XPROG

SAPMSSY1

5454555322222222222222222222222222222222

310D339100000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

SY-MSGID

MCEX

44452222222222222222

D3580000000000000000

00000000000000000000

00000000000000000000

ITAB_SETUPTAB

22222222222222222222222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000000000000000000000

MC06M_0ITM_TAB[]

Table[initial]

SPACE

2

0

0

0

SY-MSGNO

194

333

194

000

000

ITAB_SETUPTAB[]

Table[initial]

SY-MSGV1

2

32222222222222222222222222222222222222222222222222

20000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

SY-MSGV2

22222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

SY-MSGV3

22222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

SY-MSGV4

22222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

%_VIASELSCR

#

0

4

GT_TMCEXUPD[]

Table[initial]

-

-

-

-

-

-

-


No. 7 Ty. FUNCTION

Name MCEX_UPDATE_03_QRFC

-

-

-

-

-

-

-


CONTR

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

I_DDIC_HASH

5)¢Ð#M###ÁÒ¼rHõº

32AD14919CDB74FB

59202D95E12C285A

I_TMSP_HASH

gr\u00D3µ##A´}9Ç##*;

675DB824B73C8923

72C35F314D97BDAB

ZEITP

BF

44

26

00

00

XMCBEST[]

Table IT_140[6x1294]

XMCMSEG[]

Table IT_141[3x4332]

CSTRUC_NTF

MCQMEL MCQMFE MCQMUR MCQM

4454442222222222222222222222224454442222222222222222222222224454552222222222222222222222224454

D31D5C000000000000000000000000D31D65000000000000000000000000D31D52000000000000000000000000D31D

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

ESTRUC_I0

MC17I00NTF MC17I00ITM MC17I00CSE MC17

4433433454222222222222222222224433433454222222222222222222224433433454222222222222222222224433

D317900E4600000000000000000000D31790094D00000000000000000000D31790033500000000000000000000D317

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-

-

-

-

-

-

-


No. 6 Ty. FORM

Name MCEX_UPDATE_03_QRFC

-

-

-

-

-

-

-


CON_MCVBUP

MCVBUP

445455222222222222222222222222

D36250000000000000000000000000

000000000000000000000000000000

000000000000000000000000000000

%_%_CONTR

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

%_%_I_DDIC_HASH

5)¢Ð#M###ÁÒ¼rHõº

32AD14919CDB74FB

59202D95E12C285A

%_%_I_TMSP_HASH

gr\u00D3µ##A´}9Ç##*;

675DB824B73C8923

72C35F314D97BDAB

%_%_ZEITP

BF

44

26

00

00

%_%_XMCBEST

Table IT_140[6x1294]

%_%_XMCMSEG

Table IT_141[3x4332]

-

-

-

-

-

-

-


No. 5 Ty. FORM

Name XAB_RUN_DRIVER

-

-

-

-

-

-

-


SYST-REPID

SAPMSSY1

5454555322222222222222222222222222222222

310D339100000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

PROGRAM

SAPLERFC

5454454422222222222222222222222222222222

310C526300000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

PROG

SAPLERFC

5454454422222222222222222222222222222222

310C526300000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

NEW_FUNCTION

222222222222222222222222222222

000000000000000000000000000000

000000000000000000000000000000

000000000000000000000000000000

%_ARCHIVE

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

RFCTYPE_ABAP4_EXIT

7

0000

7000

SY-XFORM

XAB_READ

544554442222222222222222222222

812F25140000000000000000000000

000000000000000000000000000000

000000000000000000000000000000

IF_FOUND

0

0000

0000

SY-XPROG

SAPMSSY1

5454555322222222222222222222222222222222

310D339100000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

%_SPACE

2

0

0

0

-

-

-

-

-

-

-


No. 4 Ty. FUNCTION

Name RFC_RUN_XAB_DRIVER

-

-

-

-

-

-

-


NEW_FUNCTION

222222222222222222222222222222

000000000000000000000000000000

000000000000000000000000000000

000000000000000000000000000000

PROGRAM

SAPLERFC

5454454422222222222222222222222222222222

310C526300000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

%_VIASELSCR

#

0

4

SY-XPROG

SAPMSSY1

5454555322222222222222222222222222222222

310D339100000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

SYST-REPID

SAPLSXAB

5454554422222222222222222222222222222222

310C381200000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

-

-

-

-

-

-

-


No. 3 Ty. FUNCTION

Name ARFC_EXECUTE

-

-

-

-

-

-

-


SYST-REPID

SAPLERFC

5454454422222222222222222222222222222222

310C526300000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

QRETDATA

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

CL_BGRFC_SERVER=>TID

222222222222222222222222

000000000000000000000000

000000000000000000000000

000000000000000000000000

RECEIVER_TID

0A64641611A046DF840B0DEB

343333333343334433343444

016464161110464684020452

000000000000000000000000

000000000000000000000000

DATA[]

Table IT_134[2x1918]

FUNCTION=TRFC_QOUT_GET_AND_PROCESSDATA=IDATA[]

Table reference: 13

TABH+ 0(20) = 30A73A6DFE070000B06E226DFE07000000000000

TABH+ 20(20) = 0D00000086000000020000007E07000098000000

TABH+ 40(16) = 043300001013000008000000C1248001

store = 0x30A73A6DFE070000

ext1 = 0xB06E226DFE070000

shmId = 0 (0x00000000)

id = 13 (0x0D000000)

label = 134 (0x86000000)

fill = 2 (0x02000000)

leng = 1918 (0x7E070000)

loop = 152 (0x98000000)

xtyp = TYPE#000087

occu = 8 (0x08000000)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

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 = 0x709A316DFE070000

pgHook = 0x0000000000000000

idxPtr = 0x0000000000000000

shmTabhSet = 0x0000000000000000

id = 130 (0x82000000)

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 8 (0x08000000)

lineAlloc = 8 (0x08000000)

shmVersId = 0 (0x00000000)

shmRefCount = 1 (0x01000000)

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

regHook = 0x0000000000000000

collHook = 0x0000000000000000

ext2 = 0xB071226DFE070000

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

tabhBack = 0xA084236DFE070000

delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000

pb_func = 0x0000000000000000

pb_handle = 0x0000000000000000

DATA

0A64641611A046DF840B0DEBNONE 00000002##############################

343333333343334433343444444422222222222222222222222222223333333300010000072005019DBBC16F0064E1

016464161110464684020452EFE5000000000000000000000000000000000002000000330B003002DE5635F51F2936

000000000000000000000000000000000000000000000000000000000000000000070000F0E0630108F066BDB0ADB6

000000000000000000000000000000000000000000000000000000000000000002000325A2A0910F2E4D08DAE5730D

<%_L001>

???

??????

??????

QRFC_VERSION

6.30.060

32332333

6E30E060

00000000

00000000

ACT_QIN

000000000000000000000000

2222222222222222222222222222222222222222222222222223333333333333333333333332222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

<%_L001>-ARFCBLCNT

???

??????

??????

USE_STOP

2

0

0

0

QRSTATE-ARFCTIME

22222222

00000000

00000000

00000000

NCALL

00000002

33333333

00000002

00000000

00000000

DATA-ARFCLUWCNT

00000002

33333333

00000002

00000000

00000000

STATE[]

Table IT_133[1x972]

FUNCTION=TRFC_QOUT_GET_AND_PROCESSDATA=ISTATE[]

Table reference: 15

TABH+ 0(20) = E0A83A6DFE070000208F286DFE07000000000000

TABH+ 20(20) = 0F0000008500000001000000CC030000FFFFFFFF

TABH+ 40(16) = 043300009011000010000000C1248001

store = 0xE0A83A6DFE070000

ext1 = 0x208F286DFE070000

shmId = 0 (0x00000000)

id = 15 (0x0F000000)

label = 133 (0x85000000)

fill = 1 (0x01000000)

leng = 972 (0xCC030000)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000079

occu = 16 (0x10000000)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

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 = 0x905D316DFE070000

pgHook = 0x0000000000000000

idxPtr = 0x0000000000000000

shmTabhSet = 0x0000000000000000

id = 129 (0x81000000)

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 16 (0x10000000)

lineAlloc = 16 (0x10000000)

shmVersId = 0 (0x00000000)

shmRefCount = 1 (0x01000000)

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

regHook = 0x0000000000000000

collHook = 0x0000000000000000

ext2 = 0xC08D286DFE070000

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

tabhBack = 0x608E286DFE070000

delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000

pb_func = 0x0000000000000000

pb_handle = 0x0000000000000000

STATE

0A64641611A046DF840B0DEBNONE 00000002READ MCEX_UPDATE_03_QRFC

3433333333433344333434444444222222222222222222222222222233333333544422224445555445453355544222

016464161110464684020452EFE500000000000000000000000000000000000225140000D358F504145F03F1263000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

RCV_SSTATE+0(972)

0#A#6#4#6#4#1#6#1#1#A#0#4#6#D#F#8#4#0#B#0#D#E#B#N#O#N#E# # # # # # # # # # # # # # # # # # # #

3040303030303030303040303030404030303040304040404040404020202020202020202020202020202020202020

001060406040106010101000406040608040002000405020E0F0E05000000000000000000000000000000000000000

STATE+0(972)

0#A#6#4#6#4#1#6#1#1#A#0#4#6#D#F#8#4#0#B#0#D#E#B#N#O#N#E# # # # # # # # # # # # # # # # # # # #

3040303030303030303040303030404030303040304040404040404020202020202020202020202020202020202020

001060406040106010101000406040608040002000405020E0F0E05000000000000000000000000000000000000000

TSTATE[]

Table IT_139[1x972]

FUNCTION=ARFC_EXECUTEDATA=TSTATE[]

Table reference: 19

TABH+ 0(20) = A07E2A6DFE070000000000000000000000000000

TABH+ 20(20) = 130000008B00000001000000CC030000FFFFFFFF

TABH+ 40(16) = 043300009011000010000000C1248001

store = 0xA07E2A6DFE070000

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 19 (0x13000000)

label = 139 (0x8B000000)

fill = 1 (0x01000000)

leng = 972 (0xCC030000)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000079

occu = 16 (0x10000000)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

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 = 0x402E336DFE070000

pgHook = 0x0000000000000000

idxPtr = 0x0000000000000000

shmTabhSet = 0x0000000000000000

id = 135 (0x87000000)

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 16 (0x10000000)

lineAlloc = 16 (0x10000000)

shmVersId = 0 (0x00000000)

shmRefCount = 1 (0x01000000)

>>>>> 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

%_ARFC_TRIES

0030

3333

0030

0000

0000

PROG

SAPLERFC

5454454422222222222222222222222222222222

310C526300000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

%_DUMMY$$

2222

0000

0000

0000

NUMBER_OF_FUNCTION_MODULES

0

0000

0000

QTRACE

X

5

8

0

0

SY-UZEIT

150331

333333

150331

000000

000000

-

-

-

-

-

-

-


No. 2 Ty. FUNCTION

Name TRFC_QOUT_GET_AND_PROCESS

-

-

-

-

-

-

-


DEST

NONE

44442222222222222222222222222222

EFE50000000000000000000000000000

00000000000000000000000000000000

00000000000000000000000000000000

MAXCALL

100

6000

4000

MAXLUW

100

6000

4000

QNAME

MCEX03

444533222222222222222222

D35803000000000000000000

000000000000000000000000

000000000000000000000000

QOUT_SYSTEM

22222222222222222222222222222222

00000000000000000000000000000000

00000000000000000000000000000000

00000000000000000000000000000000

SINGLE_PROCESSING

2

0

0

0

ERRCODE

0

0000

0000

ERRMESS

222222222222222222222222222222222222222222222222222222222222222222222222

000000000000000000000000000000000000000000000000000000000000000000000000

000000000000000000000000000000000000000000000000000000000000000000000000

000000000000000000000000000000000000000000000000000000000000000000000000

NCALL

218

D000

A000

NLUW

100

6000

4000

QREST

590

4000

E200

QSTATE

RUNNING

55444442

25EE9E70

00000000

00000000

WQNAME

222222222222222222222222

000000000000000000000000

000000000000000000000000

000000000000000000000000

SY-DBCNT

0

0000

0000

S_ID

erpdevmil_RD1_01

67766766655435332222222222222222

520456D9CF241F010000000000000000

00000000000000000000000000000000

00000000000000000000000000000000

%_SYS000

00000000000000

2333333333333332222222222222222222222222

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

ARFCRSTATE

0A64641611A046DF840B0DEBNONE 00000002EXECUTEDMCEX_UPDATE_03_QRFC

3433333333433344333434444444222222222222222222222222222233333333454455444445555445453355544222

016464161110464684020452EFE500000000000000000000000000000000000258535454D358F504145F03F1263000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

ISTATE

0A64641611A046DF840B0DEBNONE 00000002READ MCEX_UPDATE_03_QRFC

3433333333433344333434444444222222222222222222222222222233333333544422224445555445453355544222

016464161110464684020452EFE500000000000000000000000000000000000225140000D358F504145F03F1263000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

SY

##############################################################################T###ÿ##### X####

00000070000000000000001000000000000000C0000000003000000000000000000000000000105000F00050250000

000030C000000000000000E01000100000000020000000200000000000000000000000000000604000F00080080500

0000000000000000000000000000000000000000000000007000000000000000000000000000000000000040000000

00000010000000000000000000000000000000100000000050000000000000000000000000000000000000D000000C

SY-UZEIT

150331

333333

150331

000000

000000

QF_QOUT

O

4

F

0

0

<%_TABLE_ARFCRSTATE>

???

??????

??????

%_ARFC_RETRY_LATER

15

0000

F000

SY-SUBRC

2

0000

2000

%_ARCHIVE

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

SY-XPROG

SAPMSSY1

5454555322222222222222222222222222222222

310D339100000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

IDATA[]

Table IT_134[2x1918]

SY-XFORM

XAB_READ

544554442222222222222222222222

812F25140000000000000000000000

000000000000000000000000000000

000000000000000000000000000000

ISTATE[]

Table IT_133[1x972]

SY-MSGV2

22222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

-

-

-

-

-

-

-


No. 1 Ty. EVENT

Name START-OF-SELECTION

-

-

-

-

-

-

-


SY-LDBPG

SAPDB__S

5454455522222222222222222222222222222222

31042FF300000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

P_DEST

NONE

44442222222222222222222222222222

EFE50000000000000000000000000000

00000000000000000000000000000000

00000000000000000000000000000000

COUNT

100

6000

4000

P_QNAME

MCEX03

444533222222222222222222

D35803000000000000000000

000000000000000000000000

000000000000000000000000

SY-ONCOM

S

5

3

0

0

-

-

-

-

-

-

-


-

-

-

-

-

-

-


Internal notes

The termination was triggered in function "ab_jmess"

of the SAP kernel, in line 1263 of the module

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

The internal operation just processed is "MESS".

Internal mode was started at 20071005150330.

-

-

-

-

-

-

-


-

-

-

-

-

-

-


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=5592)

When : 10/5/2007 15:3:31.623

Threads : 2

Computer Name : ERPDEVMIL

User Name : SAPServiceRD1

Number of Processors: 4

Processor Type: AMD64 Family 15 Model 33 Stepping 2

Windows Version : 5.2 Current Build: 3790

State Dump for Thread Id 15dc

FramePtr ReturnAd Param#1 Function Name

0000000007abbb00 0000000078d7041f 00000000498ea4e0 ntdll!NtWaitForSingleObject

0000000007abbba0 000000000167fb51 000000000000054c kernel32!WaitForSingleObjectEx

0000000007abbdf0 00000000005f69f5 0000000000000001 disp+work!NTDebugProcess (ntstcdbg.c (501))

0000000007abbe20 0000000000a7a82c 0000000000000001 disp+work!CTrcStack (dptstack.c (182))

0000000007abbe70 0000000000a7f9b0 0000000000000001 disp+work!rabax_CStackSave (abrabax.c (7021))

0000000007abc850 0000000000a4f0c4 0000000001bf8b98 disp+work!ab_rabax (abrabax.c (1243))

0000000007abc890 00000000007bb545 0000000000000000 disp+work!ab_jmess (abdynpro.c (1270))

0000000007abca10 000000000099428f 0000000000000000 disp+work!ab_extri (abextri.c (554))

0000000007abca60 0000000000994a97 0000000000000000 disp+work!ab_xevent (abrunt1.c (339))

0000000007abcb00 0000000000afaf6c 0000000000000000 disp+work!ab_trigg (abrunt1.c (61))

0000000007abcba0 000000000065214d 0000000000000016 disp+work!ab_run (absubmit.c (403))

0000000007abcd20 00000000006569f7 000007fe6d2ae32c disp+work!dynpmcal (dymainstp.c (2278))

0000000007abcdc0 0000000000655caa 0000000000000000 disp+work!dynppai0 (dymainstp.c (1108))

0000000007abce70 0000000000615fb9 0000000000000004 disp+work!dynprctl (dymainstp.c (359))

0000000007abfc30 00000000004d4538 0000000000000013 disp+work!dynpen00 (dymain.c (1470))

0000000007abfeb0 000000000042cf36 000000000812de10 disp+work!TskhLoop (thxxhead.c (4429))

0000000007abfee0 0000000000401087 ffffffff00000003 disp+work!DpMain (dpxxdisp.c (1121))

0000000007abff10 0000000001909031 0000000000000000 disp+work!nlsui_main (thxxanf.c (82))

0000000007abff70 0000000078d5965c 0000000000000000 disp+work!wmainCRTStartup (crtexe.c (498))

0000000007abffa0 0000000000000000 0000000001908ec0 kernel32!BaseProcessStart

State Dump for Thread Id 17c0

FramePtr ReturnAd Param#1 Function Name

000000000d5ffe40 0000000078d5f611 0000000000000000 ntdll!NtFsControlFile

000000000d5ffeb0 00000000017fd0bf 0000000000000000 kernel32!ConnectNamedPipe

000000000d5fff40 000007ff7fc411c4 0000000000000000 disp+work!SigIMsgFunc (signt.c (611))

000000000d5fff70 0000000078d6b66a 0000000078d6b630 msvcrt!endthreadex

000000000d5fffa0 0000000000000000 0000000000000000 kernel32!BaseThreadStart

-

-

-

-

-

-

-


-

-

-

-

-

-

-


List of ABAP programs affected

-

-

-

-

-

-

-


Index

Typ

Program

Group

Date

Time

Size

Lang.

-

-

-

-

-

-

-


0

Prg

RMCEXUP1

0

25.03.2003

17:11:14

24576

E

1

Prg

SAPMSSY0

1

27.09.2006

21:43:55

90112

E

2

Prg

SAPMSSYD

1

27.09.2006

21:43:49

21504

E

3

Prg

SAPFSYSCALLS

1

09.09.2004

14:18:32

8192

E

4

Prg

RSDBRUNT

0

27.09.2006

21:43:40

254976

E

5

Typ

RSSCR

0

30.03.2005

10:21:45

5120

6

Prg

RSDBSPBL

0

30.03.2005

10:21:58

72704

E

7

Prg

SAPDB__S

0

30.03.2005

10:22:01

19456

E

8

Typ

VARID

0

12.05.1997

16:51:30

5120

9

Typ

SSCRFIELDS

0

13.05.1997

12:54:26

7168

10

Prg

%_CSYDB0

0

30.03.2005

10:21:45

36864

E

11

Prg

RSDBSPVA

0

05.07.2006

17:19:32

133120

E

12

Typ

RSVAMEMKEY

0

07.05.1997

13:07:49

2048

13

Prg

RSDBSPMC

0

27.09.2006

21:32:28

79872

E

14

Typ

DDSHDESCR

0

03.09.1997

03:05:16

4096

15

Typ

SPPARAMS

0

07.05.1997

13:10:38

2048

16

Prg

SAPLICON

16

27.09.2006

21:32:32

27648

E

17

Prg

%_CICON

16

07.02.2006

10:40:00

104448

E

18

Typ

ICONT

0

27.09.2006

21:32:16

4096

19

Prg

SAPLSABE

19

09.09.2004

14:18:36

13312

E

20

Prg

SAPLSECU

20

08.03.2005

19:06:22

87040

E

21

Typ

RSSUBINFO

0

14.10.1999

22:01:03

3072

22

Typ

RSEXFCODE

0

13.08.1997

12:52:57

2048

23

Prg

SAPLDSYA

23

18.02.2005

14:15:28

45056

E

24

Prg

SAPFSDS1

23

30.03.2005

10:22:01

53248

E

25

Typ

TDCLD

0

02.11.1998

09:51:35

7168

26

Prg

SAPLSDOD

26

15.06.2005

11:39:01

46080

E

27

Typ

DOKIL

0

12.05.1997

16:46:17

3072

28

Prg

SAPCNVE

28

09.09.2004

14:36:10

8192

E

29

Prg

SAPLLANG

29

09.09.2004

14:18:35

10240

E

30

Typ

T002

0

14.02.1998

10:24:58

2048

31

Prg

SAPFSPOR

0

09.09.2004

14:18:32

15360

E

32

Typ

RSPARINT

0

10.04.1995

09:58:38

2048

33

Prg

SAPLSTUP

33

08.03.2005

19:04:31

74752

E

34

Prg

SAPLCNDP

34

05.07.2006

17:10:45

193536

E

35

Prg

SAPLSCNT

35

18.02.2005

14:16:06

30720

E

36

Prg

SAPSHDTV

35

05.01.2005

16:26:16

33792

E

37

Prg

SAPFGUICNTL

1

18.02.2005

14:15:08

24576

E

38

Prg

SAPLOLEA

38

05.07.2005

13:10:18

96256

E

39

Prg

SAPLSGUI

39

27.09.2006

21:43:55

82944

E

40

Prg

SAPLSTTM

40

05.07.2005

13:10:18

69632

E

41

Prg

SAPLSBDC

41

05.07.2005

13:10:18

44032

E

42

Prg

SAPLSFES

42

27.09.2006

21:43:55

257024

E

43

Prg

SAPLTHFB

43

27.09.2006

21:43:55

392192

E

44

Typ

WPINFO

0

26.02.1999

14:49:01

6144

45

Prg

SAPLURFC

45

15.06.2005

11:39:01

22528

E

46

Prg

SAPLSPLUGIN

46

09.09.2004

14:18:36

8192

E

47

Typ

SWCBCONT

0

15.11.2000

17:55:11

3072

48

Typ

OLE_VERBS

0

04.04.1995

16:02:20

2048

49

Typ

OLE_PA

0

04.04.1995

16:02:19

2048

50

Typ

SSCRTEXTS

0

03.09.1997

03:12:33

3072

51

Prg

SAPLERFC

51

05.07.2006

17:18:39

115712

E

52

Prg

SAPLORFC

52

27.09.2006

21:40:54

273408

E

53

Typ

ARFCTID

0

04.04.1995

15:40:33

2048

54

Typ

TRFCQOUT

0

09.09.2004

14:18:50

5120

55

Typ

ARFCSSTATE

0

13.02.2005

18:20:25

6144

56

Prg

SAPLSYDB

56

05.07.2005

13:10:18

62464

E

57

Typ

ARFCSDATA

0

13.02.2005

18:20:25

8192

58

Prg

SAPLQEVT

58

05.07.2005

13:20:22

74752

E

59

Typ

QRFCEVENT

0

09.09.2004

14:17:10

3072

60

Typ

QRFCTRACE

0

09.09.2004

14:17:11

5120

61

Prg

SAPLARFC

61

27.09.2006

21:43:54

279552

E

62

Prg

SAPLSRFC

62

07.02.2006

10:16:57

37888

E

63

Typ

ARFCRSTATE

0

13.02.2005

18:20:25

6144

64

Typ

BGRFC_SUPPORTABILITY_INFO

0

07.02.2006

10:07:13

2048

65

Prg

CL_BGRFC_SCHEDULER============CP

65

05.07.2006

17:17:04

38912

E

66

Prg

CL_BGRFC_CUSTOMIZE_OUTBOUND===CP

66

05.07.2006

17:11:13

44032

E

67

Typ

BGRFC_CUST_O_SYS

0

15.06.2005

11:40:24

3072

68

Prg

CL_ABAP_TYPEDESCR=============CP

68

05.07.2005

13:10:15

30720

E

69

Prg

CL_ABAP_ELEMDESCR=============CP

69

05.07.2006

17:18:45

36864

E

70

Prg

CL_ABAP_DATADESCR=============CP

70

05.07.2005

13:10:15

19456

E

71

Prg

CL_ABAP_REFDESCR==============CP

71

05.07.2005

13:10:15

24576

E

72

Prg

CL_ABAP_STRUCTDESCR===========CP

72

05.07.2005

13:10:15

40960

E

73

Prg

CL_ABAP_COMPLEXDESCR==========CP

73

05.07.2005

13:10:15

19456

E

74

Prg

CL_ABAP_TABLEDESCR============CP

74

05.07.2005

13:10:15

25600

E

75

Prg

CL_ABAP_CLASSDESCR============CP

75

05.07.2005

13:10:15

30720

E

76

Prg

CL_ABAP_OBJECTDESCR===========CP

76

05.07.2005

13:10:15

34816

E

77

Prg

CL_ABAP_INTFDESCR=============CP

77

05.07.2005

13:10:15

25600

E

78

Typ

ARFCDATA

0

04.04.1995

15:40:32

5120

79

Prg

CL_ABAP_SOFT_REFERENCE========CP

79

05.07.2005

13:10:15

10240

E

80

Prg

CL_ABAP_REFERENCE=============CP

80

09.09.2004

14:18:16

8192

E

81

Prg

CL_BGRFC_SERVER===============CP

81

05.07.2006

17:14:58

14336

E

82

Prg

SAPLSXAB

82

05.07.2005

13:20:35

8192

E

83

Prg

SAPMSSY1

82

11.04.2005

09:27:15

23552

E

84

Prg

SAPLMCEX

84

02.10.2007

15:31:11

1183744

E

85

Typ

MCCONTROL

0

07.06.2001

17:42:46

4096

86

Typ

MCBESTB

0

08.02.2006

14:58:04

26624

87

Typ

MCMSEGB

0

02.10.2007

15:31:11

66560

88

Prg

SAPLSANA

88

05.07.2005

13:10:18

202752

E

89

Prg

%_CSANA

84

18.02.2005

14:16:02

16384

E

90

Prg

SAPLSUNI

90

27.09.2006

21:49:26

153600

E

91

Typ

RSCHA

0

04.06.1997

19:21:50

4096

92

Typ

RSFDO

0

13.08.1997

12:52:58

2048

93

Typ

RSEXP

0

04.06.1997

19:22:00

3072

94

Typ

RSIMP

0

04.06.1997

19:22:00

4096

95

Typ

RSTBL

0

04.06.1997

19:22:08

3072

96

Typ

TFDIR

0

13.02.2005

17:31:57

3072

97

Typ

ENLFDIR

0

09.11.2000

14:07:35

4096

98

Typ

RS38L

0

09.09.2004

14:17:28

32768

99

Prg

SAPMS38L

90

27.09.2006

21:53:10

629760

E

100

Prg

SAPLSEWORKINGAREA

100

27.09.2006

21:53:17

314368

E

101

Typ

FUPARAREF

0

13.08.1997

13:26:52

5120

102

Typ

RSEXC

0

08.03.1992

00:00:13

2048

103

Typ

HEADER_FB

0

05.07.2006

17:08:44

36864

104

Prg

CL_FB_PARAMETER_DB============CP

104

27.09.2006

21:49:26

130048

E

105

Typ

ENHFUGRFUNCDATA

0

30.09.2004

13:14:49

12288

106

Prg

CL_R3STANDARD_PERSISTENCE=====CP

106

27.09.2006

21:53:17

224256

E

107

Typ

ENHOBJ

0

19.07.2004

10:44:29

4096

108

Typ

ENHNAME_STRUC

0

30.09.2004

13:14:49

5120

109

Prg

CL_FB_PARAMETER_CONVERSION====CP

109

05.07.2006

17:08:44

33792

E

110

Prg

SAPLSDIFRUNTIME

110

05.07.2005

13:11:53

96256

E

111

Typ

DFIES

0

28.12.2004

17:06:45

10240

112

Typ

X031L

0

05.07.2005

13:10:15

6144

113

Prg

SAPLSDNT

113

05.07.2005

13:10:18

219136

E

114

Prg

SAPLSUGS

114

31.03.2006

11:23:11

47104

E

115

Prg

SAPLSECH

115

05.07.2005

13:10:18

26624

E

116

Prg

%_CRSDS

0

18.02.2005

14:15:39

10240

E

117

Prg

%_CSYLDB

0

18.02.2005

14:15:48

8192

E

118

Prg

%_CSLIS

20

07.02.2006

10:40:01

89088

E

119

Typ

DTC_S_LAYO

0

04.12.2000

12:46:23

6144

120

Typ

CAT_SVARS

0

18.05.2004

10:32:36

5120

121

Typ

MC40RP0REVSETUP

0

08.01.2002

14:42:23

6144

122

Typ

SYST

0

09.09.2004

14:18:12

31744

123

Typ

T001

0

25.08.2005

22:03:13

14336

124

Typ

QRETDATA

0

15.11.2000

17:49:19

6144

125

Prg

IF_BGRFC_SERVER===============IP

81

05.07.2006

17:14:58

6144

E

126

Typ

QRETSTATE

0

09.09.2004

14:17:10

9216

-

-

-

-

-

-

-


-

-

-

-

-

-

-


Directory of Application Tables

-

-

-

-

-

-

-


Name Date Time Lngth

Val.

-

-

-

-

-

-

-


Program RMCEXUP1

-

-

-

-

-

-

-


SYST 09.09.2004 14:18:12 00004612

0000x00010#000000000000000x001E0

SSCRFIELDS 09.09.2004 14:18:02 00001708

SSCRTEXTS . . : : 00000742

-

-

-

-

-

-

-


Program RSDBRUNT

-

-

-

-

-

-

-


VARID . . : : 00000252

-

-

-

-

-

-

-


Program SAPLICON

-

-

-

-

-

-

-


ICONT . . : : 00000130

-

-

-

-

-

-

-


Program SAPFSDS1

-

-

-

-

-

-

-


TDCLD . . : : 00000098

RE DOKU 8R XX XXLIMUDOKUX x001EXR3TRPROGX

-

-

-

-

-

-

-


Program SAPLSDOD

-

-

-

-

-

-

-


DOKIL . . : : 00000152

-

-

-

-

-

-

-


Program SAPLLANG

-

-

-

-

-

-

-


T002 . . : : 00000010

ES1EN

-

-

-

-

-

-

-


Program SAPLERFC

-

-

-

-

-

-

-


ARFCRSTATE . . : : 00000972

0A64641611A046DF840B0DEBNONE 00

QRETDATA . . : : 00001336

-

-

-

-

-

-

-


Program SAPLORFC

-

-

-

-

-

-

-


TRFCQOUT . . : : 00000604

-

-

-

-

-

-

-


Program SAPLMCEX

-

-

-

-

-

-

-


T001 . . : : 00000490

MC40RP0REVSETUP . . : : 00003540

0000000000000000000000000000000

-

-

-

-

-

-

-


Program SAPLSUNI

-

-

-

-

-

-

-


RS38L . . : : 00004966

TFDIR . . : : 00000268

MCEX_UPDATE_03 SAPLMCEX

ENLFDIR . . : : 00000146

MCEX_UPDATE_03 MCEX X

-

-

-

-

-

-

-


-

-

-

-

-

-

-


ABAP Control Blocks (CONT)

-

-

-

-

-

-

-


Index

Name

Fl

PAR0

PAR1

PAR2

PAR3

PAR4

PAR5

PAR6

Source Code

Line

-

-

-

-

-

-

-


2795

BRAN

02

0002

LMCEXU02

58

2796

BRAX

00

0010

LMCEXU02

58

2797

MOVL

00

0002

0400

002E

LMCEXU02

59

2799

mlq1

02

0005

0F50

0058

LMCEXU02

59

2801

MOVL

00

0008

0401

002D

LMCEXU02

59

2803

DWRI

01

0402

LMCEXU02

59

2804

WRIT

00

03FE

LMCEXU02

59

2805

PAR1

C0

0000

LMCEXU02

59

2806

JEND

A6

0000

LMCEXU02

59

2807

CLEA

00

0403

LMCEXU02

59

2808

CLEA

00

0404

LMCEXU02

59

2809

CLEA

00

0405

LMCEXU02

59

>>>>>

MESS

00

002D

LMCEXU02

59

2811

BRAX

00

000F

LMCEXU02

60

2812

MOVL

00

0002

0400

002E

LMCEXU02

61

2814

mlq1

02

0005

0F50

0058

LMCEXU02

61

2816

MOVL

00

0008

0401

002F

LMCEXU02

61

2818

DWRI

01

0402

LMCEXU02

61

2819

WRIT

00

03FE

LMCEXU02

61

2820

PAR1

C0

0000

LMCEXU02

61

-

-

-

-

-

-

-


-

-

-

-

-

-

-


END OF DUMP----

-

-

-

-

-

-


I will be very grateful if somebody can guide us to identify the structure which has a problem so we can roll it back and solve this issue. Thanks in advance.

Regards,

Sumit

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sumit,

Did you checked SAP Note 328181 - Changes to extract structures in Customizing Cockpit

PLease see whther it is applicable and adds to your information.

Thanks

CK

Answers (3)

Answers (3)

Former Member
0 Kudos

Dear all,

This problem was happening due to some custom fields added to structure MCMSEGB which is used in fuction module MCEX_UPDATE_03. Got to know this by checking the transport logs in PRD for the day before the V3 update failed for the first time. Thanks for your responses.

Regards,

Sumit

Former Member
0 Kudos

Hi,

they're only two extract structures: MC03BF0 and MC03UM0.

Open SE11 with the structures and from the menu utilities -> Versions -> Version Management you should see the changes and the corresponding tp requests...

hope this helps...

Olivier.

former_member228339
Contributor
0 Kudos

Hi .. try this note

Note 766603

328181

602260

Message was edited by:

hari kv