cancel
Showing results for 
Search instead for 
Did you mean: 

ITS_IMPORT_CONTEXT ( sy-subrc = 1 ) version ECC 6.0

Former Member
0 Kudos

Hi all!!

We have done a version upgrade to SAP ECC 6.0 in R/3, and now the calls from SAP Portal (no migrated) via ITS does not work correctly. I think the problem is only when calling to Z transactions because the ITS_IMPORT_CONTEXT function returns sy-subrc eq 1.

Does someone know what could be happening??

Thanks a lot!!

Araitz.-

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Araitz,

We are facing the same problemyou described in the thread. Did you find any solution this issue?

Thanks in advance.

Yogesh

Former Member
0 Kudos

Here is the short dump from ST22

Runtime Errors SYSTEM_CORE_DUMPED

Date and Time 05/15/2008 23:23:52

-

-


-

-


Short text

Process terminated by signal 11.

-

-


-

-


What happened?

Error in the SAP kernel.

The current ABAP "SAPLAWRT" program had to be terminated because the

ABAP processor detected an internal system error.

-

-


-

-


What can you do?

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 R/3 System process was terminated by an operating system signal.

-

Possible reasons for this are:

1. Internal system error.

2. Process was terminated externally (by the system administrator).

-

Last error logged in SAP kernel

Component............ "Taskhandler"

Place................ "SAP-Server tlsrv213_RPR_00 on host tlsrv213 (wp 0)"

Version.............. 1

Error code........... 11

Error text........... "ThSigHandler: signal"

Description.......... " "

System call.......... " "

Module............... "thxxhead.c"

Line................. 10688

The error reported by the operating system is:

Error number..... " "

Error text....... " "

-

-


-

-


How to correct the error

The R/3 System work directory (e.g. /usr/sap/c11/D00/work ) often

contains a file called 'core'.

Save this file under another name.

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... "tlsrv213"

Network address...... "139.104.226.49"

Operating system..... "AIX"

Release.............. "5.3"

Hardware type........ "0001427FD600"

Character length.... 16 Bits

Pointer length....... 64 Bits

Work process number.. 0

Shortdump setting.... "full"

Database server... "tlsrvrpr"

Database type..... "DB6"

Database name..... "RPR"

Database user ID.. "SAPR3"

Char.set.... "C"

SAP kernel....... 700

created (date)... "Jan 30 2008 09:05:35"

create on........ "AIX 2 5 005DD9CD4C00"

Database version. "DB6_81 "

Patch level. 146

Patch text.. " "

Database............. "DB6 08.02., DB6 09."

SAP database version. 700

Operating system..... "AIX 1 5, AIX 2 5, AIX 3 5, AIX 1 6"

Memory consumption

Roll.... 16192

EM...... 4189848

Heap.... 0

Page.... 32768

MM Used. 18446744073709551615

MM Free. 18446744073709551615

-

-


-

-


User and Transaction

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

User................ "SANEY001"

Language Key........ "E"

Transaction......... "PZ02 "

Transactions ID..... "482D2C1426C80044E10080008B68E231"

Program............. "SAPLAWRT"

Screen.............. "SAPLEHU1 0100"

Screen Line......... 17

Information on Caller ofr "HTTP" Connection:

Plug-in Type.......... "HTTP"

Caller IP............. "139.104.216.55"

Caller Port........... 1080

Universal Resource Id. "/sap/bc/gui/sap/its/ZPZ02/~flNUQVRFPTExNTEyLjAwMi4wMS4w

MQ=="

-

-


-

-


Information on where terminated

Termination occurred in the ABAP program "SAPLAWRT" - in "ITS_IMPORT_CONTEXT".

The main program was "SAPMPZ02 ".

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

of the (Include) program "LAWRTU12".


Main memory destroyed



The error occurred because of a main memory overwrite. There may

be an internal error in the R/3 System.

The amount of memory occupied at the time of the termination was:


> Roll area......................... 16192 bytes

> Extended memory area (EM)......... 4189848 bytes

> Fixed area........................ 0 bytes

> Short area........................ " " bytes

In the work directory of the SAP system (e.g. /usr/sap/C11/D00/work ),

there may be files called 'mm.dump' and 'mm.info'.

Save these files under other names.

-

-


-

-


Source Code Extract

-

-


Line

SourceCde

-

-


1

FUNCTION its_import_context.

2

*"----

-


3

""Lokale Schnittstelle:

4

*" TABLES

5

*" CONTEXT STRUCTURE SAVWCTXT

6

*" EXCEPTIONS

7

*" ITS_NOT_AVAILABLE

8

*"----

-


9

10

DATA:

11

  • for debugging

12

msg_text(200) TYPE c. "#EC NEEDED

13

14

REFRESH: context.

15

16

CALL FUNCTION 'ITS_PING'

17

EXCEPTIONS

18

its_not_available = 1

19

OTHERS = 2.

20

21

IF sy-subrc <> 0.

22

RAISE its_not_available.

23

ENDIF.

24

25

  • call to new extended version that handles 1024 chars long fields

26

  • CALL FUNCTION 'ITS_UPLOAD_CONTEXT'

>>>>>

CALL FUNCTION 'ITS_UPLOAD_CONTEXT_EXT'

28

DESTINATION 'SAPGUI'

29

TABLES

30

context = context

31

EXCEPTIONS

32

communication_failure = 1 MESSAGE msg_text

33

system_failure = 2 MESSAGE msg_text

34

OTHERS = 3.

35

36

IF sy-subrc <> 0.

37

RAISE its_not_available.

38

ENDIF.

39

40

ENDFUNCTION.

-

-


-

-


Contents of system fields

-

-


Name

Val.

-

-


SY-SUBRC

0

SY-INDEX

1

SY-TABIX

3

SY-DBCNT

0

SY-FDPOS

0

SY-LSIND

0

SY-PAGNO

0

SY-LINNO

1

SY-COLNO

1

SY-PFKEY

0100

SY-UCOMM

DISP

SY-TITLE

Address: Overview

SY-MSGTY

SY-MSGID

SY-MSGNO

SY-MSGV1

SY-MSGV2

SY-MSGV3

SY-MSGV4

SY-MODNO

0

SY-DATUM

20080515

SY-UZEIT

232346

SY-XPROG

SAPMSSY1

SY-XFORM

XAB_READ

-

-


-

-


Active Calls/Events

-

-


No. Ty. Program Include Line

Name

-

-


6 RFC SAPLAWRT LAWRTU12 27

ITS_IMPORT_CONTEXT

5 FUNCTION SAPLAWRT LAWRTU12 27

ITS_IMPORT_CONTEXT

4 FORM SAPMEH00 RHEH00F1 614

GET_ITS_CONTEXT_0100

3 MODULE (PAI) SAPLEHU1 LEHU1I01 244

GET_ITS_CONTEXT_0100

2 FUNCTION SAPLEHU1 LEHU1U02 76

HR_ESS_ADDRESSLIST_10

1 EVENT SAPMPZ02 SAPMPZ02 69

START-OF-SELECTION

-

-


-

-


Chosen variables

-

-


Name

Val.

-

-


No. 6 Ty. RFC

Name ITS_IMPORT_CONTEXT

-

-


CONTEXT[]

Table IT_154[0x2124]

-

-


No. 5 Ty. FUNCTION

Name ITS_IMPORT_CONTEXT

-

-


CONTEXT[]

Table IT_154[0x2124]

-

-


No. 4 Ty. FORM

Name GET_ITS_CONTEXT_0100

-

-


%_DUMMY$$

0000

0000

2222

0000

CONTEXTTAB

00000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2222222222222222222222222222223333333322222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

CONTEXTTAB[]

Table IT_154[0x2124]

PROGRAM=SAPMEH00DATA=CONTEXTTAB[]

Table reference: 33

TABH+ 0(20) = 0000000000000000070000006047F65800000000

TABH+ 20(20) = 000000210000009A000000000000084CFFFFFFFF

TABH+ 40(16) = 040000AF00000A100004249001800000

store = 0x0000000000000000

ext1 = 0x070000006047F658

shmId = 0 (0x00000000)

id = 33 (0x00000021)

label = 154 (0x0000009A)

fill = 0 (0x00000000)

leng = 2124 (0x0000084C)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000039

occu = 4 (0x00000004)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 2 (cmpSingleMcmpR)

occu0 = 0

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

collHook = 0x0000000000000000

ext2 = 0x07000000603EE410

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

tabhBack = 0x07000000602D7CB8

delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000110000000

pb_func = 0x0000000000000000

pb_handle = 0x0000000000000000

MAX_INDEX2

0

0000

0000

SY-REPID

SAPMEH00

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

5454443322222222222222222222222222222222

310D580000000000000000000000000000000000

-

-


No. 3 Ty. MODULE (PAI)

Name GET_ITS_CONTEXT_0100

-

-


%_DUMMY$$

0000

0000

2222

0000

HTML_INDEX

1

0000

0000

2232

0010

-

-


No. 2 Ty. FUNCTION

Name HR_ESS_ADDRESSLIST_10

-

-


ACCOUNTEDTO

00000000

00000000

00000000

33333333

00000000

NAME

Yogesh Sane

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

5666762566622222222222222222222222222222

9F7538031E500000000000000000000000000000

PAYROLLAREA

99

00

00

33

99

PERNR

00285222

00000000

00000000

33333333

00285222

ADDRESSKEY

00000000 0000000000000000000

0000000000000000000000000000000000

0000000000000000000000000000000000

3333333322222223333333333333333333

0000000000000000000000000000000000

RETURNCODE

0000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000

2222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000

ANSSA

1

0000

0000

3222

1000

MOLGA

10

00

00

33

10

SY

#################################################ÿ#################################ÿ####XC####

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000F8000000

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FF000400

0000000000000000000000000000000000000001000000000F010000000000000000000000000109000F00F8540000

0100030000000000000000000100010000000000000000000F080400000000000000000000000E03000F00F083000C

RETURN-TYPE

0

0

2

0

INFOTYPE

0210

0000

0000

3333

0210

ABRDT

00000000

00000000

00000000

33333333

00000000

INFO_LINE

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

RETURN-MESSAGE

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

ITAB[]

Table IT_135[1x1588]

FUNCTION-POOL=EHU1DATA=ITAB[]

Table reference: 37

TABH+ 0(20) = 07000000602D7D08000000000000000000000000

TABH+ 20(20) = 00000025000000870000000100000634FFFFFFFF

TABH+ 40(16) = 040000A500001C40000224C001800000

store = 0x07000000602D7D08

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 37 (0x00000025)

label = 135 (0x00000087)

fill = 1 (0x00000001)

leng = 1588 (0x00000634)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000136

occu = 2 (0x00000002)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 8 (cmpManyEq)

occu0 = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

isCtfyAble = 1

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

tabi = 0x070000006042B650

pgHook = 0x0000000000000000

idxPtr = 0x0000000000000000

shmTabhSet = 0x0000000000000000

id = 134 (0x00000086)

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 2 (0x00000002)

lineAlloc = 2 (0x00000002)

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

FOUND

0

0

2

0

SCREEN

ITAB-SPRTX

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

4544255555222222222222222222222222222222222222222222222222222222222222222222222222222222222222

9412D30248000000000000000000000000000000000000000000000000000000000000000000000000000000000000

FIRST

0

0

0

3

0

$TRUE

1

0

0

3

1

SYST

#################################################ÿ#################################ÿ####XC####

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000F8000000

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FF000400

0000000000000000000000000000000000000001000000000F010000000000000000000000000109000F00F8540000

0100030000000000000000000100010000000000000000000F080400000000000000000000000E03000F00F083000C

SYST-REPID

SAPLEHU1

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

5454445322222222222222222222222222222222

310C585100000000000000000000000000000000

ITS_REQUEST

1

0

0

3

1

STATUS

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

STARTMENU

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

TAXLEVELTAB

00000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000

22222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000

MAX_INDEX

1

0000

0001

EXEMPTTEXT9

00000000000000000000000000000000000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000000000000000000000000000000000

22222222222222222222222222222222222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000000000000000000000000000000000

RETURN-MESSAGE_V4

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

22222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000

-

-


No. 1 Ty. EVENT

Name START-OF-SELECTION

-

-


GET_FB

X

0

0

5

8

$CROSS

X

0

0

5

8

%_PRINT

000 0###

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

VARI

-

-


-

-


Internal notes

The termination was triggered in function "ab_CoreInfo"

of the SAP kernel, in line 7205 of the module

"//bas/700_REL/src/krn/runt/abrabax.c#30".

The internal operation just processed is "FUNC".

Internal mode was started at 20080515232249.

Stack trace of 'core'.

-

-


-

-


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

=> Core limit = 51200000

=> File size limit = unlimited

=> Heap address = 0x0x114f905a0

=> Stack address = 0xfffffffffff8360

=> Stack low = 0xfffffffffff2730

=> Stack high = 0xffffffffffff650

=> Stack Trace:

MmxIBlockInsert() at 0x10019d9b4

tsvAllocPages__FP4TABHUiUc() at 0x1002af370

tsvAppendBody__FP4TABHUiPUiUc() at 0x1002a897c

tsvInsert__FP4TABHUiT2P7IT_ITER() at 0x1002a8560

ab_tnew() at 0x1002a8460

ItAppLineU() at 0x1002ad230

IrfcUploadContextInternal__FUii() at 0x90000000423b5ac

ab_RfcDispatchLoc() at 0x1008c46ac

RfcDispatchU() at 0x1008c6384

RfcSapguiRequest2() at 0x900000003fea40c

RfcSapguiRequest4() at 0x900000003fe8eec

AgiRfcSapguiRequest__FPvPUiUiPUcT4iT6() at 0x900000003fe8914

DiagIRFC__16AgiPrimaryWindowFUcPUci() at 0x900000003f76c1c

DiagISys__16AgiPrimaryWindowFPUci() at 0x900000003f74e04

ParseIt__14AgiSessionPoolFPUcPP16AgiPrimaryWindowPi() at 0x900000003f7fea8

Parse__13IoalFrameworkFiPUc() at 0x900000003f5135c

XKRead__13IoalFrameworkFUlPUcT1T2PUl() at 0x900000003f50e58

SemgXKRead() at 0x900000003f454e8

XKrnHandleRequest() at 0x900000004222058

ItspXKrnFromDiagToHtml2__FPvUlPUcT2T3PUlP14IctIHttpMsgAdm() at 0x900000004220ad4

ItspXKrnFromDiagToHtml__FPvUlPUcT2T3PUlP14IctIHttpMsgAdm() at 0x9000000042209c4

itsp_ConvertOut() at 0x90000000420be20

ipl_ConvertOut() at 0x1013682b8

ThrItspConvertOut() at 0x100bc68c8

ThSendToExtRenderer() at 0x1000c98ec

ThSend2() at 0x1000fd9b4

rfctr_wait() at 0x1008d6288

rfcwait() at 0x1008a9e08

ab_rfcreturn() at 0x1008e868c

ab_retdynp__Fi() at 0x100698200

ab_dstep() at 0x100697848

dynpmcal() at 0x100d5b4d4

dynppai0() at 0x100d58dd0

dynprctl() at 0x100d60844

dynpen00() at 0x100d5272c

Thdynpen00() at 0x1000e2410

TskhLoop() at 0x1000e7318

ThStart() at 0x1000fe324

DpMain() at 0x10156cbb0

nlsui_main() at 0x101a99dd8

=> CPU Registers:

msr = 0xa00000000000d0b2 iar = 0x000000010019d9b4

ctr = 0x00000001002ad210 lr = 0x00000001001a27d0

xer = 0x0000000000000000 cr = 0x0000000028444824

r00 = 0x0000000000000000 r01 = 0x0fffffffffff8360

r02 = 0x0000000110583b70 r03 = 0x0000000000000000

r04 = 0x07000000604c2310 r05 = 0x0000000000000000

r06 = 0x0700000000c432c0 r07 = 0x0fffffffffff9238

r08 = 0x0000000000002148 r09 = 0x0000000000000000

r10 = 0x0000000000000098 r11 = 0x0000000000000000

r12 = 0x0000000088442824 r13 = 0x0000000112d7be60

r14 = 0x00000001108f4620 r15 = 0x0000000000000000

r16 = 0x08001000a003ddf8 r17 = 0x070000005000049d

r18 = 0x000000010259a968 r19 = 0x0700000060484368

r20 = 0x00000001107f30c8 r21 = 0x0000000000000000

r22 = 0x00000001100425f0 r23 = 0x00000001100425ec

r24 = 0x0000000000000001 r25 = 0x0700000060484378

r26 = 0x07000000604c2310 r27 = 0x000000011002d0b0

r28 = 0x0700000000c432c0 r29 = 0x000000010259aab4

r30 = 0x0000000000002130 r31 = 0x0700000060221a38

-

-


-

-


List of ABAP programs affected

-

-


Index

Typ

Program

Group

Date

Time

Size

Lang.

-

-


0

Prg

SAPMPZ02

0

03/30/2005

10:22:02

28672

E

1

Prg

SAPMSSY0

1

05/07/2008

15:33:13

92160

E

2

Prg

SAPMSSYD

1

08/16/2006

12:06:37

21504

E

3

Prg

SAPFSYSCALLS

1

09/09/2004

14:18:32

8192

E

4

Prg

SAPFSYSCALLSFF

1

02/18/2005

14:13:43

9216

E

5

Prg

SAPLSETRAN

5

09/09/2004

14:18:36

22528

E

6

Typ

TSTCC

0

12/18/2001

16:57:59

3072

7

Prg

CL_DYNAMIC_GUI_EXTENSIONS=====CP

7

02/18/2005

14:15:28

37888

E

8

Prg

SAPLSGUI

8

05/07/2008

15:33:13

84992

E

9

Prg

SAPLSTTM

9

07/05/2005

13:10:18

69632

E

10

Prg

SAPLSBDC

10

05/12/2008

01:41:15

44032

E

11

Prg

IF_SIMPLEPROPTREE=============IP

7

11/13/2000

16:49:03

6144

E

12

Prg

RSDBRUNT

0

05/07/2008

16:00:56

254976

E

13

Typ

RSSCR

0

03/30/2005

10:21:45

5120

14

Prg

RSDBSPBL

0

03/30/2005

10:21:58

72704

E

15

Prg

SAPDB__S

0

03/30/2005

10:22:01

19456

E

16

Prg

RSDBSPMC

0

08/16/2006

11:55:58

79872

E

17

Typ

DDSHDESCR

0

09/03/1997

03:05:16

4096

18

Typ

SPPARAMS

0

05/07/1997

13:10:38

2048

19

Prg

SAPLSABE

19

09/09/2004

14:18:36

13312

E

20

Prg

SAPLSECU

20

05/07/2008

14:16:04

87040

E

21

Typ

RSSUBINFO

0

10/14/1999

22:01:03

3072

22

Prg

SAPFSPOR

1

09/09/2004

14:18:32

15360

E

23

Prg

SAPLSCNT

23

02/18/2005

14:16:06

30720

E

24

Typ

DYCBOX

0

08/20/1998

11:16:53

3072

25

Prg

SAPLSVSM

25

01/05/2006

12:25:28

28672

E

26

Prg

SAPLSTUP

26

01/05/2006

12:20:05

74752

E

27

Prg

SAPLCNDP

27

05/07/2008

14:15:02

195584

E

28

Prg

SAPSHDTV

23

01/05/2005

16:26:16

33792

E

29

Prg

SAPFGUICNTL

1

02/18/2005

14:15:08

24576

E

30

Prg

SAPLOLEA

30

05/07/2008

12:45:49

96256

E

31

Prg

SAPLSFES

31

05/07/2008

16:00:57

260096

E

32

Prg

SAPLSPLUGIN

32

09/09/2004

14:18:36

8192

E

33

Typ

ARFCRDATA

0

05/06/2008

18:41:28

7168

34

Prg

SAPLGRFC

34

02/13/2005

18:20:25

16384

E

35

Typ

SWCBCONT

0

11/15/2000

17:55:11

3072

36

Typ

OLE_VERBS

0

04/04/1995

16:02:20

2048

37

Typ

OLE_PA

0

04/04/1995

16:02:19

2048

38

Prg

CL_GUI_DATAMANAGER============CP

38

07/05/2005

13:10:15

75776

E

39

Prg

CL_ABAP_CHAR_UTILITIES========CP

39

07/05/2005

13:10:15

13312

E

40

Prg

CL_IXML_MINI==================CP

40

02/18/2005

14:15:20

9216

E

41

Prg

CL_IXML_MINI_DOM==============CP

41

02/18/2005

14:13:24

17408

E

42

Prg

IF_IXML_MINI_NODE=============IP

41

09/09/2004

14:18:21

8192

E

43

Typ

IXMLTDOM

0

05/18/2004

14:07:00

3072

44

Prg

CL_IXML_MINI_NODE=============CP

44

02/18/2005

14:13:24

20480

E

45

Prg

IF_SIMPLEPROPTREE_XML=========IP

38

11/13/2000

16:49:03

5120

E

46

Prg

CL_IXML_MINI_RENDERER=========CP

46

02/18/2005

14:13:24

12288

E

47

Prg

SAPLEHSS

47

01/09/2006

11:35:28

116736

E

48

Prg

SAPLUSR1

48

01/25/2006

11:01:29

12288

E

49

Prg

SAPLRHUC

49

02/18/2005

14:15:10

61440

E

50

Typ

T77S0

0

03/08/1992

17:36:54

2048

51

Typ

M_PREMU

0

05/05/2004

03:26:13

2048

52

Prg

HRWPC_CSS_EXTERNAL_PERNR

48

11/11/2003

21:01:11

19456

E

53

Typ

SAVWCTXT

0

04/11/2001

12:39:35

4096

54

Prg

SAPLAWRT

54

01/05/2006

12:09:25

194560

E

55

Typ

BAPIRET2

0

08/20/1998

11:11:35

5120

56

Prg

SAPLHRAC

56

01/05/2006

12:33:58

83968

E

57

Prg

CL_HRPAD00AUTH_CHECK_FACTORY==CP

57

11/20/2001

16:10:42

12288

E

58

Prg

SAPLSXCH

58

07/03/2006

10:30:32

82944

E

59

Typ

ACT_IMP

0

11/09/2000

14:03:19

2048

60

Typ

V_EXT_ACT

0

11/09/2000

14:27:05

2048

61

Typ

SXS_ATTR

0

05/06/2008

19:13:28

5120

62

Prg

SAPLSEXE

62

05/07/2008

16:00:59

92160

E

63

Prg

CL_EXITHANDLER================CP

63

05/07/2008

16:00:58

30720

E

64

Prg

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

64

07/05/2005

13:10:15

30720

E

65

Prg

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

65

07/03/2006

10:26:16

36864

E

66

Prg

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

66

07/05/2005

13:10:15

19456

E

67

Prg

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

67

07/05/2005

13:10:15

24576

E

68

Prg

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

68

05/07/2008

14:17:46

40960

E

69

Prg

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

69

07/05/2005

13:10:15

17408

E

70

Prg

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

70

07/05/2005

13:10:15

25600

E

71

Prg

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

71

07/05/2005

13:10:15

30720

E

72

Prg

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

72

07/05/2005

13:10:15

34816

E

73

Prg

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

73

07/05/2005

13:10:15

25600

E

74

Prg

CL_ABAP_SOFT_REFERENCE========CP

74

07/05/2005

13:10:15

10240

E

75

Prg

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

75

09/09/2004

14:18:16

8192

E

76

Prg

IF_EX_HRPAD00AUTH_CHECK=======IP

67

02/19/2005

23:40:30

10240

E

77

Prg

%_CABAP

73

07/05/2005

13:10:15

29696

E

78

Typ

SXS_INTER

0

11/30/1998

15:55:16

2048

79

Prg

SAPLSEXV

79

05/07/2008

16:00:58

117760

E

80

Prg

CL_BADI_FLT_DATA_TRANS_AND_DB=CP

80

05/07/2008

16:00:58

35840

E

81

Typ

SXC_EXIT

0

11/09/2000

14:23:43

2048

82

Prg

CL_EX_HRPAD00AUTH_CHECK=======CP

82

02/19/2005

23:33:51

51200

E

83

Prg

%_CSXRT

82

05/07/2008

16:00:55

15360

E

84

Prg

CL_EXIT_MASTER================CP

84

05/07/2008

16:00:58

23552

E

85

Typ

SXS_MLCO

0

12/04/2000

14:59:55

2048

86

Prg

CL_EX_BADI_LAYER==============CP

86

05/07/2008

16:00:58

28672

E

87

Prg

IF_EX_BADI_LAYER==============IP

63

05/07/2008

16:00:58

7168

E

88

Typ

V_EXT_IMP

0

11/06/2003

20:40:20

3072

89

Typ

SXC_IMPSWH

0

11/09/2000

14:23:44

2048

90

Prg

ZCL_HRPAD00AUTH_CHECK_STD=====CP

90

05/14/2008

11:42:37

115712

E

91

Typ

P0001

0

05/06/2008

18:45:47

10240

92

Prg

SAPLRHPR

92

08/16/2006

14:42:51

901120

E

93

Typ

PERNR_US

0

12/09/1999

18:55:53

2048

94

Prg

SAPLHRIPA02CENTRAL_PERSON

94

06/07/2001

18:27:13

23552

E

95

Typ

PA0105

0

05/05/2004

03:21:07

6144

96

Prg

SAPLASTAT_TRIG

96

09/09/2004

14:18:33

13312

E

97

Typ

ASTAT_TYP2

0

11/10/1998

05:35:18

2048

98

Typ

ASTAT_TYP1

0

11/30/1998

15:54:16

2048

99

Prg

SAPLHRPAPAXX_T777D_READ

99

06/07/2001

18:27:14

17408

E

100

Typ

T777D

0

12/18/2001

16:57:46

8192

101

Prg

SAPLSEQ0

101

05/07/2008

16:00:59

109568

E

102

Typ

PA0001

0

05/06/2008

18:45:47

10240

103

Typ

PREL_DB

0

11/20/2001

15:32:37

11264

104

Prg

SAPLRHAC

104

08/16/2006

12:05:31

269312

E

105

Prg

CL_HR_SYSTEM_AUTHORITY_TRACE==CP

105

01/25/2006

11:07:03

34816

E

106

Typ

INDX

0

07/29/1998

18:38:15

6144

107

Prg

MSTT77S0

104

09/09/2004

14:18:23

10240

E

108

Typ

T77UU

0

08/28/1997

09:32:46

2048

109

Typ

T77UA

0

11/06/2003

20:38:07

3072

110

Prg

SAPLHRBAS00UTILITIES

110

08/16/2006

12:01:07

90112

E

111

Typ

T77PR

0

10/12/1997

12:09:27

4096

112

Typ

T77PR_WA

0

11/06/2003

20:32:05

4096

113

Typ

T778O

0

02/06/2001

14:30:15

3072

114

Typ

HRVIEW

0

11/06/2003

20:28:40

3072

115

Typ

PS0001

0

05/06/2008

18:45:41

6144

116

Typ

X031L

0

07/05/2005

13:10:15

6144

117

Prg

SAPLSDIFRUNTIME

117

07/05/2005

13:11:53

96256

E

118

Typ

DFIES

0

12/28/2004

17:06:45

10240

119

Prg

SAPLSDNT

119

05/07/2008

14:14:59

219136

E

120

Prg

SAPLSUGS

120

03/31/2006

11:14:08

47104

E

121

Typ

PRELP

0

11/20/2001

15:32:36

11264

122

Typ

T001P

0

05/06/2008

18:45:11

5120

123

Prg

RPLICO90

47

04/11/2005

16:36:02

90112

E

124

Prg

SAPLRHBR

124

09/09/2004

14:18:35

9216

E

125

Prg

SAPLFGSBER

125

06/07/2001

18:27:03

9216

E

126

Typ

TGSBT

0

02/14/1998

13:30:16

2048

127

Typ

T500P

0

09/03/1997

03:24:54

4096

128

Typ

T501T

0

02/14/1998

11:26:12

2048

129

Typ

T503T

0

02/14/1998

11:26:38

2048

130

Prg

RPMPAQPN

47

04/11/2005

16:36:02

103424

E

131

Prg

SAPLRPIN

131

02/19/2005

23:16:25

49152

E

132

Prg

SAPLRHDB

132

05/14/2008

11:16:09

288768

E

133

Typ

HROEXIST

0

01/29/1997

18:52:28

2048

134

Typ

T77EO

0

11/30/1999

10:21:20

3072

135

Prg

SAPLRHOMBUFFER

135

08/16/2006

12:05:32

379904

E

136

Typ

HRP1000

0

11/09/2000

14:08:03

6144

137

Typ

TEXTBUF

0

05/12/1997

16:50:35

3072

138

Prg

SAPLRHCC

138

09/09/2004

14:18:35

35840

E

139

Prg

SAPLKMA1HR

139

07/03/2006

16:03:25

35840

E

140

Prg

SAPLRHS0

140

09/09/2004

14:18:35

15360

E

141

Prg

SAPLKMS0CORE

141

06/07/2001

18:27:28

74752

E

142

Typ

CSKS_EX

0

05/06/2008

19:55:07

15360

143

Prg

SAPLKMS0

143

07/11/2006

14:21:16

261120

E

144

Typ

CSKS

0

05/06/2008

19:55:08

15360

145

Typ

CSKT

0

02/14/1998

06:37:05

3072

146

Typ

T549T

0

02/14/1998

11:39:23

2048

147

Prg

SAPLRHCM

147

09/09/2004

14:18:35

14336

E

148

Typ

T001Z_BF

0

02/14/1998

10:24:58

2048

149

Prg

SAPLFCU3CORE

149

06/07/2001

18:27:03

16384

E

150

Typ

T001_BF

0

05/14/1998

22:44:10

3072

151

Prg

SAPLFACSCORE

151

06/07/2001

18:27:03

13312

E

152

Typ

T001

0

05/06/2008

18:44:43

13312

153

Typ

PA0000

0

05/06/2008

19:30:04

6144

154

Typ

T569V

0

02/20/1998

08:44:17

3072

155

Typ

USR01

0

05/06/2008

19:03:16

4096

156

Typ

TCURX

0

07/14/1993

01:56:06

2048

157

Typ

PA0002

0

05/06/2008

19:30:04

14336

158

Prg

SAPLRPNA

158

05/19/2005

19:25:44

45056

E

159

Typ

P0021

0

05/06/2008

18:41:55

12288

160

Typ

P0148

0

03/12/2002

14:46:02

9216

161

Typ

P0002

0

05/06/2008

18:41:54

14336

162

Typ

T522N

0

03/10/1999

18:43:19

3072

163

Typ

PA0003

0

03/12/2002

14:46:55

9216

164

Typ

T77WWW_SC

0

04/23/1998

15:09:15

2048

165

Prg

SAPLEHU1

165

07/03/2006

09:49:36

135168

E

166

Typ

P0006

0

03/12/2002

14:45:35

13312

167

Typ

Q0006_ESS

0

04/23/1998

14:52:29

2048

168

Prg

SAPMEH01

165

03/12/2002

13:04:45

68608

E

169

Typ

ESS_SUBTYTAB

0

04/14/1998

16:03:41

2048

170

Typ

T591A

0

04/01/1998

02:12:26

2048

171

Typ

T591A_ESSEX

0

05/06/1998

02:20:40

2048

172

Prg

SAPLHRPAD00INFTY

172

02/14/2006

18:11:34

96256

E

173

Typ

T582L

0

11/10/1998

05:48:05

2048

174

Typ

T591S

0

08/28/1997

09:05:59

2048

175

Prg

SAPMEH00

165

03/12/2002

13:04:45

59392

E

176

Prg

%_CVRM

165

02/18/2005

14:16:06

8192

E

177

Prg

SAPLPADR_US

177

10/06/2004

16:04:08

50176

E

178

Typ

PA0006

0

03/12/2002

14:46:55

12288

179

Typ

BAPIP0006LUS

0

05/06/1998

01:56:19

8192

180

Typ

T005T

0

10/02/2001

22:00:32

3072

181

Typ

T005U

0

02/14/1998

10:27:02

2048

182

Typ

BAPIRETURN1

0

08/20/1998

11:11:36

4096

183

Prg

SAPLPADR

183

10/06/2004

16:04:08

46080

E

184

Prg

SAPLHRMM

184

04/11/2005

12:00:06

152576

E

185

Prg

%_CCXTAB

165

02/18/2005

14:15:08

7168

E

186

Typ

SCXTAB_CONTROL

0

05/18/2004

14:07:29

6144

187

Prg

AVWRTCX0

165

02/14/2005

17:33:46

12288

E

188

Prg

SAPLSDSD

188

05/07/2008

16:00:55

309248

E

189

Typ

SHLP_DESCR

0

12/28/2004

17:07:09

12288

190

Prg

SAPLSCP2

190

05/07/2008

16:00:57

131072

E

191

Typ

RFC_FIELDS

0

08/20/1998

10:56:34

3072

192

Typ

DPPROPS

0

07/09/1997

23:53:23

2048

193

Prg

SAPLURFC

193

05/07/2008

15:28:44

22528

E

194

Prg

SAPLSRFC

194

01/05/2006

12:14:38

37888

E

195

Prg

SAPLSYST

195

02/13/2005

17:31:56

35840

E

196

Prg

SAPMSSY1

27

04/11/2005

09:27:15

22528

E

197

Typ

ARFCDATA

0

05/06/2008

18:37:54

5120

198

Typ

SHDSTUSR

0

02/06/2001

14:29:52

2048

199

Typ

SHDSTU

0

12/14/1998

23:15:34

2048

200

Typ

SHDSTCIU

0

12/14/1998

23:15:34

2048

201

Typ

ARFCSDATA

0

05/06/2008

18:41:28

6144

202

Typ

CAT_SVARS

0

05/18/2004

10:32:36

3072

203

Prg

%_CSYDB0

0

03/30/2005

10:21:45

36864

E

204

Typ

RSVAMEMKEY

0

05/07/1997

13:07:49

2048

205

Prg

%_CRSDS

0

02/18/2005

14:15:39

10240

E

206

Typ

SYST

0

09/09/2004

14:18:12

31744

207

Typ

BAPIPAKEY

0

08/13/1997

12:18:59

3072

208

Typ

VARI

0

05/12/1997

15:27:09

6144

-

-


-

-


Directory of Application Tables

-

-


Name Date Time Lngth

Val.

-

-


Program SAPMPZ02

-

-


SYST 09/09/2004 14:18:12 00004612

0x0001000x00030000000000000000000

VARI / / : : 00003052

0000#0#x0620#0##0000########000000000

-

-


Program SAPSHDTV

-

-


SHDSTU / / : : 00000106

SHDSTCIU / / : : 00000100

-

-


Program SAPLEHSS

-

-


T500P / / : : 00000342

1000090101008DWS - Glendale 100

T77WWW_SC / / : : 00000110

PZ02 0110HR_ESS_ADDRESSLIST_10

T001P / / : : 00000132

10000909000Non-Union - 0001004 11 00 0112113000

T569V / / : : 00000046

1009901200226000200226

USR01 / / : : 00000222

100SANEY001 LOCL GD2X

TCURX / / : : 00000012

0

T591S / / : : 00000104

100E0006XB Contractor Agency Address

-

-


Program SAPLUSR1

-

-


M_PREMU / / : : 00000122

1000001SANEY001 002852222006101799991

-

-


Program SAPLRHUC

-

-


T77S0 / / : : 00000046

100MAIL SAPSY0001

-

-


Program SAPLRHAC

-

-


T77UA / / : : 00000090

100SAP* ALL 1900010199991231

T778O / / : : 00000210

100XS ICON_BIW_SOURCE_SYS_R3

T77UU / / : : 00000054

000000000000

-

-


Program CL_HR_SYSTEM_AUTHORITY_TRACE==CP

-

-


INDX / / : : 00003104

100PD%SA_TRACE%SANEY001 000 00000000

-

-


Program MSTT77S0

-

-


T77S0 / / : : 00000046

100PLOGITEXTD

-

-


Program RPLICO90

-

-


T501T / / : : 00000050

100E4Non-Employee

T503T / / : : 00000052

100E15Contr. Staff

T549T / / : : 00000052

100E99No U.S. Payroll

-

-


Program SAPLFCU3CORE

-

-


T001 / / : : 00000490

1001008XXXXXX Worldwide ServicesU.S.A. U

-

-


Program SAPLFACSCORE

-

-


T001 / / : : 00000490

1001008XXXXXX Worldwide ServicesU.S.A. U

-

-


Program SAPLRPNA

-

-


P0002 / / : : 00001974

002852220002 999912311974061500020061017KARAT003

P0021 / / : : 00001118

P0148 / / : : 00000600

-

-


Program SAPLEHU1

-

-


T591A 03/27/2003 11:39:13 00000026

10000061 1

T005T 10/02/2001 22:00:32 00000334

P0006 07/03/2006 10:44:02 00001472

00285222 000000000000000000000000000

Q0006_ESS 03/23/2000 22:41:19 00000014

1

*P0006 07/03/2006 10:44:02 00001472

00000000 000000000000000000000000000

-

-


Program SAPLPADR_US

-

-


T591S / / : : 00000104

100E00061 Permanent residence

T005U / / : : 00000060

100EUS MA Massachusetts

T005T / / : : 00000334

100EUS USA American

-

-


Program SAPLEHU1

-

-


P0002 05/06/2008 18:41:54 00001974

00000000 000000000000000000000000000

*T005T 10/02/2001 22:00:32 00000334

-

-


-

-


ABAP Control Blocks (CONT)

-

-


Index

Name

Fl

PAR0

PAR1

PAR2

PAR3

PAR4

PAR5

PAR6

Source Code

Line

-

-


2072

FUNC

81

0016

LAWRTU12

16

2073

FUNC

82

0001

LAWRTU12

16

2074

FUNC

81

0017

LAWRTU12

16

2075

FUNC

82

0002

LAWRTU12

16

2076

FUNC

FF

0000

LAWRTU12

16

2077

cmpr

00

00CA

0022

0000

LAWRTU12

21

2079

BRAF

05

0003

LAWRTU12

21

2080

FUNE

03

0016

LAWRTU12

22

2081

ENDF

00

0000

LAWRTU12

22

2082

BREL

06

0000

LAWRTU12

27

2083

FUNC

02

002A

LAWRTU12

27

2084

FUNC

02

0077

LAWRTU12

27

>>>>>

FUNC

12

000B

LAWRTU12

27

2086

PAR2

03

0000

00A3

8000

LAWRTU12

27

2088

FUNC

81

0026

LAWRTU12

27

2089

FUNC

82

0001

LAWRTU12

27

2090

FUNC

83

C000

LAWRTU12

27

2091

FUNC

81

0027

LAWRTU12

27

2092

FUNC

82

0002

LAWRTU12

27

2093

FUNC

83

C000

LAWRTU12

27

-

-


Former Member
0 Kudos

Hi

Please paste complete short dump details by using ST22 Transaction.

Meanwhile, please have a look at the following related OSS notes ->

<u>Note 888619 ITS Up/Down: automation error in ITS 620 during upload

Note 731191 Call BAPI_TRIP_GET_FORM via ITS in an EWT transaction

Note 702198 CALL_BROWSER and ITS_BROWSER_WINDOW_OPEN function modules

Note 409583 ITS calls return currupted data (e.g. field-transport fails)</u>

Hope this will help.

Regards

- Atul