cancel
Showing results for 
Search instead for 
Did you mean: 

Unable to create IDOCs after client copy

Former Member
0 Kudos

I'm unable to create IDOCs after a client copy. I receive a SAPSQL_ARRAY_INSERT_DUPREC or insert of duplicate rows ABAP dump.

Does anyone know what how to fix this. Thank you in advance.

Runtime Error SAPSQL_ARRAY_INSERT_DUPREC

Except. CX_SY_OPEN_SQL_DB

Date and Time 22.10.2007 16:50:51

-

-


-

-


ShrtText

The ABAP/4 Open SQL array insert results in duplicate database records.

-

-


-

-


What happened?

Error in ABAP application program.

The current ABAP program "SAPLEDI1" had to be terminated because one of the

statements could not be executed.

This is probably due to an error in the ABAP program.

-

-


-

-


What can you do?

Print out the error message (using the "Print" function)

and make a note of the actions and input that caused the

error.

To resolve the problem, contact your SAP system administrator.

You can use transaction ST22 (ABAP Dump Analysis) to view and administer

termination messages, especially those beyond their normal deletion

date.

is especially useful if you want to keep a particular message.

-

-


-

-


Error analysis

An exception occurred. This exception is dealt with in more detail below

. The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was

neither

caught nor passed along using a RAISING clause, in the procedure

"F09_IDOC_INSERT_WITH_NUMBER" "(FORM)"

.

Since the caller of the procedure could not have expected this exception

to occur, the running program was terminated.

The reason for the exception is:

If you use an ABAP/4 Open SQL array insert to insert a record in

the database and that record already exists with the same key,

this results in a termination.

(With an ABAP/4 Open SQL single record insert in the same error

situation, processing does not terminate, but SY-SUBRC is set to 4.)

-

-


-

-


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.

You may able to find an interim solution to the problem

in the SAP note system. If you have access to the note system yourself,

use the following search criteria:


"SAPSQL_ARRAY_INSERT_DUPREC" CX_SY_OPEN_SQL_DBC

"SAPLEDI1" or "LEDI1F09"

"F09_IDOC_INSERT_WITH_NUMBER"


If you cannot solve the problem yourself and you wish to send

an error message to SAP, include the following documents:

1. A printout of the problem description (short dump)

To obtain this, select in the current display "System->List->

Save->Local File (unconverted)".

2. A suitable printout of the system log

To obtain this, call the system log through transaction SM21.

Limit the time interval to 10 minutes before and 5 minutes

after the short dump. In the display, then select the function

"System->List->Save->Local File (unconverted)".

3. If the programs are your own programs or modified SAP programs,

supply the source code.

To do this, select the Editor function "Further Utilities->

Upload/Download->Download".

4. Details regarding the conditions under which the error occurred

or which actions and input led to the error.

The exception must either be prevented, caught within the procedure

"F09_IDOC_INSERT_WITH_NUMBER"

"(FORM)", or declared in the procedure's RAISING clause.

To prevent the exception, note the following:

-

-


-

-


System environment

SAP Release.............. "640"

Application server....... "auaplxr3q"

Network address.......... "128.197.135.5"

Operating system......... "AIX"

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

Hardware type............ "000B439ED600"

Character length......... 8 Bits

Pointer length........... 64 Bits

Work process number...... 1

Short dump setting....... "full"

Database server.......... "auaplxr3q"

Database type............ "ORACLE"

Database name............ "Q63"

Database owner........... "SAPR3"

Character set............ "en_US.ISO8859-1"

SAP kernel............... "640"

Created on............... "Mar 22 2007 20:48:46"

Created in............... "AIX 1 5 00538A4A4C00"

Database version......... "OCI_920 "

Patch level.............. "175"

Patch text............... " "

Supported environment....

Database................. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE

10.2.0.."

SAP database version..... "640"

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

Memory usage.............

Roll..................... 16128

EM....................... 4189928

Heap..................... 0

Page..................... 0

MM Used.................. 1469352

MM Free.................. 2718056

SAP Release.............. "640"

-

-


-

-


User and Transaction

-

-


-

-


Information on where terminated

The termination occurred in the ABAP program "SAPLEDI1" in

"F09_IDOC_INSERT_WITH_NUMBER".

The main program was "SAPMSSY1 ".

The termination occurred in line 108 of the source code of the (Include)

program "LEDI1F09"

of the source code of program "LEDI1F09" (when calling the editor 1080).

Processing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in

the

procedure "F09_IDOC_INSERT_WITH_NUMBER" "(FORM)" but was not handled locally,

not declared in the

RAISING clause of the procedure.

The procedure is in the program "SAPLEDI1 ". Its source code starts in line 5

of the (Include) program "LEDI1F09 ".

-

-


-

-


Source Code Extract

-

-


Line

SourceCde

-

-


78

perform call_badi tables list_container_insert

79

using control

80

ident.

81

  • Aufruf des Badi's für das einstreuen neuer Segmente

82

perform call_insert_badi tables list_container_insert

83

using control

84

ident

85

changing maxsegnum.

86

87

  • free list_container_insert

88

FREE_RETURN = 1.

89

ELSE. " no other IDoc is open in create-mode

90

LOOP AT LIST_CONTAINER_CREATE WHERE MANDT EQ SY-MANDT

91

AND DOCNUM EQ IDENT.

92

LIST_CONTAINER_CREATE-DOCNUM = DOCNUM.

93

MODIFY LIST_CONTAINER_CREATE.

94

ADD 1 TO MAXSEGNUM.

95

ENDLOOP.

96

if control-mestyp eq c_mestyp.

97

CALL FUNCTION 'FUNCTION_EXISTS'

98

EXPORTING

99

funcname = c_func

100

EXCEPTIONS

101

FUNCTION_NOT_EXIST = 1.

102

IF syst-subrc IS INITIAL. "Anwendungssystem

103

perform call_transform

104

tables list_container_create

105

using control.

106

ENDIF.

107

endif.

>>>>>

INSERT EDID4 FROM TABLE LIST_CONTAINER_CREATE.

109

  • Aufruf des Badi's für das Anwendungsmapping einzelner Felder

110

perform call_badi tables list_container_create

111

using control

112

ident.

113

perform call_insert_badi tables list_container_create

114

using control

115

ident

116

changing maxsegnum.

117

118

  • free list_container_create

119

FREE_RETURN = 0.

120

ENDIF.

121

122

  • insert status records

123

124

SYN_ERROR_IN = ' '.

125

CNTR_STATUS = 0.

126

REFRESH LIST_STATUS.

127

CLEAR LIST_STATUS.

-

-


-

-


Contents of system fields

-

-


Name

Val.

-

-


SY-SUBRC

0

SY-INDEX

2

SY-TABIX

1

SY-DBCNT

1

SY-FDPOS

0

SY-LSIND

0

SY-PAGNO

0

SY-LINNO

1

SY-COLNO

1

SY-PFKEY

SY-UCOMM

SY-TITLE

CPIC and RFC Control

SY-MSGTY

SY-MSGID

SY-MSGNO

000

SY-MSGV1

SY-MSGV2

SY-MSGV3

SY-MSGV4

-

-


-

-


Active Calls/Events

-

-


No. Ty. Program Include Line

Name

-

-


13 FORM SAPLEDI1 LEDI1F09 108

F09_IDOC_INSERT_WITH_NUMBER

12 FUNCTION SAPLEDI1 LEDI1U19 33

EDI_DOCUMENT_CLOSE_CREATE_TAB

11 FUNCTION SAPLEDIR LEDIRU01 273

IDOC_INBOUND_WRITE_TO_DB

10 FORM SAPLEDIN LEDINF01 457

ONE_IDOC_STORE

9 FUNCTION SAPLEDIN LEDINU05 234

IDOC_INBOUND_ASYNCHRONOUS

8 FORM SAPLEDIN LEDINV05 19

IDOC_INBOUND_ASYNCHRONOUS

7 FORM SAPMSSY1 SAPMSSY1 254

XAB_RUN_DRIVER

6 FUNCTION SAPLSXAB LSXABU01 9

RFC_RUN_XAB_DRIVER

5 FUNCTION SAPLERFC LERFCU01 59

ARFC_EXECUTE

4 FUNCTION SAPLERFC LERFCU02 229

ARFC_DEST_SHIP

3 FORM SAPLERFC LERFCV02 28

ARFC_DEST_SHIP

2 FORM SAPMSSY1 SAPMSSY1 69

REMOTE_FUNCTION_CALL

1 MODULE (PBO) SAPMSSY1 SAPMSSY1 30

%_RFC_START

-

-


-

-


Chosen variables

-

-


Name

Val.

-

-


No. 13 Ty. FORM

Name F09_IDOC_INSERT_WITH_NUMBER

-

-


CONTROL-MESTYP

USERCLONE

554544444222222222222222222222

53523CFE5000000000000000000000

C_MESTYP

FIDCCH

444444222222222222222222222222

694338000000000000000000000000

SY-XFORM

IDOC_INBOUND_ASYNCHRONOUS

444454444544545544454445522222

94F3F9E2F5E4F139E382FEF5300000

LIST_STATUS-STAPA2

22222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000

C_FUNC

IDOC_TRANSFORM

444455544544542222222222222222

94F3F421E36F2D0000000000000000

SYST-REPID

SAPLEDI1

5454444322222222222222222222222222222222

310C549100000000000000000000000000000000

SY-UNAME

Q63CLNT140

533444533322

1633CE414000

%_DUMMY$$

2222

0000

SY-MSGV1

22222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000

SYST-SUBRC

0

0000

0000

ALE_IDOC_TO_APL_OK

62

33

62

LIST_CONTAINER_CREATE[]

Table IT_20[9x1068]

FUNCTION-POOL=EDI1DATA=LIST_CONTAINER_CREATE[]

Table reference: 14

TABH+ 0(20) = 070000008036F5B8000000000000000000000000

TABH+ 20(20) = 0000000E00000014000000090000042CFFFFFFFF

TABH+ 40(16) = 0400002300000CA0000824C401000000

store = 0x070000008036F5B8

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 14 (0x0000000E)

label = 20 (0x00000014)

fill = 9 (0x00000009)

leng = 1068 (0x0000042C)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000048

occu = 8 (0x00000008)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 8 (cmpManyEq)

occu0 = 1

collHash = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

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

tabi = 0x070000008036F610

pghook = 0x07000000802D86D0

idxPtr = 0x0000000000000000

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 16 (0x00000010)

lineAlloc = 16 (0x00000010)

store_id = 23 (0x00000017)

shmIsReadOnly = 0 (0x00000000)

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

regHook = Not allocated

hsdir = Not allocated

ext2 = Not allocated

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

tabhBack = Not allocated

delta_head = Not allocated

pb_func = Not allocated

pb_handle = Not allocated

LIST_CONTAINER_CREATE

1400000000000511747000000009E1BPADRML 00000002#èXD63 070TST_QA140_1

3333333333333333333333333333434544544222222222222222222222333333330E54332222222233355555433353

14000000000005117470000000095120142DC0000000000000000000000000000238846300000000070434F11140F1

CONTROL

1400000000000511747640 64 2SAPQ63 LSQ63CLNT140

3333333333333333333333233222222223545533222245533444533322222222222222222222222222222222222222

14000000000005117476400640000000023101630000C31633CE414000000000000000000000000000000000000000

G_MAXSYNERR

1

0000

0001

<%_TABLE_EDID4>

???

??????

??????

ALE_DISPATCH_ERROR

27

33

27

ALE_IDOC_READY_FOR_APL

64

33

64

%_SPACE

2

0

IDENT

0000000000000001

3333333333333333

0000000000000001

ALE_IDOC_TO_APL_ERROR

63

33

63

-

-


No. 12 Ty. FUNCTION

Name EDI_DOCUMENT_CLOSE_CREATE_TAB

-

-


IDENTIFIER

0000000000000001

3333333333333333

0000000000000001

NO_DEQUEUE

X

5

8

SYN_ACTIVE

Y

5

9

IDOC_CONTROL

1400000000000511747640 64 2SAPQ63 LSQ63CLNT140

3333333333333333333333233222222223545533222245533444533322222222222222222222222222222222222222

14000000000005117476400640000000023101630000C31633CE414000000000000000000000000000000000000000

SYNTAX_RETURN

0

0000

0000

INT_EDIDD[]

Table IT_10[9x1062]

FUNCTION-POOL=EDINDATA=G_T_DATA_RECORDS[]

Table reference: 9

TABH+ 0(20) = 0700000080284B80070000008028530800000000

TABH+ 20(20) = 000000090000000A0000000900000426FFFFFFFF

TABH+ 40(16) = 0400000900000AA8000824C401000000

store = 0x0700000080284B80

ext1 = 0x0700000080285308

shmId = 0 (0x00000000)

id = 9 (0x00000009)

label = 10 (0x0000000A)

fill = 9 (0x00000009)

leng = 1062 (0x00000426)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000039

occu = 8 (0x00000008)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 8 (cmpManyEq)

occu0 = 1

collHash = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

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

tabi = 0x0700000080320D90

pghook = 0x07000000802E1508

idxPtr = 0x0000000000000000

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 16 (0x00000010)

lineAlloc = 16 (0x00000010)

store_id = 17 (0x00000011)

shmIsReadOnly = 0 (0x00000000)

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

regHook = 0x0000000000000000

hsdir = 0x0000000000000000

ext2 = 0x07000000802852A8

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

tabhBack = 0x0700000080284B30

delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000

pb_func = 0x0000000000000000

pb_handle = 0x0000000000000000

NO_IGNORE

2

0

EDI_IDOC_SYNTAX_ERROR_IN

60

33

60

DOCNUM

0000000000511747

3333333333333333

0000000000511747

EXCLUSIVE

E

4

5

SYNCHRONOUS

S

5

3

APL_TESTIDOC_CHECK_OK

55

33

55

FREE_RETURN

0

0000

0000

INT_EDIDD

1400000000000000001000009E1BPADRML 00000000##XD63 070TST_QA140_17 X00

3333333333333333333333333434544544222222222222222222333333330054332222222233355555433353322533

14000000000000000010000095120142DC0000000000000000000000000000846300000000070434F11140F1700800

SUB_INT_ACK_POSITIVE

14

33

14

G_INSERT_OK

2

0

LIST_CONTAINER_INSERT_TMP[]

Table[initial]

LIST_CONTAINER_INSERT_TMP

0000000000000000000000000 00000000##

2223333333333333333333333333222222222222222222222222222222333333330022222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

%_ARCHIVE

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-

-


No. 11 Ty. FUNCTION

Name IDOC_INBOUND_WRITE_TO_DB

-

-


PI_DO_HANDLE_ERROR

X

5

8

PI_NO_DEQUEUE

X

5

8

PI_RETURN_DATA_FLAG

X

5

8

PI_RFC_MULTI_CP

0000

3333

0000

PI_STATUS_MESSAGE

000000000000000000000000000000000000000000000000000000000000

2223333333333333333333333333333333333333333333333333333333333332222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

PE_IDOC_NUMBER

0000000000000001

3333333333333333

0000000000000001

PE_INBOUND_PROCESS_DATA

140BAPI 6

3334454222222222222222222222222222222222222222222222222223222222222222222222222222222222222222

1402109000000000000000000000000000000000000000000000000006000000000000000000000000000000000000

PE_STATE_OF_PROCESSING

0

0000

0000

T_DATA_RECORDS[]

Table IT_10[9x1062]

T_LINKED_OBJECTS[]

Table IT_11[0x100]

FUNCTION-POOL=EDINFORM=ONE_IDOC_STOREDATA=LT_LINKED_OBJECTS[]

Table reference: 10

TABH+ 0(20) = 000000000000000007000000802853F000000000

TABH+ 20(20) = 0000000A0000000B0000000000000064FFFFFFFF

TABH+ 40(16) = 0400000900002BB00010249401000000

store = 0x0000000000000000

ext1 = 0x07000000802853F0

shmId = 0 (0x00000000)

id = 10 (0x0000000A)

label = 11 (0x0000000B)

fill = 0 (0x00000000)

leng = 100 (0x00000064)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000190

occu = 16 (0x00000010)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 2 (cmpSingleMcmpR)

occu0 = 1

collHash = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

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

tabi = Not allocated

pghook = Not allocated

idxPtr = Not allocated

refCount = Not allocated

tstRefCount = Not allocated

lineAdmin = Not allocated

lineAlloc = Not allocated

store_id = Not allocated

shmIsReadOnly = Not allocated

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

regHook = 0x0000000000000000

hsdir = 0x0000000000000000

ext2 = 0x0700000080285390

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

tabhBack = 0x0700000080285340

delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000

pb_func = 0x0000000000000000

pb_handle = 0x0000000000000000

PC_CONTROL_RECORD

1400000000000000000 30 2 LSQ63CLNT140

3333333333333333333222233222222223222222222245533444533322222222222222222222222222222222222222

14000000000000000000000300000000020000000000C31633CE414000000000000000000000000000000000000000

%_VIASELSCR

#

0

4

%_SPACE

2

0

L_STATUS

64

33

64

L_ALE_SUCCESS_MESSAGE

B1 S005 No filters

4322222222222222222253332222222222222222222222222222222222222222222222222246266676772222222222

21000000000000000000300500000000000000000000000000000000000000000000000000EF069C45230000000000

ST_PREVIOUS_PARTNER_DATA-SYNCHK

X

5

8

C_TRUE

X

5

8

SYST-REPID

SAPLEDIR

5454444522222222222222222222222222222222

310C549200000000000000000000000000000000

C_ELEMENT_UNPROCESSED_IDOCS

Unprocessed_IDocs

56776667766544667222222222222222

5E02F353354F94F33000000000000000

ST_PREVIOUS_STATE_OF_PROCE

0

0000

0000

ST_INBOUND_PROCESS_DATA-EDIVR2

6

3

6

SY-MSGV4

22222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000

L_SYN_ACTIVE

Y

5

9

SY-XFORM

IDOC_INBOUND_ASYNCHRONOUS

444454444544545544454445522222

94F3F9E2F5E4F139E382FEF5300000

L_SYNTAX_RETURN

0

0000

0000

%_DUMMY$$

2222

0000

SY-REPID

SAPLEDIR

5454444522222222222222222222222222222222

310C549200000000000000000000000000000000

-

-


No. 10 Ty. FORM

Name ONE_IDOC_STORE

-

-


IDOC_NUMBER_IN

0000000000000000

3333333333333333

0000000000000000

STATE_OF_PROCESSING_IN

0

0000

0000

INBOUND_PROCESS_DATA_IN

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

GT_NEW_IDOC_IDENTIFICATIONS[]

Table[initial]

G_LAST_IDOC_NUMBER

0000000000000000

3333333333333333

0000000000000000

SYST-REPID

SAPLEDIN

5454444422222222222222222222222222222222

310C549E00000000000000000000000000000000

CURRENT_CONTROL_RECORD_IN-DOCNUM

0000000000000000

3333333333333333

0000000000000000

CONV_ERROR

2

0

C_TRUE

X

5

8

SY

###############################################################################,##############

0000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000

0002000000010009000000000000000000000000000100000001000000010000000000000000004C00000000000000

STATUS_MESSAGE_IN

000000000000000000000000000000000000000000000000000000000000

2223333333333333333333333333333333333333333333333333333333333332222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

C_IDOC_SELECT_AND_WRITE_TO_DB

5

3

5

SY-REPID

SAPLEDIN

5454444422222222222222222222222222222222

310C549E00000000000000000000000000000000

STATUS_MESSAGE_IN-STAMID

22222222222222222222

00000000000000000000

GT_NEW_IDOC_IDENTIFICATIONS

0000000000000000

3333333333333333222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

SPACE

2

0

STATUS_MESSAGE_IN-STAMNO

000

333

000

RET_FLAG

X

5

8

G_RFC_CODEPAGE

0000

3333

0000

RSJOBINFO-JOBSUBRC

0

0000

0000

SY-XFORM

IDOC_INBOUND_ASYNCHRONOUS

444454444544545544454445522222

94F3F9E2F5E4F139E382FEF5300000

SY-LANGU

E

4

5

G_T_DATA_RECORDS[]

Table IT_10[9x1062]

LT_LINKED_OBJECTS[]

Table IT_11[0x100]

CURRENT_CONTROL_RECORD_IN

1400000000000000000 30 2 LSQ63CLNT140

3333333333333333333222233222222223222222222245533444533322222222222222222222222222222222222222

14000000000000000000000300000000020000000000C31633CE414000000000000000000000000000000000000000

%_DUMMY$$

2222

0000

SWO_%OBJID

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-

-


No. 9 Ty. FUNCTION

Name IDOC_INBOUND_ASYNCHRONOUS

-

-


IDOC_CONTROL_REC_40[]

Table IT_3[1x524]

FUNCTION-POOL=EDINFORM=IDOC_INBOUND_ASYNCHRONOUSDATA=IDOC_CONTROL_REC_40[]

Table reference: 3

TABH+ 0(20) = 07000000802D876007000000802D449000000000

TABH+ 20(20) = 0000000300000003000000010000020C000000E0

TABH+ 40(16) = 0400000900001FE0000A249001000000

store = 0x07000000802D8760

ext1 = 0x07000000802D4490

shmId = 0 (0x00000000)

id = 3 (0x00000003)

label = 3 (0x00000003)

fill = 1 (0x00000001)

leng = 524 (0x0000020C)

loop = 224 (0x000000E0)

xtyp = TYPE#000136

occu = 10 (0x0000000A)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 2 (cmpSingleMcmpR)

occu0 = 0

collHash = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

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

tabi = 0x07000000802DB9D8

pghook = 0x0000000000000000

idxPtr = 0x0000000000000000

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 10 (0x0000000A)

lineAlloc = 10 (0x0000000A)

store_id = 9 (0x00000009)

shmIsReadOnly = 0 (0x00000000)

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

regHook = 0x0000000000000000

hsdir = 0x0000000000000000

ext2 = 0x07000000802D88A0

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

tabhBack = 0x07000000802D8710

delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000

pb_func = 0x0000000000000000

pb_handle = 0x0000000000000000

IDOC_DATA_REC_40[]

Table IT_4[9x1063]

FUNCTION-POOL=EDINFORM=IDOC_INBOUND_ASYNCHRONOUSDATA=IDOC_DATA_REC_40[]

Table reference: 4

TABH+ 0(20) = 07000000802D880807000000802D896000000000

TABH+ 20(20) = 00000004000000040000000900000427FFFFFFFF

TABH+ 40(16) = 04000009000020500008249001000000

store = 0x07000000802D8808

ext1 = 0x07000000802D8960

shmId = 0 (0x00000000)

id = 4 (0x00000004)

label = 4 (0x00000004)

fill = 9 (0x00000009)

leng = 1063 (0x00000427)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000138

occu = 8 (0x00000008)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 2 (cmpSingleMcmpR)

occu0 = 0

collHash = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

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

tabi = 0x07000000802E1550

pghook = 0x07000000802D8860

idxPtr = 0x0000000000000000

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 16 (0x00000010)

lineAlloc = 16 (0x00000010)

store_id = 12 (0x0000000C)

shmIsReadOnly = 0 (0x00000000)

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

regHook = 0x0000000000000000

hsdir = 0x0000000000000000

ext2 = 0x07000000802D8900

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

tabhBack = 0x07000000802D87B8

delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000

pb_func = 0x0000000000000000

pb_handle = 0x0000000000000000

SRRELROLES

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

L_IDOC_CONTROL_REC_INT

1400000000000000000 30 2 LSQ63CLNT140

3333333333333333333222233222222223222222222245533444533322222222222222222222222222222222222222

14000000000000000000000300000000020000000000C31633CE414000000000000000000000000000000000000000

C_IDOC_SAVE

B

4

2

C_TRFC

1

3

1

L_SENT_WORKFLOW_CCMS

X

5

8

SWO_%CONTAINER

000000000

2222222222222222222222222222222233333333322222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

RSJOBINFO

00000000000000 ####

222222222222222222222222222222223333333333333322222222222222222222222222222222220000

000000000000000000000000000000000000000000000000000000000000000000000000000000000000

L_IDOC_NUMBER

0000000000000000

3333333333333333

0000000000000000

L_STATE_OF_PROCESSING

0

0000

0000

L_INBOUND_PROCESS_DATA

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

L_SAVE_STATUS_MESSAGE

000000000000000000000000000000000000000000000000000000000000

2223333333333333333333333333333333333333333333333333333333333332222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

C_FALSE

2

0

L_TRANSACTION_ID

80C587060061471C48290466

334333333333333433333333

803587060061471348290466

L_SYSTEM_OUT

0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

L_ERROR_OUT

2

0

I_EDIQI[]

Table[initial]

G_T_DATA_RECORDS_EXT40

000000

2222222222222222222222222222222222222222222222222222222333333222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

AGENT_CONTROL_OUT

0700000000000122485640 30 1A000000008LSQ63CLNT140

3333333333333333333333233222222223433333333345533444533322222222222222222222222222222222222222

07000000000001224856400300000000011000000008C31633CE414000000000000000000000000000000000000000

CONTROL

0000000000000000

2223333333333333333222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

AGENT_TID

80C587060061471C48290466

334333333333333433333333

803587060061471348290466

I_EDIQI

00000000000000000000000000

3333333333333333333333333322

0000000000000000000000000000

-

-


No. 8 Ty. FORM

Name IDOC_INBOUND_ASYNCHRONOUS

-

-


G_MINI_DOM

F0000000

F0000000

IDOC_CONTROL_REC_40[]

Table IT_3[1x524]

G_ITER

F0000000

F0000000

IDOC_DATA_REC_40[]

Table IT_4[9x1063]

-

-


No. 7 Ty. FORM

Name XAB_RUN_DRIVER

-

-


SYST-REPID

SAPMSSY1

5454555322222222222222222222222222222222

310D339100000000000000000000000000000000

PROGRAM

SAPLERFC

5454454422222222222222222222222222222222

310C526300000000000000000000000000000000

PROG

SAPLERFC

5454454422222222222222222222222222222222

310C526300000000000000000000000000000000

NEW_FUNCTION

222222222222222222222222222222

000000000000000000000000000000

%_ARCHIVE

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

RFCTYPE_ABAP4_EXIT

7

0000

0007

SY-XFORM

IDOC_INBOUND_ASYNCHRONOUS

444454444544545544454445522222

94F3F9E2F5E4F139E382FEF5300000

IF_FOUND

0

0000

0000

SY-XPROG

SAPLEDIN

5454444422222222222222222222222222222222

310C549E00000000000000000000000000000000

%_SPACE

2

0

-

-


No. 6 Ty. FUNCTION

Name RFC_RUN_XAB_DRIVER

-

-


NEW_FUNCTION

222222222222222222222222222222

000000000000000000000000000000

PROGRAM

SAPLERFC

5454454422222222222222222222222222222222

310C526300000000000000000000000000000000

%_VIASELSCR

#

0

4

SY-XPROG

SAPLEDIN

5454444422222222222222222222222222222222

310C549E00000000000000000000000000000000

SYST-REPID

SAPLSXAB

5454554422222222222222222222222222222222

310C381200000000000000000000000000000000

-

-


No. 5 Ty. FUNCTION

Name ARFC_EXECUTE

-

-


DATA[]

Table IT_0[1x1853]

FUNCTION-POOL=ERFCFORM=ARFC_DEST_SHIPDATA=DATA[]

Table reference: 0

TABH+ 0(20) = 0700000080222D20070000008022240800000000

TABH+ 20(20) = 0000000000000000000000010000073D00000030

TABH+ 40(16) = 04000002000013680008249081000000

store = 0x0700000080222D20

ext1 = 0x0700000080222408

shmId = 0 (0x00000000)

id = 0 (0x00000000)

label = 0 (0x00000000)

fill = 1 (0x00000001)

leng = 1853 (0x0000073D)

loop = 48 (0x00000030)

xtyp = TYPE#000079

occu = 8 (0x00000008)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 2 (cmpSingleMcmpR)

occu0 = 0

collHash = 0

groupCntl = 0

rfc = 1

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

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

tabi = 0x07000000802C7820

pghook = 0x0000000000000000

idxPtr = 0x0000000000000000

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 8 (0x00000008)

lineAlloc = 8 (0x00000008)

store_id = 4 (0x00000004)

shmIsReadOnly = 0 (0x00000000)

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

regHook = 0x0000000000000000

hsdir = 0x0000000000000000

ext2 = 0x0700000080222640

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

tabhBack = 0x07000000802225F0

delta_head = 0000000100000001CE0000000000000104000002000013A00000073D80A07DB80FFFFFFFA000000

pb_func = 0x0000000000000000

pb_handle = 0x0000000000000000

DATA

80C587060061471C48290466Q63CLNT140 00000001##############################

3343333333333334333333335334445333222222222222222222222233333333000000000000000000000000000000

8035870600614713482904661633CE4140000000000000000000000000000001000111081211110011130400231316

<%_L001>

???

??????

??????

QRFC_VERSION

6.30.060

32332333

6E30E060

ACT_QIN[]

Table[initial]

<%_L001>-ARFCBLCNT

???

??????

??????

USE_STOP

2

0

NCALL

00000001

33333333

00000001

DATA-ARFCLUWCNT

00000001

33333333

00000001

STATE[]

Table IT_1[1x506]

FUNCTION-POOL=ERFCFORM=ARFC_DEST_SHIPDATA=STATE[]

Table reference: 1

TABH+ 0(20) = 0700000080222E600700000080222E2800000000

TABH+ 20(20) = 000000010000000100000001000001FAFFFFFFFF

TABH+ 40(16) = 0400000200001598000A249081000000

store = 0x0700000080222E60

ext1 = 0x0700000080222E28

shmId = 0 (0x00000000)

id = 1 (0x00000001)

label = 1 (0x00000001)

fill = 1 (0x00000001)

leng = 506 (0x000001FA)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000089

occu = 10 (0x0000000A)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 2 (cmpSingleMcmpR)

occu0 = 0

collHash = 0

groupCntl = 0

rfc = 1

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

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

tabi = 0x07000000802CB220

pghook = 0x0000000000000000

idxPtr = 0x0000000000000000

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 10 (0x0000000A)

lineAlloc = 10 (0x0000000A)

store_id = 5 (0x00000005)

shmIsReadOnly = 0 (0x00000000)

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

regHook = 0x0000000000000000

hsdir = 0x0000000000000000

ext2 = 0x0700000080222DC8

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

tabhBack = 0x0700000080222D78

delta_head = 0000000100000002CD0000000000000204000002000015D0000001FA80A07DB800000001A000000

pb_func = 0x0000000000000000

pb_handle = 0x0000000000000000

STATE

80C587060061471C48290466Q63CLNT140 00000001SENDED IDOC_INBOUND_ASYNCHRON

3343333333333334333333335334445333222222222222222222222233333333544444224444544445445455444544

8035870600614713482904661633CE414000000000000000000000000000000135E4540094F3F9E2F5E4F139E382FE

RCV_SSTATE+0(506)

80C587060061471C48290466Q63CLNT140 00000001SENDED IDOC_INBOUND_ASYNCHRON

3343333333333334333333335334445333222222222222222222222233333333544444224444544445445455444544

8035870600614713482904661633CE414000000000000000000000000000000135E4540094F3F9E2F5E4F139E382FE

STATE+0(506)

80C587060061471C48290466Q63CLNT140 00000001SENDED IDOC_INBOUND_ASYNCHRON

3343333333333334333333335334445333222222222222222222222233333333544444224444544445445455444544

8035870600614713482904661633CE414000000000000000000000000000000135E4540094F3F9E2F5E4F139E382FE

TSTATE[]

Table IT_2[1x506]

FUNCTION=ARFC_EXECUTEDATA=TSTATE[]

Table reference: 2

TABH+ 0(20) = 07000000802CF8E0000000000000000000000000

TABH+ 20(20) = 000000020000000200000001000001FAFFFFFFFF

TABH+ 40(16) = 04000002000012C00010249401000000

store = 0x07000000802CF8E0

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 2 (0x00000002)

label = 2 (0x00000002)

fill = 1 (0x00000001)

leng = 506 (0x000001FA)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000076

occu = 16 (0x00000010)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 2 (cmpSingleMcmpR)

occu0 = 1

collHash = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

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

tabi = 0x07000000802CF938

pghook = 0x0000000000000000

idxPtr = 0x0000000000000000

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 16 (0x00000010)

lineAlloc = 16 (0x00000010)

store_id = 6 (0x00000006)

shmIsReadOnly = 0 (0x00000000)

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

regHook = Not allocated

hsdir = Not allocated

ext2 = Not allocated

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

tabhBack = Not allocated

delta_head = Not allocated

pb_func = Not allocated

pb_handle = Not allocated

PROG

SAPLERFC

5454454422222222222222222222222222222222

310C526300000000000000000000000000000000

%_DUMMY$$

2222

0000

QTRACE

2

0

SY-UZEIT

165050

333333

165050

TRC_STIME

165050

333333

165050

EXETIME

000000

333333

000000

-

-


No. 4 Ty. FUNCTION

Name ARFC_DEST_SHIP

-

-


SENDER_ID

auaplxr3d_D63_00

67676773654335332222222222222222

1510C8234F463F000000000000000000

ASTATE

22222222

00000000

RETUDATA

2

0

DATA[]

Table IT_0[1x1853]

STATE[]

Table IT_1[1x506]

SY-REPID

SAPLERFC

5454454422222222222222222222222222222222

310C526300000000000000000000000000000000

%_RESERV-QNAME

222222222222222222222222

000000000000000000000000

SY

###############################################################################,##############

0000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000

0002000000010009000000000000000000000000000100000001000000010000000000000000004C00000000000000

QRETSTATE

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

SAME_SYSTEM

2

0

USE_QUEUE

000000000000000000000000

2222222222222222222222222222222222222222222222222223333333333333333333333332222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

USE_QUEUE[]

Table[initial]

USE_QIN

2

0

SCREEN

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

%_ARCHIVE

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

FINISH

FINISH

44445422

69E93800

RETRY

RETRY

54555222

25429000

RSJOBINFO

00000000000000 ####

222222222222222222222222222222223333333333333322222222222222222222222222222222220000

000000000000000000000000000000000000000000000000000000000000000000000000000000000000

%_VIASELSCR

#

0

4

SY-XPROG

SAPLEDIN

5454444422222222222222222222222222222222

310C549E00000000000000000000000000000000

NO_RESTART

2

0

AUTO_FINISH

2

0

-

-


No. 3 Ty. FORM

Name ARFC_DEST_SHIP

-

-


SENDER_ID

auaplxr3d_D63_00

67676773654335332222222222222222

1510C8234F463F000000000000000000

SYST

###############################################################################,##############

0000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000

0002000000010009000000000000000000000000000100000001000000010000000000000000004C00000000000000

ARFCDATA

0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

ASTATE

22222222

00000000

%_RESERV

SAPMSUU0M 070

5454555342222222222222222222222222222222333222222222222222222222222222222222222222222222222222

310D3550D0000000000000000000000000000000070000000000000000000000000000000000000000000000000000

RETUDATA

2

0

DATA[]

Table IT_0[1x1853]

STATE[]

Table IT_1[1x506]

-

-


No. 2 Ty. FORM

Name REMOTE_FUNCTION_CALL

-

-


%_DUMMY$$

2222

0000

SY-REPID

SAPMSSY1

5454555322222222222222222222222222222222

310D339100000000000000000000000000000000

TYPE

3

0000

0003

-

-


No. 1 Ty. MODULE (PBO)

Name %_RFC_START

-

-


%_PRINT

000 0 ##

2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223200

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

RFCTYPE_INTERNAL

3

0000

0003

-

-


-

-


Internal notes

The termination occurred in the function "HandleRsqlErrors" of the SAP

Basis System, specifically in line 775 of the module

"//bas/640_REL/src/krn/runt/absapsql.c#17".

The internal operation just processed is "SQLS".

The internal session was started at 20071022165050.

-

-


-

-


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

=> File size limit = unlimited

=> Heap address = 0x1165206a0

=> Stack address = 0xfffffffffffb330

=> Stack low = 0xfffffffffffb330

=> Stack high = 0xffffffffffff6a0

=> Stack Trace:

AixStack() at 0x10002096c

CTrcStack2() at 0x100020a64

rabax_CStackSave__Fv() at 0x100153fcc

ab_rabax() at 0x100150dfc

HandleRsqlErrors__F9RsqlError9CloseMode() at 0x101429828

SqlsExecuteCall__FUcP11DynCallInfo() at 0x101427834

ab_jsqls__Fv() at 0x101421bfc

ab_extri__Fv() at 0x1003a2720

ab_xevent__FPCc() at 0x1008a4c6c

ab_dstep() at 0x1005bffc4

dynpmcal() at 0x100cfd418

dynppbo0() at 0x100cfaebc

dynprctl() at 0x100d04194

dynpen00() at 0x100c9d270

Thdynpen00() at 0x1000a2a50

TskhLoop() at 0x1000a725c

tskhstart() at 0x1000bc47c

DpMain() at 0x1015b4da8

nlsui_main() at 0x101587ea0

-

-


-

-


List of ABAP programs affected

-

-


Index

Ty.

Program

Group

Date

Time

Size

Lang.

-

-


0

Prg

SAPMSSY1

0

06.11.2003

20:53:07

18432

E

1

Prg

SAPLSRFC

1

12.11.2004

16:23:10

34816

E

2

Prg

SAPLERFC

2

12.09.2006

21:02:30

96256

E

3

Typ

ARFCRDATA

0

09.11.2000

14:04:16

6144

4

Typ

ARFCRSTATE

0

12.11.2004

15:51:55

5120

5

Typ

ARFCTID

0

04.04.1995

15:40:33

2048

6

Typ

ARFCRSTATE

0

12.11.2004

15:51:55

5120

7

Prg

SAPLSXAB

7

06.11.2003

20:53:05

6144

E

8

Typ

ARFCDATA

0

04.04.1995

15:40:32

4096

9

Prg

SAPLEDIN

9

12.09.2006

21:03:05

174080

E

10

Typ

EDI_DC40

0

15.07.1997

16:53:35

7168

11

Typ

EDI_DD40

0

09.07.1997

23:54:32

3072

12

Prg

CL_ABAP_CHAR_UTILITIES========CP

12

12.11.2004

16:20:49

11264

E

13

Typ

IDXIDOCINB

0

05.10.2001

14:50:51

1024

14

Prg

SAPLSUNI

14

12.09.2006

20:47:36

132096

E

15

Typ

TFDIR

0

29.07.1998

19:49:08

3072

16

Prg

SAPLSXMBCONF

16

12.09.2006

21:05:30

108544

E

17

Prg

IF_XMS_CONFIG=================IP

16

12.09.2006

21:05:30

14336

E

18

Typ

SXMSCONFVL

0

12.09.2006

00:03:33

3072

19

Typ

SXMSCONFDF

0

06.11.2003

20:37:59

3072

20

Prg

SAPLEDIU

20

12.09.2006

21:07:28

119808

E

21

Typ

EDICONFIG

0

29.01.1997

19:06:32

2048

22

Typ

EDIDD

0

19.01.1998

23:58:08

3072

23

Typ

EDI_DC40

0

15.07.1997

16:53:35

7168

24

Prg

SAPLEDICCMS

24

13.11.2000

14:15:24

11264

E

25

Prg

SAPLASTAT_TRIG

25

06.11.2003

20:53:00

11264

E

26

Typ

ASTAT_TYP2

0

10.11.1998

05:35:18

2048

27

Typ

ASTAT_TYP1

0

30.11.1998

15:54:16

2048

28

Typ

EDIDS

0

14.02.1998

16:58:37

5120

29

Typ

EDI_DD40

0

09.07.1997

23:54:32

3072

30

Prg

SAPLEDIJ

30

12.09.2006

21:07:28

803840

E

31

Typ

EDISDEF

0

06.11.2003

20:36:04

3072

32

Prg

SAPLALFA

32

06.11.2003

20:53:00

6144

E

33

Typ

TEDE2

0

05.06.1997

12:36:03

3072

34

Prg

SAPLEDIR

34

10.02.2004

10:47:34

56320

E

35

Prg

SAPLEDI1

35

12.09.2006

20:47:32

214016

E

36

Typ

EDIDS

0

14.02.1998

16:58:37

5120

37

Prg

SAPLEDI6

37

06.11.2003

20:53:01

178176

E

38

Typ

EDKP1

0

04.04.1995

15:50:45

2048

39

Typ

EDPP1

0

05.06.1997

12:33:33

3072

40

Typ

EDP21

0

05.06.1997

12:35:15

4096

41

Prg

SAPLBD11

41

12.09.2006

20:47:32

174080

E

42

Prg

SAPLEDI8

42

06.11.2003

21:51:16

139264

E

43

Prg

SAPLEDIM

43

12.09.2006

20:47:32

138240

E

44

Typ

EDI_IAPI04

0

05.06.1997

12:33:31

1024

45

Typ

EDBAS

0

06.11.2003

20:36:02

3072

46

Typ

TBD20

0

13.08.1997

13:56:03

3072

47

Typ

EDIMESSAGE

0

20.08.1998

10:52:49

2048

48

Typ

TBD30

0

24.09.1997

01:55:44

3072

49

Typ

TBD13

0

20.08.1998

11:28:07

2048

50

Typ

SWOTOBJID

0

04.05.1995

15:20:52

2048

51

Typ

TBD12

0

13.08.1997

13:55:59

2048

52

Typ

TBD14

0

05.06.1997

12:35:55

2048

53

Typ

EDIDS

0

14.02.1998

16:58:37

5120

54

Typ

TEDS1

0

05.06.1997

12:36:03

2048

55

Typ

T100

0

28.08.1997

09:04:45

2048

56

Typ

EDI_IAPI02

0

05.06.1997

12:33:31

3072

57

Typ

EDBAST

0

05.06.1997

12:34:46

2048

58

Typ

IDOCSYN

0

05.06.1997

12:35:24

3072

59

Typ

EDID4

0

12.08.1997

11:53:32

4096

60

Prg

SAPLSNR3

60

12.09.2006

20:51:51

45056

E

61

Typ

TNRO

0

12.09.2006

00:05:52

5120

62

Typ

BNRIV

0

14.02.1998

06:08:11

3072

63

Prg

/1BCDWBEN/SAPLSEN0002

63

27.01.2004

14:11:19

260096

E

64

Prg

SAPLSENA

64

12.11.2004

15:50:36

28672

E

65

Typ

EDID4

0

12.08.1997

11:53:32

4096

66

Prg

CX_SY_OPEN_SQL_DB=============CP

66

06.11.2003

21:33:04

9216

E

67

Typ

SCX_SRCPOS

0

09.11.2000

14:12:15

2048

68

Prg

CX_SY_OPEN_SQL_ERROR==========CP

68

06.11.2003

21:33:04

8192

E

69

Prg

CX_SY_SQL_ERROR===============CP

69

06.11.2003

21:33:04

8192

E

70

Prg

CX_DYNAMIC_CHECK==============CP

70

06.11.2003

21:33:04

8192

E

71

Prg

CX_ROOT=======================CP

71

06.11.2003

21:56:05

9216

E

72

Prg

CX_NO_CHECK===================CP

72

06.11.2003

21:33:04

8192

E

73

Prg

CX_SY_NO_HANDLER==============CP

73

06.11.2003

21:33:04

8192

E

74

Typ

EDIDC

0

14.02.1998

16:58:35

9216

75

Typ

SYST

0

04.12.2000

14:54:51

27648

76

Typ

EDIDS

0

14.02.1998

16:58:37

5120

77

Prg

%_CVIMTY

30

06.11.2003

21:51:29

26624

E

78

Prg

%_CSLIS

30

12.09.2006

21:06:41

68608

E

79

Typ

DTC_S_LAYO

0

04.12.2000

12:46:23

6144

80

Typ

EDIDC

0

14.02.1998

16:58:35

9216

81

Typ

RSJOBINFO

0

29.04.1992

14:52:25

3072

82

Typ

ARFCSDATA

0

09.11.2000

14:18:17

6144

83

Typ

ARFCSSTATE

0

12.11.2004

15:51:55

5120

-

-


-

-


Directory of Application Tables

-

-


Name Date Time Lngth

Val.

-

-


Program SAPMSSY1

-

-


SYST . . : : 00002404

000000000000000x09000000000000

-

-


Program SAPLERFC

-

-


RSJOBINFO . . : : 00000084

00000000000000

ARFCDATA . . : : 00001785

00000000000000000000000000000

ARFCRSTATE . . : : 00000506

80C587060061471C48290466Q63CLNT140 00

QRETSTATE . . : : 00000788

-

-


Program SAPLEDIN

-

-


RSJOBINFO . . : : 00000084

00000000000000

IDXIDOCINB . . : : 00000030

SRRELROLES . . : : 00000133

-

-


Program SAPLSUNI

-

-


TFDIR . . : : 00000094

SXMB_GET_XMB_USE SAPLSXMBCONF

-

-


Program SAPLEDIJ

-

-


EDISDEF . . : : 00000111

E1BPADRML 004E2BPADRML004

-

-


Program SAPLEDI1

-

-


TEDS1 . . : : 00000064

64 2I

T100 . . : : 00000097

EB1 005& &, &, &.

-

-


Program SAPLEDI6

-

-


EDP21 . . : : 00000169

140D63CLNT070LS USERCLONE BAPI

EDPP1 . . : : 00000102

140D63CLNT070LS A US Q63CLNT140

-

-


Program SAPLBD11

-

-


TBD14 . . : : 00000040

USERCLONE

TBD12 . . : : 00000090

-

-


Program SAPLEDIM

-

-


EDBAS . . : : 00000176

USERCLONE01 SAP

EDBAST . . : : 00000091

USERCLONE05 ECreate User with Template i

IDOCSYN . . : : 00000116

USERCLONE05 0042E1BPUSATAB

-

-


Program SAPLSNR3

-

-


TNRO . . : : 00000466

EDIDOC

BNRIV . . : : 00000106

140EDIDOC 0100000000000000000001 9999999999999

-

-


-

-


ABAP Control Blocks (CONT)

-

-


Index

Name

Fl

PAR0

PAR1

PAR2

PAR3

PAR4

PAR5

PAR6

SourceCde

Line

-

-


7138

FUNC

FF

0000

LEDI1F09

97

7139

CMPS

20

00CA

0157

0157

LEDI1F09

102

7141

BRAF

02

0006

LEDI1F09

102

7142

perf

00

0059

LEDI1F09

103

7143

PERP

80

0003

LEDI1F09

103

7144

PERP

80

008D

LEDI1F09

103

7145

PERP

80

008E

LEDI1F09

103

7146

PERP

80

8002

LEDI1F09

103

7147

SQLS

0B

0000

LEDI1F09

108

7148

SQLS

06

00B9

LEDI1F09

108

7149

PAR1

00

0110

LEDI1F09

108

7150

SQLS

39

0041

LEDI1F09

108

>>>>>

SQLS

0F

008D

LEDI1F09

108

7152

perf

00

005B

LEDI1F09

110

7153

PERP

80

0004

LEDI1F09

110

7154

PERP

80

008D

LEDI1F09

110

7155

PERP

80

008E

LEDI1F09

110

7156

PERP

80

8002

LEDI1F09

110

7157

PERP

80

8000

LEDI1F09

110

7158

perf

00

005A

LEDI1F09

113

-

-


Accepted Solutions (0)

Answers (1)

Answers (1)

JPReyes
Active Contributor
0 Kudos

Hi Rohan,

Welcome to SDN!

This error means that you're trying to duplicate a record on the DB... check the IDOC number ranges... it might help

Regards

Juan

Please reward with points if helpful

Former Member
0 Kudos

I did do this before and it didn't help, at least initially. I thought I might increase it further and after testing I found it has been working for the last 45 mins. Not sure if this was the fix or someone else fixed without my knowledge but either way it is working now, thanks.