DBIF_SETG_SQL_ERROR.

Hi Gurus,
I am getting this error with the short dump(in ST22)
DBIF_SETG_SQL_ERROR.
I have attached the details of the dump.
You help on this would be highly appriciated.
Thanks & Regards
S Kumar
Runtime Errors         DBIF_SETG_SQL_ERROR
Date and Time          27.11.2008 04:04:33
Short text
SQL error occurred when accessing table.
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.
How to correct the error
Database error text........: "ORA-03106: fatal two-task communication protocol
error"
Internal call code.........: "[SETG/GET /SMW3_BDOC2 ]"
Please check the entries in the system log (Transaction SM21).
If the error occures in a non-modified SAP program, you may be able to
find an interim solution in an SAP Note.
If you have access to SAP Notes, carry out a search with the following
keywords:
"DBIF_SETG_SQL_ERROR" " "
"CL_SMW_BDOCSTORE==============CP" or "CL_SMW_BDOCSTORE==============CM00I"
"_GET_BODY_EXTIMPORTDDIC"
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.
Internal call code.........: "[SETG/GET /SMW3_BDOC2 ]"
Please check the entries in the system log (Transaction SM21).
If the error occures in a non-modified SAP program, you may be able to
find an interim solution in an SAP Note.
If you have access to SAP Notes, carry out a search with the following
keywords:
"DBIF_SETG_SQL_ERROR" " "
"CL_SMW_BDOCSTORE==============CP" or "CL_SMW_BDOCSTORE==============CM00I"
"_GET_BODY_EXTIMPORTDDIC"
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... "awcrmsap1"
Network address...... "10.23.82.15"
Operating system..... "AIX"
Release.............. "5.3"
Hardware type........ "00CA976B4C00"
Character length.... 8 Bits
Pointer length....... 64 Bits
Work process number.. 1
Shortdump setting.... "full"
Database server... "awcrmsap1"
Database type..... "ORACLE"
Database name..... "CRI"
Database user ID.. "SAPCRI"
Char.set.... "en_US.ISO8859-1"
SAP kernel....... 700
created (date)... "Nov 13 2007 20:48:35"
create on........ "AIX 2 5 005DD9CD4C00"
Database version. "OCI_102 (10.2.0.2.0) "
Patch level. 135
Patch text.. " "
Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
SAP database version. 700
Operating system..... "AIX 1 5, AIX 2 5, AIX 3 5, AIX 1 6"
Memory consumption
Roll.... 16128
EM...... 4189920
Heap.... 0
Page.... 0
MM Used. 1561248
MM Free. 2626144
User and Transaction
Client.............. 420
User................ "RFC01"
Language Key........ "E"
Transaction......... " "
Transactions ID..... "4927AD2387B100E8E10080000A17520F"
Program............. "CL_SMW_BDOCSTORE==============CP"
Screen.............. "SAPMSSY1 3004"
Screen Line......... 2
Information on caller of Remote Function Call (RFC):
System.............. "CRI"
Database Release.... 700
Kernel Release...... 700
Connection Type..... 3 (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.)
Call Type........... "synchron and transactional (emode 0, imode 0)"
Inbound TID.........."0A17520F0061492D20DA6CD6"
Inbound Queue Name..."CSAIBASE0000000000"
Outbound TID........." "
Outbound Queue Name.." "
Client.............. 420
User................ "RFC01"
Transaction......... " "
Call Program........."SAPLIRFC"
Function Module..... "TRFC_QIN_DEST_SHIP"
Call Destination.... "awcrmsap1_CRI_00"
Source Server....... "awcrmsap1_CRI_00"
Source IP Address... "10.23.82.1**"
Additional information on RFC logon:
Trusted Relationship " "
Logon Return Code... 0
Trusted Return Code. 0
Note: For releases < 4.0, information on the RFC caller are often
only partially available.
Information on where terminated
Termination occurred in the ABAP program "CL_SMW_BDOCSTORE==============CP" -
in "_GET_BODY_EXTIMPORTDDIC".
The main program was "SAPMSSY1 ".
In the source code you have the termination point in line 26
of the (Include) program "CL_SMW_BDOCSTORE==============CM00I".
Source Code Extract
Line
SourceCde
1
METHOD getbody_extimportddic .
2
DATA lv_bdoc_id            TYPE smog_tid.
3
DATA lv_client             TYPE mandt.
4
5
IF im_client_specified IS INITIAL.
6
lv_client = sy-mandt.
7
ELSE.
8
lv_client = im_pers_header-client.
9
ENDIF.
10
11
IF im_pers_header-bdoc_id IS INITIAL.
12
RAISE invalid_id.
13
ENDIF.
14
15
Check if anything is on the database for the given ID
16
SELECT SINGLE bdoc_id FROM smw3_bdoc2 CLIENT SPECIFIED
17
INTO (lv_bdoc_id)
18
WHERE CLIENT eq lv_client
19
AND bdoc_id EQ im_pers_header-bdoc_id.
20
21
IF sy-subrc NE 0.
22
RAISE invalid_id.
23
ENDIF.
24
25
CATCH SYSTEM-EXCEPTIONS import_mismatch_errors = 2.
>>>>>
IMPORT bdoc_body_ext = ex_body_ext
27
FROM DATABASE smw3_bdoc2(00)
28
CLIENT lv_client
29
ID im_pers_header-bdoc_id
30
ACCEPTING PADDING.
31
ENDCATCH.
32
IF sy-subrc EQ 2.                    "Not readable
33
IF im_pers_header-stored_xml IS INITIAL.
34
MESSAGE e040(smo8) WITH im_pers_header-bdoc_id
35
RAISING bdoc_cannot_be_read.
36
    BDoc &1 cannot be read anymore due to structure changes.
37
ENDIF.
38
ENDIF.
39
ENDMETHOD.                    "_GET_BODY
Contents of system fields
Name
Val.
SY-SUBRC
0
SY-INDEX
1
SY-TABIX
0
SY-DBCNT
1
SY-FDPOS
0
SY-LSIND
0
SY-PAGNO
0
SY-LINNO
1
SY-COLNO
1
SY-PFKEY
SY-UCOMM
SY-TITLE
CPIC and RFC Control
SY-MSGTY
SY-MSGID
SY-MSGNO
000
SY-MSGV1
SY-MSGV2
SY-MSGV3
SY-MSGV4
SY-MODNO
0
SY-DATUM
20081127
SY-UZEIT
040433
SY-XPROG
SAPLSMW3_MFLOW_QUEUEHANDLER
SY-XFORM
SMW3_MFLOW_QPROCESSMBDOC
Active Calls/Events
No.   Ty.          Program                             Include                             Line
Name
15 METHOD       CL_SMW_BDOCSTORE==============CP    CL_SMW_BDOCSTORE==============CM00I    26
CL_SMW_BDOCSTORE=>_GET_BODY_EXTIMPORTDDIC
14 METHOD       CL_SMW_BDOCSTORE==============CP    CL_SMW_BDOCSTORE==============CM00A     7
CL_SMW_BDOCSTORE=>_GET_BODY_EXT
13 METHOD       CL_SMW_BDOCSTORE==============CP    CL_SMW_BDOCSTORE==============CM002    64
CL_SMW_BDOCSTORE=>GET_BDOC
12 METHOD       CL_SMW_MFLOW==================CP    CL_SMW_MFLOW==================CM00E   208
CL_SMW_MFLOW=>__OUTBOUND_PROCESSAFTERQRFC
11 FUNCTION     SAPLSMW3_MFLOW_QUEUEHANDLER         LSMW3_MFLOW_QUEUEHANDLERU01            15
SMW3_MFLOW_QPROCESSMBDOC
10 FORM         SAPLSMW3_MFLOW_QUEUEHANDLER         LSMW3_MFLOW_QUEUEHANDLERU01             1
SMW3_MFLOW_QPROCESSMBDOC
9 FORM         SAPMSSY1                            SAPMSSY1                              271
XAB_RUN_DRIVER
8 FUNCTION     SAPLSXAB                            LSXABU01                                9
RFC_RUN_XAB_DRIVER
7 FUNCTION     SAPLERFC                            LERFCU01                              115
ARFC_EXECUTE
6 FUNCTION     SAPLERFC                            LERFCU02                              386
ARFC_DEST_SHIP
5 FORM         SAPLERFC                            LERFCU10                              195
SELECT_DATA
4 FUNCTION     SAPLERFC                            LERFCU10                               39
TRFC_QIN_DEST_SHIP
3 FORM         SAPLERFC                            LERFCU10                                1
TRFC_QIN_DEST_SHIP
2 FORM         SAPMSSY1                            SAPMSSY1                               85
REMOTE_FUNCTION_CALL
1 MODULE (PBO) SAPMSSY1                            SAPMSSY1                               30
%_RFC_START
Chosen variables
Name
Val.
No.      15 Ty.          METHOD
Name  CL_SMW_BDOCSTORE=>_GET_BODY_EXTIMPORTDDIC
IM_PERS_HEADER
420492D37C420470061E10080000A17520FCRM_IBASE_MESS            I03 MO1
3333334334333333333433333333433333445454445454455222222222222433244322222222222222222222222222
4204924373420470061510080000117520632DF92135FD5330000000000009030DF100000000000000000000000000
IM_CLIENT_SPECIFIED
2
0
EX_BODY_EXT
####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿ
0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FF
0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FF
SY-REPID
CL_SMW_BDOCSTORE==============CP
4455455444455454333333333333334522222222
3CF3D7F24F334F25DDDDDDDDDDDDDD3000000000
LV_CLIENT
420
333
420
IM_PERS_HEADER-BDOC_ID
492D37C420470061E10080000A17520F
33343343333333334333333334333334
49243734204700615100800001175206
%_DUMMY$$
2222
0000
LV_BDOC_ID
492D37C420470061E10080000A17520F
33343343333333334333333334333334
49243734204700615100800001175206
SY-SUBRC
0
0000
0000
SYST-REPID
CL_SMW_BDOCSTORE==============CP
4455455444455454333333333333334522222222
3CF3D7F24F334F25DDDDDDDDDDDDDD3000000000
SMW3_BDOC2
42000492D37C420470061E10080000A17520F   ######################################################
3333333343343333333334333333334333334222000000000000000000000000000000000000000000000000000000
4200049243734204700615100800001175206000000000000000000000000000000000000000000000000000000000
SMW3_BDOC2-CLUSTR
0
00
00
SY-UZEIT
040433
333333
040433
SY-TABIX
0
0000
0000
IM_PERS_HEADER-STORED_XML
2
0
SY-XFORM
SMW3_MFLOW_QPROCESSMBDOC
545354444555554445544444222222
3D73FD6CF7F102F3533D24F3000000
SY-MSGID
22222222222222222222
00000000000000000000
LS_SMW3BDOCIF
2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
SPACE
2
0
SY-MSGNO
000
333
000
No.      14 Ty.          METHOD
Name  CL_SMW_BDOCSTORE=>_GET_BODY_EXT
IM_PERS_HEADER
420492D37C420470061E10080000A17520FCRM_IBASE_MESS            I03 MO1
3333334334333333333433333333433333445454445454455222222222222433244322222222222222222222222222
4204924373420470061510080000117520632DF92135FD5330000000000009030DF100000000000000000000000000
IM_CLIENT_SPECIFIED
2
0
EX_BODY_EXT
####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿ
0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FF
0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FF
IM_PERS_HEADER-STORED_XML
2
0
SY-MSGV1
22222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000
<%_TABLE_SMW3_BDOC>
%_SPACE
2
0
SY-DATUM
20081127
33333333
20081127
No.      13 Ty.          METHOD
Name  CL_SMW_BDOCSTORE=>GET_BDOC
BDOC_ID
492D37C420470061E10080000A17520F
33343343333333334333333334333334
49243734204700615100800001175206
GET_BDOC_HEADER
2
0
GET_BODY
X
5
8
GET_BODY_EXT
X
5
8
GET_ERRORS
2
0
GET_RECEIVERS
2
0
BDOC_HEADER
492D37C420470061E10080000A17520FCRM_IBASE_MESS            I03 MO1
3334334333333333433333333433333445454445454455222222222222433244322222222222222222222222222222
4924373420470061510080000117520632DF92135FD5330000000000009030DF100000000000000000000000000000
PERS_BDOC_HEADER
420492D37C420470061E10080000A17520FCRM_IBASE_MESS            I03 MO1
3333334334333333333433333333433333445454445454455222222222222433244322222222222222222222222222
4204924373420470061510080000117520632DF92135FD5330000000000009030DF100000000000000000000000000
BDOC_BODY
Ò#######Ñ#######Ð#######Ï#######Î#######Í#######Ì#######Ë#######Ê#######É#######
D0000000D0000000D0000000C0000001C0000001C0000001C0000001C0000001C0000001C0000001
2000000D1000000E0000000FF0000000E0000001D0000002C0000003B0000004A000000590000006
BDOC_BODY_EXT
####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿ
0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FF
0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FF
BDOC_ERRORS
Table[initial]
BDOC_RECEIVERS
Table[initial]
No.      12 Ty.          METHOD
Name  CL_SMW_MFLOW=>__OUTBOUND_PROCESSAFTERQRFC
HEADER
420492D37C420470061E10080000A17520FCRM_IBASE_MESS            I02 MO1
3333334334333333333433333333433333445454445454455222222222222433244322222222222222222222222222
4204924373420470061510080000117520632DF92135FD5330000000000009020DF100000000000000000000000000
LV_DUMMY
2
0
<FS_MESSAGE_EXT>
####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿÿÿ####ÿÿ
0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FF
0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FF
LV_HEADER-DDIC2
CRM_IBA_MESSAGE
454544454455444222222222222222
32DF921FD533175000000000000000
SYST-REPID
CL_SMW_MFLOW==================CP
4455455444453333333333333333334522222222
3CF3D7FD6CF7DDDDDDDDDDDDDDDDDD3000000000
<FS_MESSAGE>
Ò#######Ñ#######Ð#######Ï#######Î#######Í#######Ì#######Ë#######Ê#######É#######
D0000000D0000000D0000000C0000001C0000001C0000001C0000001C0000001C0000001C0000001
2000000D1000000E0000000FF0000000E0000001D0000002C0000003B0000004A000000590000006
LV_HEADER-BDOC_STATE
I03
433
903
CL_SMW_FLOW=>C_BDOCSTATE_ERRUNREADABLE
E03
433
503
SY-MSGV4
22222222222222222222222222222222222222222222222222
00000000000000000000000000000000000000000000000000
SCREEN
2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
%_SPACE
2
0
HEADER-BDOC_ID
492D37C420470061E10080000A17520F
33343343333333334333333334333334
49243734204700615100800001175206
LV_GET_EXTENSION
X
5
8
%_DUMMY$$
2222
0000
SMWM_END_KEYGEN
6
0000
0006
SY-REPID
CL_SMW_MFLOW==================CP
4455455444453333333333333333334522222222
3CF3D7FD6CF7DDDDDDDDDDDDDDDDDD3000000000
SMWM_START_BULK_CDB
7
0000
0007
SY-MSGNO
000
333
000
SY-SUBRC
0
0000
0000
No.      11 Ty.          FUNCTION
Name  SMW3_MFLOW_QPROCESSMBDOC
HEADER
420492D37C420470061E10080000A17520FCRM_IBASE_MESS            I02 MO1
3333334334333333333433333333433333445454445454455222222222222433244322222222222222222222222222
4204924373420470061510080000117520632DF92135FD5330000000000009020DF100000000000000000000000000
%_VIASELSCR
0
4
%_DUMMY$$
2222
0000
CL_SMW_FLOW=>C_BDOCSTATE_INT_UPD
I04
433
904
SYST-REPID
SAPLSMW3_MFLOW_QUEUEHANDLER
5454545354444555545444444452222222222222
310C3D73FD6CF7F1555581E4C520000000000000
SY-REPID
SAPLSMW3_MFLOW_QUEUEHANDLER
5454545354444555545444444452222222222222
310C3D73FD6CF7F1555581E4C520000000000000
SY-SUBRC
0
0000
0000
SCREEN
2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
No.      10 Ty.          FORM
Name  SMW3_MFLOW_QPROCESSMBDOC
%_%_HEADER
420492D37C420470061E10080000A17520FCRM_IBASE_MESS            I02 MO1
3333334334333333333433333333433333445454445454455222222222222433244322222222222222222222222222
4204924373420470061510080000117520632DF92135FD5330000000000009020DF100000000000000000000000000
No.       9 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
SMW3_MFLOW_QPROCESSMBDOC
545354444555554445544444222222
3D73FD6CF7F102F3533D24F3000000
IF_FOUND
0
0000
0000
SY-XPROG
SAPLSMW3_MFLOW_QUEUEHANDLER
5454545354444555545444444452222222222222
310C3D73FD6CF7F1555581E4C520000000000000
%_SPACE
2
0
No.       8 Ty.          FUNCTION
Name  RFC_RUN_XAB_DRIVER
NEW_FUNCTION
222222222222222222222222222222
000000000000000000000000000000
PROGRAM
SAPLERFC
5454454422222222222222222222222222222222
310C526300000000000000000000000000000000
%_VIASELSCR
0
4
SY-XPROG
SAPLSMW3_MFLOW_QUEUEHANDLER
5454545354444555545444444452222222222222
310C3D73FD6CF7F1555581E4C520000000000000
SYST-REPID
SAPLSXAB
5454554422222222222222222222222222222222
310C381200000000000000000000000000000000
No.       7 Ty.          FUNCTION
Name  ARFC_EXECUTE
L_ACTION_VALUE
2
0
%_DUMMY$$
2222
0000
DATA[]
Table IT_2[1x1853]
FUNCTION=TRFC_QIN_DEST_SHIPDATA=SDATA
Table reference: 2
TABH+  0(20) = 0700000069476A70070000006940141800000000
TABH+ 20(20) = 0000000200000002000000010000073D00000048
TABH+ 40(16) = 0400000100000F700008249401800000
store        = 0x0700000069476A70
ext1         = 0x0700000069401418
shmId        = 0     (0x00000000)
id           = 2     (0x00000002)
label        = 2     (0x00000002)
fill         = 1     (0x00000001)
leng         = 1853  (0x0000073D)
loop         = 72    (0x00000048)
xtyp         = TYPE#000060
occu         = 8     (0x00000008)
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         = 0x07000000694DDD80
pgHook       = 0x0000000000000000
idxPtr       = 0x0000000000000000
shmTabhSet   = 0x0000000000000000
id           = 5     (0x00000005)
refCount     = 0     (0x00000000)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 8     (0x00000008)
lineAlloc    = 8     (0x00000008)
shmVersId    = 0     (0x00000000)
shmRefCount  = 1     (0x00000001)
>>>>> 1st level extension part <<<<<
regHook      = 0x0000000000000000
collHook     = 0x0000000000000000
ext2         = 0x0700000069476AC8
>>>>> 2nd level extension part <<<<<
tabhBack     = 0x0700000069476A20
delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
pb_func      = 0x0000000000000000
pb_handle    = 0x0000000000000000
DATA
0A17520F0061492D20DA6CD6NONE                            00000102##############################
3433333433333334334434434444222222222222222222222222222233333333000000000000000000000000000000
011752060061492420416346EFE5000000000000000000000000000000000102000111081211110011130400231316
<%_L001>
QRFC_VERSION
6.30.060
32332333
6E30E060
ACT_QIN
000000000000000000000000
2222222222222222222222222222222222222222222222222223333333333333333333333332222222222222222222
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
<%_L001>-ARFCBLCNT
USE_STOP
2
0
ARFC_CNTL-LINNO
1
0000
0001
NCALL
00000102
33333333
00000102
DATA-ARFCLUWCNT
00000102
33333333
00000102
STATE[]
Table IT_1[1x506]
FUNCTION-POOL=ERFCFORM=TRFC_QIN_DEST_SHIPDATA=%_%_STATE
Table reference: 1
TABH+  0(20) = 07000000694769C8070000006947699000000000
TABH+ 20(20) = 000000010000000100000001000001FAFFFFFFFF
TABH+ 40(16) = 04000001000011D80010249481800000
store        = 0x07000000694769C8
ext1         = 0x0700000069476990
shmId        = 0     (0x00000000)
id           = 1     (0x00000001)
label        = 1     (0x00000001)
fill         = 1     (0x00000001)
leng         = 506   (0x000001FA)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000071
occu         = 16    (0x00000010)
access       = 1     (ItAccessStandard)
idxKind      = 0     (ItIndexNone)
uniKind      = 2     (ItUniqueNon)
keyKind      = 1     (default)
cmpMode      = 2     (cmpSingleMcmpR)
occu0        = 1
groupCntl    = 0
rfc          = 1
unShareable  = 0
mightBeShared = 0
sharedWithShmTab = 0
isShmLockId  = 0
gcKind       = 0
isUsed       = 1
isCtfyAble   = 1
>>>>> Shareable Table Header Data <<<<<
tabi         = 0x07000000694D8F70
pgHook       = 0x0000000000000000
idxPtr       = 0x0000000000000000
shmTabhSet   = 0x0000000000000000
id           = 4     (0x00000004)
refCount     = 0     (0x00000000)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 16    (0x00000010)
lineAlloc    = 16    (0x00000010)
shmVersId    = 0     (0x00000000)
shmRefCount  = 1     (0x00000001)
>>>>> 1st level extension part <<<<<
regHook      = 0x0000000000000000
collHook     = 0x0000000000000000
ext2         = 0x0700000069476930
>>>>> 2nd level extension part <<<<<
tabhBack     = 0x07000000694768E0
delta_head   = 0000000100000002CD000000000000020400000100000598000001FA80A68C5C00000001A000000
pb_func      = 0x0000000000000000
pb_handle    = 0x0000000000000000
STATE
0A17520F0061492D20DA6CD6NONE                            00000102SENDED  SMW3_MFLOW_QPROCESSMBD
3433333433333334334434434444222222222222222222222222222233333333544444225453544445555544455444
011752060061492420416346EFE500000000000000000000000000000000010235E454003D73FD6CF7F102F3533D24
RCV_SSTATE+0(506)
0A17520F0061492D20DA6CD6NONE                            00000102SENDED  SMW3_MFLOW_QPROCESSMBD
3433333433333334334434434444222222222222222222222222222233333333544444225453544445555544455444
011752060061492420416346EFE500000000000000000000000000000000010235E454003D73FD6CF7F102F3533D24
STATE+0(506)
0A17520F0061492D20DA6CD6NONE                            00000102SENDED  SMW3_MFLOW_QPROCESSMBD
3433333433333334334434434444222222222222222222222222222233333333544444225453544445555544455444
011752060061492420416346EFE500000000000000000000000000000000010235E454003D73FD6CF7F102F3533D24
TSTATE[]
Table IT_10[1x506]
FUNCTION=ARFC_EXECUTEDATA=TSTATE[]
Table reference: 9
TABH+  0(20) = 070000006950D1E0000000000000000000000000
TABH+ 20(20) = 000000090000000A00000001000001FAFFFFFFFF
TABH+ 40(16) = 04000001000011D80010249401800000
store        = 0x070000006950D1E0
ext1         = 0x0000000000000000
shmId        = 0     (0x00000000)
id           = 9     (0x00000009)
label        = 10    (0x0000000A)
fill         = 1     (0x00000001)
leng         = 506   (0x000001FA)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000071
occu         = 16    (0x00000010)
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         = 0x070000006950DA70
pgHook       = 0x0000000000000000
idxPtr       = 0x0000000000000000
shmTabhSet   = 0x0000000000000000
id           = 13    (0x0000000D)
refCount     = 0     (0x00000000)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 16    (0x00000010)
lineAlloc    = 16    (0x00000010)
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
%_TIME_CONFIRMED
001000
333333
001000
PROG
SAPLERFC
5454454

I think you should report this to OSS.
Rob

Similar Messages

  • DBIF_SETG_SQL_ERROR - after Upgrade to 10.2.0.2

    After Upgrade from Oracle 9.2.0.7 to Oracle 10.2.0.2
    i have the Problem that the User: <SID>adm cannot use brtools for example brsapce to extend a tablespace
    exec(): 0509-036 Cannot load program /usr/sap/NT1/SYS/exe/run/brspace because of the following errors:
            0509-150   Dependent module libclntsh.a(shr.o) could not be loaded.
            0509-022 Cannot load module libclntsh.a(shr.o).
            0509-026 System error: A file or directory in the path name does not exist.
    System:    AIX 5.3 TL6 SP7 (5300-06-07-0818)
    Database: Oracle 10.2.0.2
    SAP:        Enterprise Kernel 6.40 Patch 240
    DB Client Lib: OCI_920
    DB Releases: ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0..
    DBSL Version: 640.00
    DBSL Patch Level: 220
      SAP_BASIS 620 0064 SAPKB62064
    Brtools 7.00 (33) from: DBATL700O10_33-20000979.SAR
    On the SAP-System i can see in Transaction: st22: DBIF_SETG_SQL_ERROR, DBIF_RSQL_ERROR, DBIF_NTAB_SQL_ERROR
    but if i use the user ora<SID> brtools work for extend tablespace
    here are the ENV of the both users:
    st1adm
    st1adm> env
    _=/usr/bin/env
    ESCDELAY=5000
    LANG=en_US
    THREAD=NOPS
    LOGIN=st1adm
    ORACLE_PSRV=st1
    PATH=/oracle/st1/1020_64/bin:.:/home/st1adm:/usr/sap/st1/SYS/exe/run:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin:/usr/java14/jre/bin:/usr/java14/bin
    NLS_LANG=AMERICAN_AMERICA.WE8DEC
    ORACLE_BASE=/oracle
    LC__FASTMSG=true
    TLS=/hntsp1/tls
    EDITOR=vi
    HISTFILE=/home/st1adm/.sh_history
    LOGNAME=st1adm
    RFCEXEC_SEC_FILE_PATH=/sapmnt/st1/exe
    MAIL=/usr/spool/mail/st1adm
    dbs_ora_tnsname=st1
    ORACLE_SID=st1
    LOCPATH=/usr/lib/nls/loc
    st1adm>
    DB_SID=st1
    DIR_LIBRARY=/usr/sap/st1/SYS/exe/run
    USER=st1adm
    DSM_LOG=/usr/tivoli/tsm/client/ba/log
    SHR=/hntmnt/share
    AUTHSTATE=files
    DBS_LIBPATH_EXT=/oracle/client/instantclient_10202_V2
    TNS_ADMIN=/usr/sap/trans
    ORA_NLS10=/oracle/st1/1020_64/nls/data
    DISPLAY=10.1.1.244:0.0
    dbs_ora_schema=SAPR3
    SHELL=/bin/ksh
    ODMDIR=/etc/objrepos
    SECUDIR=/usr/sap/st1/DVEBMGS00/sec
    HISTSIZE=200
    SAPDATA_HOME=/oracle/st1
    HOME=/home/st1adm
    NSORDER=local,bind
    ADSM=/usr/tivoli/tsm/client/ba
    FCEDIT=vi
    TERM=xterm
    MAILMSG=[YOU HAVE NEW MAIL]
    DSM_DIR=/usr/tivoli/tsm/client/ba/bin
    ORACLE_HOME=/oracle/st1/1020_64
    PWD=/sapmnt/st1/exe
    TZ=NFT-1DFT,M3.5.0,M10.5.0
    dbms_type=ora
    ENV=/home/st1adm/.kshrc
    SAPSYSTEMNAME=st1
    LIBRARY_PATH=/oracle/st1/1020_64
    MAILCHECK=60
    A__z=! LOGNAME="*MAILCHECK
    NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat
    LIBPATH=/usr/lib:/lib:/usr/sap/st1/SYS/exe/run:/oracle/st1/1020_64/lib32:/oracle/client/instantclient_10202_V2
    orast1
    oraST1> env
    _=/bin/env
    ESCDELAY=5000
    LANG=en_US
    THREAD=NOPS
    LOGIN=oraST1
    STAGING_AREA=/oracle/stage/1020_64
    ORACLE_PSRV=ST1
    PATH=/oracle/ST1/1020_64/bin:/usr/sap/ST1/SYS/exe/run:/bin:/usr/bin:/usr/sbin:/usr/bin/X11:/usr/ucb:/usr/ccs/bin:/usr/local/bin:/etc:.
    SAPBACKUP=/oracle/ST1/sapbackup
    NLS_LANG=AMERICAN_AMERICA.US7ASCII
    ORACLE_BASE=/oracle
    LC__FASTMSG=true
    TLS=/hntsp1/tls
    EDITOR=vi
    HISTFILE=/oracle/ST1/.sh_history
    LOGNAME=oraST1
    SAPTRACE=/oracle/ST1/saptrace
    MAIL=/usr/spool/mail/oraST1
    ORACLE_SID=ST1
    LOCPATH=/usr/lib/nls/loc
    oraST1>
    DIR_LIBRARY=/usr/sap/ST1/SYS/exe/run
    USER=oraST1
    DSM_LOG=/usr/lpp/adsm/log
    SHR=/hntmnt/share
    AUTHSTATE=files
    LANGUAGE=American_America.US7ASCII
    TNS_ADMIN=/usr/sap/trans
    CC=/oracle/ST1/1020_64/bin/oraxlc
    DISPLAY=10.1.1.244:0.0
    SHELL=/bin/ksh
    ODMDIR=/etc/objrepos
    HISTSIZE=200
    SAPDATA_HOME=/oracle/ST1
    HOME=/oracle/ST1
    SAPARCH=/oracle/ST1/saparch
    NSORDER=local,bind
    cc=/oracle/ST1/1020_64/bin/oraxlc
    ADSM=/usr/tivoli/tsm/client/ba
    FCEDIT=vi
    TERM=xterm
    MAILMSG=[YOU HAVE NEW MAIL]
    DSM_DIR=/usr/tivoli/tsm/client/ba/bin
    ORACLE_HOME=/oracle/ST1/1020_64
    PWD=/oracle/ST1
    TZ=NFT-1DFT,M3.5.0,M10.5.0
    dbms_type=ORA
    ENV=/oracle/ST1/.kshrc
    SAPREORG=/oracle/ST1/sapreorg
    AIXTHREAD_SCOPE=S
    SAPSYSTEMNAME=ST1
    LIBRARY_PATH=/oracle/ST1/1020_64
    MAILCHECK=60
    A__z=! LOGNAME="*MAILCHECK
    NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat
    LIBPATH=/usr/lib:/lib:/usr/sap/ST1/SYS/exe/run:/oracle/ST1/1020_64/lib
    the following oracle patches are installed:
    Interim patches (18) :
    Patch  5496862      : applied on Mon Sep 15 11:03:24 CEST 2008
       Created on 25 Oct 2006, 12:12:14 hrs PST8PDT
       Bugs fixed:
         5496862
    Patch  7021805      : applied on Mon Sep 15 10:54:55 CEST 2008
       Created on 13 May 2008, 09:48:14 hrs PST8PDT
       Bugs fixed:
         6151963, 5245494, 6321245, 6488148, 6077514, 6007259, 6159522, 4904838
         4708389, 5763245, 5984705, 5380055, 5882954, 6350462, 4878299, 6239971
         4698023, 6370247, 6167221, 4722645, 5705257, 5838613, 6147372, 6618120
         5762598, 5043097, 5397482, 6082745, 5949981, 5033476, 5690241, 5547058
         5126551, 5089444, 6011182, 5966822, 5997892, 6134565, 5884780, 6051211
         5944076, 4724074, 4712638, 6070954, 4483240, 5449488, 6251917, 5483301
         6120483, 5718007, 5381446, 7021805, 5057695, 6740811, 5548510, 5680702
         5741121, 4273361, 5766310, 4372359, 5705630, 3901785, 6626018, 5131645
         4567767, 6660162, 5399282, 5724540, 5113934, 6087237, 5990716, 5649765
         6062266, 4648181, 6316993, 5129407, 6819865, 5172444, 5084239, 5976822, 5694984
    Patch  6826661      : applied on Mon Sep 15 10:54:24 CEST 2008
       Created on 22 Feb 2008, 11:02:29 hrs PST8PDT
       Bugs fixed:
         6826661
    Patch  5895190      : applied on Mon Sep 15 10:53:49 CEST 2008
       Created on 24 Apr 2008, 05:19:12 hrs PST8PDT
       Bugs fixed:
         5895190
    Patch  6455161      : applied on Mon Sep 15 10:53:24 CEST 2008
       Created on 10 Apr 2008, 06:04:09 hrs PST8PDT
       Bugs fixed:
         6455161
    Patch  6819785      : applied on Mon Sep 15 10:53:00 CEST 2008
       Created on 29 Feb 2008, 08:05:22 hrs PST8PDT
       Bugs fixed:
         4430244, 5752105, 6140309, 5558627, 5747462, 5376783, 5212539, 6455795
         5913430, 5386204, 5093837, 5667736, 6033289, 5245129, 5959612, 6819785
         4771672, 6086497, 5728380, 5657620
    Patch  4704890      : applied on Mon Sep 15 10:52:31 CEST 2008
       Created on 9 May 2006, 02:00:28 hrs US/Pacific
       Bugs fixed:
         4704890
    Patch  6663258      : applied on Mon Sep 15 10:52:06 CEST 2008
       Created on 3 Dec 2007, 06:54:28 hrs PST8PDT
       Bugs fixed:
         6151380, 6663258, 5571916
    Patch  6729801      : applied on Mon Sep 15 10:51:40 CEST 2008
       Created on 7 Jan 2008, 01:27:13 hrs PST8PDT
       Bugs fixed:
         4883174, 6398635, 4522561, 5391568, 6406234, 5573544, 4670363, 6729801
         5181800, 4877360, 5399901
    Patch  6005996      : applied on Mon Sep 15 10:51:15 CEST 2008
       Created on 18 Sep 2007, 22:48:13 hrs PST8PDT
       Bugs fixed:
         6005996
    Patch  5188321      : applied on Mon Sep 15 10:50:57 CEST 2008
       Created on 6 Dec 2007, 21:47:38 hrs PST8PDT
       Bugs fixed:
         5188321
    Patch  6447320      : applied on Mon Sep 15 10:50:32 CEST 2008
       Created on 30 Nov 2007, 13:51:21 hrs PST8PDT
       Bugs fixed:
         6447320
    Patch  6435823      : applied on Mon Sep 15 10:50:07 CEST 2008
       Created on 18 Oct 2007, 02:54:54 hrs PST8PDT
       Bugs fixed:
         6084512, 5258887, 5029334, 6435823
    Patch  5737613      : applied on Mon Sep 15 10:49:54 CEST 2008
       Created on 11 Nov 2007, 21:37:01 hrs PST8PDT
       Bugs fixed:
         5458753, 5377099, 5737613
    Patch  6340979      : applied on Mon Sep 15 10:49:29 CEST 2008
       Created on 3 Sep 2007, 06:22:47 hrs PST8PDT
       Bugs fixed:
         4599763, 6053541, 5842686, 4772145, 5915774, 6340979, 5284303, 5709414
    Patch  5308692      : applied on Mon Sep 15 10:49:04 CEST 2008
       Created on 4 Sep 2007, 03:30:37 hrs PST8PDT
       Bugs fixed:
         5308692
    Patch  5941030      : applied on Mon Sep 15 10:48:40 CEST 2008
       Created on 20 Aug 2007, 11:09:46 hrs PST8PDT
       Bugs fixed:
         5941030
    Patch  6153847      : applied on Mon Sep 15 10:48:16 CEST 2008
       Created on 28 Jun 2007, 03:25:28 hrs PST8PDT
       Bugs fixed:
         6153847
    /sapmnt/ST1/exe
    -rwsrwxr-x   1 orast1   sapsys      5012623 Sep 15 11:10 brarchive
    -rwsrwxr-x   1 orast1   sapsys      5139856 Sep 15 11:10 brbackup
    -rwsrwxr-x   1 orast1   sapsys      6670666 Sep 15 11:10 brconnect
    -rwxrwxr-x   1 st1adm   sapsys      5604458 Sep 15 11:14 brrecover
    -rwxrwxr-x   1 st1adm   sapsys      2106255 Sep 15 11:14 brrestore
    -rwxrwxr-x   1 st1adm   sapsys      6897192 Sep 15 11:14 brspace
    -rwsrwxr-x   1 orast1   sapsys      2735316 Sep 15 11:11 brtools
    /oracle/ST1/1020_64/lib/libclntsh.a
    -rw-rr   1 orast1   dba        24063166 Sep 15 11:03 /oracle/ST1/1020_64/lib/libclntsh.a
    /oracle/ST1/1020_64/lib32/libclntsh.a
    -rw-rr   1 orast1   dba        21870834 Sep 15 11:03 /oracle/ST1/1020_64/lib32/libclntsh.a
    /oracle/client/instantclient_10202_V2/libclntsh.a
    -rw-rr   1 orast1   dba        24062990 Mar 18 2008  /oracle/client/instantclient_10202_V2/libclntsh.a
    Where is my mistake in the ENV of the User: <sid>adm / st1adm ?
    thanks
    dennis

    Hi,
    It is already solved, so it does not matter much.
    But, looking at the first post:
    environment variables does not seem correct for a kernel 6.40 using client 9i. Same can be said about brtools 700 with client 10g:
    > DBS_LIBPATH_EXT=/oracle/client/instantclient_10202_V2
    > ORA_NLS10=/oracle/st1/1020_64/nls/data
    > LIBRARY_PATH=/oracle/st1/1020_64
    > LIBPATH=/usr/lib:/lib:/usr/sap/st1/SYS/exe/run:/oracle/st1/1020_64/lib32:/oracle/client/instantclient_10202_V2
    I think this is a bit "messy"

  • Job SAP_COLLECTOR_FOR_PERFMONITOR - short dump (DBIF_SETG_SQL_ERROR)

    Hi gurus,
    Good day.
    I would like to ask for your help with regard to the short dump that we experienced with Job SAP_COLLECTOR_FOR_PERFMONITOR (program RSCOLL00).  The error is DBIF_SETG_SQL_ERROR.
    Date       Time     Message  text                                                                               
    24.11.2008 02:30:39 Job started                                                       
    24.11.2008 02:30:39 Step 001 started (program RSCOLL00)
    24.11.2008 02:30:44 ABAP/4 processor: DBIF_SETG_SQL_ERROR                             
    24.11.2008 02:30:44 Job cancelled                                                     
    ORA-01455 is said to be the reason why we encountered DBIF_SETG_SQL_ERROR.
    Database error text........: "ORA-01455: converting column overflows integer datatype"                                                                 
    Can you advise an OSS Note or certain solution that can fix this issue?  Thank you very much!

    This looks like an SAP Upgrade ECC 6 Problem, right?
    Do you have any idea where I can check the date when the ECC 6 upgrade or patch has been made?
    I'm an ABAPer and to be honest, currentlly, I don't have any idea if the client really did an ECC 6 upgrade --- when they did it. I will just check the table that you sent.
    I just had the impression that it might be due to an ECC 6 Upgrade since I saw this case over the Internet:
    "DBIF_SETG_SQL_ERROR" and "ORA-03106: fatal two-task communication protocol error" after ERP 6.0 Upgrade ( http://sap.ittoolbox.com/groups/technical-functional/sap-basis/dbif_setg_sql_error-and-ora-03106-fatal-two-task-communication-protocol-error-after-erp-60-upgrade-1640408 ).
    Yes, we are also experiencing DBIF_SETG_SQL_ERROR (ORA-03106). But, I'm taking care of DBIF_SETG_SQL_ERROR (ORA-01455).
    By the way, I saw that jobs EU_PUT and EU_REORG are being executed in background every morning at around 1 AM. And we are receiving the error DBIF_SETG_SQL_ERROR (ORA-01455) at around 2 AM - 3 AM, and a few at around 3 AM - 5 AM.
    With these I have two questions:
    (1) Do you think we still need to rerun EU_PUT and EU_REORG? Perhaps before 2 AM ?
    (2) Do you think this is a Basis Issue and nothing to do with ABAP anymore?
    Thank you very much!

  • Load process ended with error DBIF_SETG_SQL_ERROR

    HI,
        WE ARE USING PROCEES CHAINS TO LOAD THE DATA FROM R/3 TO BW, BUT THE LAOD PROCESS ENDED WITH FOLLOWING ERROR "ABAP/4 processor:DBIF_SETG_SQL_ERROR".

    Hi,
    We face frequent DBIF_SETG_SQL_ERROR and also add_partition_failed error.
    Tried to ensure that parallel processes are not occupying too much backgrnd processes, but still were unable to resolve the issue.
    We are on Oracle 10.2.0.2.0 release. Any pointers on what we should look out for ?
    Any oracle parameter settings that we might need to check?
    Regards,
    Vidya

  • DBIF_SETG_SQL_ERROR ON ORA-01578

    Hello Experts,
    I am facing above mentioned runtime error when i m trying to double click on perform statement to create form.
    i have used perform GET_DATA in my program. when i double-clink on GET_DATA to create a form with dat name, it displays this error.
    Any advice is welcomed.
    Thanks & Regards,
    Vinit.

    Hi simplyvinit ,
    Check the table UVERS to verify for upgraded recently.  
    ORA-01578 ORACLE data block corrupted (file # num, block # num)
    Cause:The given data block was corrupted, probably as a result of program errors.
    Action:Try to restore the segment containing the given data block. This may involve dropping the segment and re-creating it.
    Hope this information is help to you.
    Regards,
    José

  • Backup to remote stage failed due to RFC error

    Hello!
    Recently I have problem to execute a successful online Backup to the external source.
    If I start backup from DB13 and analyse the work processes (Tcode SM50) I found the following:
    The responsible BGD-WP:
    status: On hold , reason: RFC, report: SAPLSSXP
    The dev_w8 trace retrieves the following error:
      Source RSCROSS10  Line 112.
      Error Code <b>DBIF_RSQL_SQL_ERROR</b>.
      Module  $Id: //bas/700_REL/src/krn/runt/absapsql.c#6 $ SAP.
      Function HandleRsqlErrors Line 761.
    The DB13-protocol retrieves the following information:
    BR0278E Command output of 'F:\usr\sap\DEV\SYS\exe\uc\NTAMD64\sapftp.exe -v -n -i 192.168.200.3 -u H:\oracle\DEV\sapbackup\.bdwkhbgq.ftp -b -c put E:\ORACLE\DEV\SAPDATA1\SR3_3\SR3.DATA3 /sap/DEVB/bdwkhbgq/SR3.DATA3':
    Connected to 192.168.200.3 Port 21.
    220-FTP server ready. 220 This is a private system - No anonymous login 331 User sapbackup OK. Password required 230-User sapbackup has group access to:  administrator    230-This server supports FXP transfers 230-OK. Current restricted directory is / 230-************************************************ 230-* Use SITE command to change client codepage:  * 230-* ie, site codepage [client codepage]          * 230 ************************************************ 200 TYPE is now 8-bit binary 200 PORT command successful 150 Connecting to port 2734 NiWrite error: -6, bytes to send: 32767 bytes written: 0
    BR0280I BRBACKUP time stamp: 2007-10-20 03.08.23
    BR0279E Return code from 'F:\usr\sap\DEV\SYS\exe\uc\NTAMD64\sapftp.exe -v -n -i 192.168.200.3 -u H:\oracle\DEV\sapbackup\.bdwkhbgq.ftp -b -c put E:\ORACLE\DEV\SAPDATA1\SR3_3\SR3.DATA3 /sap/DEVB/bdwkhbgq/SR3.DATA3': 1
    BR0222E Copying E:\ORACLE\DEV\SAPDATA1\SR3_3\SR3.DATA3 to/from /sap/DEVB/bdwkhbgq/SR3.DATA3 failed due to previous errors.
    Can some one help me with this issue?
    Thank you very much!
    regards
    Thom

    Hello Eric,
    unfortunately it is not possible to do it, because I have only remote access to the SAP system.
    Is it possible to analyse the problem with the log files?
    If yes --> which logs should I post here?
    I went through the monitors in RZ20 and found a lot of errors/warning:
    <b>Database:</b>
    DBIF_SETG_SQL_ERROR
    ORA-03106: fatal two-task communication protocol error
    DB error 24909 in FET
    SQL error 3106: WP in reconnect status
    <b>Background:</b>
    Job SAP_COLLECT_FOR_PERMONITOR terminated
    Utilisation:
    100% > 95% Background work process load exceeds threshold
    BackgroundService: SystemWideFree BPWP: 1 WPs > 2 WPs Current value over threshold value.
    Abap ErrorInUpdate
    <b>Syslog</b> : BasisSystem
    Operating system call recv failed (error no. & >E5)
    The log file dev_cp retrieves the following information after execution of DB Check:
    Trace file of control program (trace level 3)
    < Function: BtcTrcInit> Function: main SAPXPG 700
    2007-10-23--14-42-27 : Before BtcXpgDetach
    > Function: BtcXpgDetach < Function: BtcXpgDetach Accept RFC connection from R/3 system
    2007-10-23--14-42-27 : Before RfcAccept
    2007-10-23--14-42-27 : RfcAccept returned OK
    security check switched OFF
    Install RFC call SAPXPG_START_XPG
    Install RFC call SAPXPG_START_XPG_LONG
    Install RFC call SAPXPG_END_XPG
    Wait for RFC call SAPXPG_START_XPG or SAPXPG_START_XPG_LONG
    2007-10-23--14-42-27 : Before first call of RFCDispatch
    > Function: BtcXpgStartXpgLong
    2007-10-23--14-42-27 : Beginning of BtcXpgStartXpgLong
    > Function: BtcXpgStartXpgImportLong > Function: BtcXpgParam < Function: BtcXpgParam > Function: BtcXpgParam
    Line Text
    <No StdOut/StdErr output reported>
    Target log table is not identical to source
    ItGetLine terminated with NULL
    <Function: BtcXpgItTransfer > Function: BtcTrcReset < Function: BtcTrcReset Call mode: VIA RF
    Input arguments of BtcXpgStartXpg:
    My WP settings are:
    rdsip/wp_no_dia = 6
    rdsip/wp_no_btc = 3
    rdsip/wp_no_vb = 1
    rdsip/wp_no_vb2 = 1
    rdsip/wp_no_spo = 1
    Thank you!
    Thom

  • Backup to Time Machine failed due to large iMovie Library

    Hi All
    I have had issues backing up to Time Machine since upgrading to OS Mavericks and iMovie 10, the likely culprit is my large iMovie library.  I have deleted my previous iMovie events, so only have the 1 iMovie library file related to the current version of iMovie.  I have the following situation;
    - iMac HDD - 1 TB with 0.5 TB free
    - External HDD - 2 TB with 0.5 TB free (used for iMovie library which is 1.5 TB)
    - External HDD - 3 TB with 1.0 TB free (used for Time Machine backup)
    Now I have just imported some additional video into my iMovie library.  When I try to do a backup I get the error "Backup Failed, Time Machine couldn't back up to "Time Machine"."  Then further details suggest "The backup disk needs 1.55 TB for the backup but only 982.04 GB are available. Select a larger backup disk or make the backup smaller by excluding files."  This seems to suggest that Time Machine wants to backup my entire iMovie library (ie, 1.55 TB)
    Two questions; does Time Machine backup the entire iMovie Library each time there is a change rather than just the incremental imported files?, and how can I get my backup to work again?

    Hello Eric,
    unfortunately it is not possible to do it, because I have only remote access to the SAP system.
    Is it possible to analyse the problem with the log files?
    If yes --> which logs should I post here?
    I went through the monitors in RZ20 and found a lot of errors/warning:
    <b>Database:</b>
    DBIF_SETG_SQL_ERROR
    ORA-03106: fatal two-task communication protocol error
    DB error 24909 in FET
    SQL error 3106: WP in reconnect status
    <b>Background:</b>
    Job SAP_COLLECT_FOR_PERMONITOR terminated
    Utilisation:
    100% > 95% Background work process load exceeds threshold
    BackgroundService: SystemWideFree BPWP: 1 WPs > 2 WPs Current value over threshold value.
    Abap ErrorInUpdate
    <b>Syslog</b> : BasisSystem
    Operating system call recv failed (error no. & >E5)
    The log file dev_cp retrieves the following information after execution of DB Check:
    Trace file of control program (trace level 3)
    < Function: BtcTrcInit> Function: main SAPXPG 700
    2007-10-23--14-42-27 : Before BtcXpgDetach
    > Function: BtcXpgDetach < Function: BtcXpgDetach Accept RFC connection from R/3 system
    2007-10-23--14-42-27 : Before RfcAccept
    2007-10-23--14-42-27 : RfcAccept returned OK
    security check switched OFF
    Install RFC call SAPXPG_START_XPG
    Install RFC call SAPXPG_START_XPG_LONG
    Install RFC call SAPXPG_END_XPG
    Wait for RFC call SAPXPG_START_XPG or SAPXPG_START_XPG_LONG
    2007-10-23--14-42-27 : Before first call of RFCDispatch
    > Function: BtcXpgStartXpgLong
    2007-10-23--14-42-27 : Beginning of BtcXpgStartXpgLong
    > Function: BtcXpgStartXpgImportLong > Function: BtcXpgParam < Function: BtcXpgParam > Function: BtcXpgParam
    Line Text
    <No StdOut/StdErr output reported>
    Target log table is not identical to source
    ItGetLine terminated with NULL
    <Function: BtcXpgItTransfer > Function: BtcTrcReset < Function: BtcTrcReset Call mode: VIA RF
    Input arguments of BtcXpgStartXpg:
    My WP settings are:
    rdsip/wp_no_dia = 6
    rdsip/wp_no_btc = 3
    rdsip/wp_no_vb = 1
    rdsip/wp_no_vb2 = 1
    rdsip/wp_no_spo = 1
    Thank you!
    Thom

  • Error Data Loading into Cube

    Hi,
    When I run DTP, I get the error below on SM21. I checked note  1634716 - SYB: Lock timeout or deadlocks and 1933239 - SYB: Shortdumps with resource shortage and runtime error DBIF_SETG_SQL_ERROR but they didn't solve the issue. Any help will be appricated.
    Database error 12205 at OPC
    > [ASE Error SQL12205]Could not acquire a lock within the
    > specified wait period. SERVER level wait period=1800 seconds
    > spid=568, lock type=shared intent, dbid=4, objid=838472672,
    > pageno=0, rowno=0. Aborting the transaction.#
    Runtime error "DBIF_DSQL2_SQL_ERROR" occurred.
    Thanks,

    I also get same error when I'm trying to collapse cube.
    It always get the same error on RSDU_PARTITIONS_INFO_GET_SYB.
    I found a correction on 1616762 - SYB: Fix collection for table partitioning but it didn't solve anything. It gives CX_SY_NATIVE_SQL_ERROR on same function. Correction is deleting "at isolation 1" line .
    Any idea ?     

  • Getting error in SM21

    Dear All,
    we are usinf ecc6 on windows with ms cluser on2 active server and oracle 10g.
    In sm21 i am getting the workprocesses was restarted many times. the disp log  DpHdlDeadWp: restart wp (pid=1328) automatically and  WARNING => ThHdlReconnect: no reconnect in hold mode
    Please suggest
                  A1  0 Initialization complete
                  Q0  Q Start Workproc 1, Pid 1508
                  Q0  Q Start Workproc26, Pid 2280
                  Q0  Q Start Workproc27, Pid 4584
                  Q0  Q Start Workproc 2, Pid 8588
                  Q0  Q Start Workproc31, Pid 8948
             BY  4 Database error 3135 at SEL access to table REPOSRC
             BY  0 > ORA-03135: connection lost contact
             BY  M SQL error 3114 occurred; work process in reconnect status
             AB  2 > Include ??? line 0000.
             AB  0 Run-time error "DBIF_REPO_SQL_ERROR" occurred
             BY  M SQL error 3114 occurred; work process in reconnect status
             BY  4 Database error 3135 at FET access to table KNBW
             BY  0 > ORA-03135: connection lost contact
             BY  M SQL error 3114 occurred; work process in reconnect status
             BY  M SQL error 3114 occurred; work process in reconnect status
             BY  4 Database error 3135 at SEL access to table DYNPLOAD
             BY  M SQL error 3114 occurred; work process in reconnect status
             BY  0 > ORA-03135: connection lost contact
             BY  4 Database error 3135 at SEL access to table STXL
             AB  0 Run-time error "DBIF_REPO_SQL_ERROR" occurred
             AB  0 Run-time error "DYNPRO_READ_FAILED" occurred
             AB  2 > Include ??? line 0000.
             AB  0 Run-time error "DBIF_DSQL2_SQL_ERROR" occurred
             AB  0 Run-time error "DBIF_SETG_SQL_ERROR" occurred
             BY  2 Database error 3114 at EXE
             AB  2 > Include ??? line 0000.
             AB  0 Run-time error "DBIF_DSQL2_SQL_ERROR" occurred
             BY  0 > ORA-03114: not connected to ORACLE
             AB  2 > Include LKKBLF90 line 2354.
             AB  0 Run-time error "DBIF_DSQL2_SQL_ERROR" occurred
             BY  2 Database error 3114 at FET
             BY  0 > ORA-03114: not connected to ORACLE
             BY  2 Database error 3114 at FET
             BY  0 > ORA-03114: not connected to ORACLE
       R4  7 Delete session 001 after error 024
       R4  7 Delete session 001 after error 024
       BY  Y Work process has left reconnect status
       BY  Y Work process has left reconnect status
            R4  7 Delete session 001 after error 061
            R4  7 Delete session 001 after error 061
    A1  0 Initialization complete
    Q0  Q Start Workproc 8, Pid 6104
    Q0  Q Start Workproc20, Pid 9836
    R4  7 Delete session 001 after error 061
    Tue Jun 29 10:28:41 2010
    ORACLE V10.2.0.4.0 - 64bit Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Windows Server 2003 Version V5.2 Service Pack 2
    CPU                 : 4 - type 2200, 4 Physical Cores
    Process Affinity    : 0x0000000000000000
    Memory (Avail/Total): Ph:8857M/16362M, Ph+PgF:42422M/75999M
    Instance name: prd
    Redo thread mounted by this instance: 1
    Oracle process number: 49
    Windows thread id: 6786, image: ORACLE.EXE (SHAD)
    2010-06-29 10:28:41.182
    ACTION NAME:(20784) 2010-06-29 10:28:41.152
    MODULE NAME:(SAPLSEDA) 2010-06-29 10:28:41.152
    SERVICE NAME:(SYS$USERS) 2010-06-29 10:28:41.152
    SESSION ID:(1286.11696) 2010-06-29 10:28:41.152
    opitsk: network error occurred while two-task server trying tosend break; error code = 12571
    disp log
    Tue Jun 29 11:24:42 2010
    Network error of client T125, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Client address of T125 is ip)
    LOG Q04=> DpRTmPrep, NiBufReceive (10613RFCL-C125 ff-0e30fdb1a) [dpxxdisp.c   12363]
    RM-T125, U10613, 600 USER, ff-0e30fdb1a8fc, 11:22:40, M0, W1, VF03, 2/1
    Tue Jun 29 11:25:40 2010
    DpHdlDeadWp: restart wp (pid=7732) automatically
    Tue Jun 29 11:25:49 2010
    SoftCancel request for T59 U10425 M0 received from REMOTE_TERMINAL
    Tue Jun 29 11:28:40 2010
    DpHdlDeadWp: restart wp (pid=5644) automatically
    Tue Jun 29 11:31:20 2010
    DpHdlDeadWp: restart wp (pid=1328) automatically
    DpHdlDeadWp: restart wp (pid=2872) automatically
    DpHdlDeadWp: restart wp (pid=3284) automatically
    trc file: "dev_disp", trc level: 1, release: "701"
    sysno      01
    sid        PRD
    systemid   561 (PC with Windows NT)
    relno      7010
    patchlevel 0
    patchno    96
    intno      20020600
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        7968
    Tue Jun 29 12:20:21 2010
    DpHdlDeadWp: restart wp (pid=8016) automatically
    Tue Jun 29 12:21:13 2010
    ERROR => multiple send of tid 54 (HW, M0) [dpxxdisp.c   12519]
    Network error of client T54, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Client address of T54 is .249)
    LOG Q04=> DpRTmPrep, NiBufReceive (10982HW india ) [dpxxdisp.c   12363]
    RM-T54, U10982, 600HW, india, 12:20:25, M0, W1, ZVA0, 2/1
    HardCancel request for T54 U10982 M0 received from DISPATCHER
    ERROR => DpRqCheck: mode 0 in status CANCEL [dpxxdisp.c   7498]
    LOG Q0G=> DpRqBadHandle, bad_req ( DIA) [dpxxdisp.c   5711]
    ERROR => BAD REQUEST - Reason: DpRqCheck failed (line 6526): [dpxxdisp.c   5713]
    -IN-- sender_id REMOTE_TERMINAL   tid  54    wp_ca_blk   1       wp_id -1
    -IN-- action    SEND_TO_WP        uid  10982   appc_ca_blk -1      type  DIA 
    -IN-- new_stat  NO_CHANGE         mode 0     len         33      rq_id 49074
    Tue Jun 29 12:21:21 2010
    DpHdlDeadWp: restart wp (pid=5888) automatically
    Tue Jun 29 12:25:01 2010
    DpHdlDeadWp: restart wp (pid=3040) automatically
    trc file: "dev_w0", trc level: 1, release: "701"
    there  are many
    Tue Jun 29 12:26:12 2010
    WARNING => ThHdlReconnect: no reconnect in hold mode
    Tue Jun 29 12:28:11 2010
    WARNING => ThHdlReconnect: no reconnect in hold mode
    WARNING => ThHdlReconnect: no reconnect in hold mode
    MTue Jun 29 12:28:12 2010
    WARNING => ThHdlReconnect: no reconnect in hold mode
    WARNING => ThHdlReconnect: no reconnect in hold mode
    Tue Jun 29 15:55:05 2010
    build_stmt: reallocating stmt buffer: 3005 -> 4008 characters
    build_stmt: reallocating stmt buffer: 4008 -> 5022 characters
    build_stmt: reallocating stmt buffer: 256 -> 2000 characters
    Please suggest
    Regards,
    Kumar
    Edited by: kumar9 on Jul 1, 2010 3:50 PM

    Hi,
    Check OSS Notes
    504952 - Composite note regarding spooling and printing
    48400 - Reorganization of TemSe and Spool
    41547 - How does report RSPO0041 work?
    16083 - Standard jobs, reorganization jobs
    You have to schedule the background job to run the report RSPO1041 to delete old spool.
    Hope this will help you.
    Thanks,
    Shambo

  • Spam - ORA-03106: fatal two-task communication protocol

    Hi gurus.
    I'm having this error always I import a queue.
    Before the error I continue with the "import queue" and it goes to the end, no problem.
    Could any one help me how to solve this?
    Above the abend details.
    Runtime Error          DBIF_SETG_SQL_ERROR
    Database error text........: "ORA-03106: fatal two-task communication protocol
    error"                                                                       
    Internal call code.........: "[SETG/GET /INDX_HIER ]"                         
    "DBIF_SETG_SQL_ERROR" C                      
    "SAPLSHI2" or "LSHI2U25"                     
    "STREE_READ_BUFFERED_DATA_GENER"             
    System environment:
        SAP Release.............. "640"                                                                               
    Application server....... "PCINTRA"                                                      
        Network address.......... "192.168.200.100"                                              
        Operating system......... "Windows NT"                                                   
        Release.................. "5.1"                                                          
        Hardware type............ "Intel 80686 (Mo"                                              
        Character length......... 8 Bits                                                         
        Pointer length........... 32 Bits                                                        
        Work process number...... 1                                                              
        Short dump setting....... "full"                                                                               
    Database server.......... "PCINTRA"                                                      
        Database type............ "ORACLE"                                                       
        Database name............ "NWW"                                                          
        Database owner........... "SAPNWW"                                                                               
    Character set............ "English_United State"                                                                               
    SAP kernel............... "640"                                                          
        Created on............... "Mar 21 2007 23:47:09"                                         
        Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"                 
        Database version......... "OCI_920_SHARE "                                                                               
    Patch level.............. "175"                                                          
        Patch text............... " "                                                                               
    Supported environment....                                                                
        Database................. "ORACLE 8.1.7.., ORACLE 9.2.0.."                           
        SAP database version..... "640"                                                          
        Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"               
    Thanks in advance
    Paulo

    Hi Ben,
    i m also getting the same error. we are using ORacle 10.2.2 on Linux.
    The problem is that the Updates are not getting processed and are waiting for V2 update process which is processing one of the v2 process for much time and status is running sequential read - VBdata table.
    the status of the updates are - v1 processed. Find the error log of SM21 below-
    NiConnect Unsuccessful, Return Code: -0003
    > Host: ACPLAPP
    > Service: sapgw01
    Communication error, CPIC return code 020, SAP return code 665
    > CPI-C function: CMINIT(SAP)
    SQL error 3106 . Work processes in reconnect status
    Perform rollback
    Work process has left reconnect status
    Run-time error "DBIF_SETG_SQL_ERROR" occurred
    > Short dump "070828 020442 SAPPRD AMTFINISHING" generated
    Transaction Canceled 00 671 ( DBIF_SETG_SQL_ERROR 20070828020442SAPPRD AMTFINISHING0091 )
    Perform rollback
    Update terminated
    > Update key: 46CE6156C66E4997E1000000C0A80107
    > Update module: G_PCA_0_POSTING
    SQL error 3113 . Work processes in reconnect status
    Kindly suggest
    Thnx
    Kishore

  • ORA-03106: fatal two-task communication protocol

    Hi,
    I am getting this error with the short dump(in ST22)   DBIF_SETG_SQL_ERROR.
    The details of the dump is also given.
    Please help.
    Runtime Error          DBIF_SETG_SQL_ERROR
           Occurred on     12.08.2008 at   08:30:37
    SQL error occurred in the database when accessing a table.
    What happened?
    What can you do?
    Make a note of the actions and input which 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.
    Error analysis
    How to correct the error
    Database error text........: "ORA-03106: fatal two-task communication protocol
    error"
    Internal call code.........: "[SETG/GET /VBDATA ]"
    Please check the entries in the system log (Transaction SM21).
    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:
    "DBIF_SETG_SQL_ERROR" C
    "SAPLSEUAX" or "LSEUAXV01"
    "RS_NEW_PROGRAM_INDEX"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.
    System environment
    SAP Release.............. "620"
    Application server....... "awnts151"
    Network address.......... "192.168.10.33"
    Operating system......... "Windows NT"
    Release.................. "5.2"
    Hardware type............ "8x Intel 80686"
    Character length......... 8 Bits
    Pointer length........... 32 Bits
    Work process number...... 10
    Short dump setting....... "full"
    Database server.......... "AWNTS151"
    Database type............ "ORACLE"
    Database name............ "DEE"
    Database owner........... "SAPR3"
    Character set............ "English_United State"
    SAP kernel............... "640"
    Created on............... "Jun 23 2008 21:48:04"
    Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version......... "OCI_920_SHARE "
    Patch level.............. "239"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE
    10.2.0.."
    SAP database version..... "640"
    Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2,
    Windows NT 6.0"
    User, transaction...
    Client.............. 999
    User................ "AIL_DEV"
    Language key........ "E"
    Transaction......... "SE38 "
    Program............. "SAPLSEUAX"
    Screen.............. "RSM13000 3000"
    Screen line......... 2
    Information on where terminated
    The termination occurred in the ABAP program "SAPLSEUAX" in
    "RS_NEW_PROGRAM_INDEX".
    The main program was "RSM13000 ".
    The termination occurred in line 27 of the source code of the (Include)
    program "LSEUAXV01"
    of the source code of program "LSEUAXV01" (when calling the editor 270).
    The program "SAPLSEUAX" was started in the update system.
    Source code extract
    000010   *******************************************************************
    000020   *   THIS FILE IS GENERATED BY THE FUNCTION LIBRARY.               *
    000030   *   NEVER CHANGE IT MANUALLY, PLEASE!                             *
    000040   *******************************************************************
    000050   FORM RS_NEW_PROGRAM_INDEX USING %_KEY.
    000060   * Parameter declaration
    000070   DATA %_P0000000001 TYPE
    000080   PROGRAM
    000090   .
    000100   DATA %_P0000000002 TYPE
    000110   PROGRAM
    000120   .
    000130   DATA: %_STATE.
    000140   * Assign default values
    000150   * Get mode for update task
    000160     CALL 'GET_SWITCH_UTASK'
    000170      ID 'MODE'  FIELD 'S'
    000180      ID 'STATE' FIELD %_STATE.
    000190     IF %_STATE EQ 'N'.
    000200   * Import from memory
    000210     IMPORT
    000220       P_NAME TO %_P0000000001
    000230       P_INCLUDE TO %_P0000000002
    000240     FROM MEMORY ID %_KEY.
    000250     ELSE.
    000260   * Import from logfile
        IMPORT
    000280       P_NAME TO %_P0000000001
    000290       P_INCLUDE TO %_P0000000002
    000300     FROM LOGFILE ID %_KEY.
    000310     ENDIF.
    000320   * Call update task
    000330     CALL FUNCTION 'RS_NEW_PROGRAM_INDEX'
    000340        EXPORTING
    000350          P_NAME = %_P0000000001
    000360          P_INCLUDE = %_P0000000002
    000370     .
    000380   ENDFORM.
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 0                             SY-INDEX 0
    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 Update control
    SY-MSGTY                               SY-MSGID
    SY-MSGNO 000                           SY-MSGV1
    SY-MSGV2                               SY-MSGV3
    SY-MSGV4
    Active calls / events
    No.... Type........ Name..........................
           Program
           Include                                  Line
           Class
         5 FORM         RS_NEW_PROGRAM_INDEX
           SAPLSEUAX
           LSEUAXV01                                   27
         4 FORM         VB_CALL_FUNC
           RSM13000
           RSM13000                                  5441
         3 FORM         VB_V1_EXEC
           RSM13000
           RSM13000                                  5182
         2 FORM         VB_V1_NORMAL
           RSM13000
           RSM13000                                  3944
         1 MODULE (PBO) VBEXEC
           RSM13000
           RSM13000                                  3793
    Chosen variables
         5 FORM         RS_NEW_PROGRAM_INDEX
           SAPLSEUAX
           LSEUAXV01                                   27
    %_DUMMY$$
                                   2222
                                   0000
    %_STATE                        Y
                                   5
                                   9
    RSJOBINFO                                                      00000000
                                   2222222222222222222222222222222233333333
                                   0000000000000000000000000000000000000000
    ... +  40                      000000
                                   3333332222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80                      ####
                                   0000
                                   0000
    %_KEY                          2CF93538B4E949608CAEF68FCB839DA0####
                                   344333334343333334444334443334430000
                                   236935382459496083156686328394101000
    SY-SUBRC                       0
                                   0000
                                   0000
    SYST-REPID                     SAPLSEUAX
                                   5454545452222222222222222222222222222222
                                   310C355180000000000000000000000000000000
    %_P0000000001
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    %_P0000000002
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    %_VIASELSCR                    #
                                   0
                                   4
    SY-REPID                       SAPLSEUAX
                                   5454545452222222222222222222222222222222
                                   310C355180000000000000000000000000000000
         4 FORM         VB_CALL_FUNC
           RSM13000
           RSM13000                                  5441
    SAVE_VBPARAM                   #
                                   0
                                   3
    VBPARAM                        2CF93538B4E949608CAEF68FCB839DA00001RS_N
                                   3443333343433333344443344433344333335554
                                   23693538245949608315668632839410000123FE
    ... +  40                      EW_PROGRAM_INDEX          AIL_DEV     99
                                   4555544544544445222222222244454452222233
                                   57F02F721DF9E458000000000019CF4560000099
    ... +  80                      9###                             ##
                                   3000222222222222222222222222222220022222
                                   9612000000000000000000000000000001100000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222
                                   0000000000000000000
    VBHDR-VBTCODE                  SE38
                                   54332222222222222222
                                   35380000000000000000
    VBHDR-VBREPORT                 RS_CALL_PROGRAMM_INDEX_DELTA
                                   5554444555445444544445544454222222222222
                                   23F31CCF02F721DDF9E458F45C41000000000000
    VBMODCNT                       1
                                   0000
                                   1000
    DLDE                           DLDE
                                   4444222222222222222222222222222222222222
                                   4C45000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    VBPARAM-VBPHASE                538968577
                                   0
                                   1
    VB_V1_TEST                     #
                                   0
                                   2
    SYST-REPID                     RSM13000
                                   5543333322222222222222222222222222222222
                                   23D1300000000000000000000000000000000000
    HGEN                           HGEN
                                   4444222222222222222222222222222222222222
                                   875E000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    IS_A_ARFC                      #
                                   0
                                   0
    TH_TRUE                        #
                                   0
                                   1
    OFFICE_TASO00                  SO00
                                   5433222222222222222222222222222222222222
                                   3F00000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    TH_FALSE                       #
                                   0
                                   0
    VBSTAT-START2_REQ
                                   222222222222222
                                   000000000000000
    EWST                           EWST
                                   4555222222222222222222222222222222222222
                                   5734000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    BACK                           BAC
                                   4442222222222222222222222222222222222222
                                   2130000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    TFDIR                          RS_NEW_PROGRAM_INDEX          SAPLSEUAX
                                   5554455554454454444522222222225454545452
                                   23FE57F02F721DF9E4580000000000310C355180
    ... +  40                                                    0100000000
                                   2222222222222222222222222222223333333333
                                   0000000000000000000000000000000100000000
    ... +  80                                   1
                                   22222222222223
                                   00000000000001
    TFDIR-PNAME                    SAPLSEUAX
                                   5454545452222222222222222222222222222222
                                   310C355180000000000000000000000000000000
    VBFUNC                         RS_NEW_PROGRAM_INDEX
                                   555445555445445444452222222222
                                   23FE57F02F721DF9E4580000000000
    %_DUMMY$$
                                   2222
                                   0000
    VBID                           2CF93538B4E949608CAEF68FCB839DA0####
                                   344333334343333334444334443334430000
                                   236935382459496083156686328394101000
    VBDEBUG                        538976258
                                   0
                                   2
    VB_UPDATE_MODUL_PROCESSED      #
                                   1
                                   C
         3 FORM         VB_V1_EXEC
           RSM13000
           RSM13000                                  5182
    ROLE_SUBST_ACTIVE              3
                                   3
                                   3
    VBMOD_TABL-VBMODE              1
                                   3
                                   1
    VB_COLLECTOR_FB                5
                                   3
                                   5
    SY-REPID                       RSM13000
                                   5543333322222222222222222222222222222222
                                   23D1300000000000000000000000000000000000
    LISL                           LISL
                                   4454222222222222222222222222222222222222
                                   C93C000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    EXISTS_COLLECTOR               #
                                   0
                                   0
    VB_V1_FB                       1
                                   3
                                   1
    VB_V1_NO_UPD_AGAIN_FB          3
                                   3
                                   3
    VBHDR-VBSTATE                  826605823
                                   F
                                   F
    VB_V1_PROCESSED                #
                                   0
                                   1
    VB_V1_AND_V2_PROCESSED         #
                                   0
                                   2
    SYST                           ########################################
                                   0000000000000000000000000000000000000000
                                   0000000010001000000000000000000000000000
    ... +  40                      ####################u0161###############H###
                                   0000000000000000000090000000000000004000
                                   10000000100000001000A0000000000000008000
    ... +  80                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 120                      ########################################
                                   0000000000000000000000000000000010009000
                                   00000000000000000000000000000000B0000000
    ... + 160                      ############XM##  #############   E0   3
                                   0000000000005400220000000000000222432223
                                   0000000000008D00000020000C0000C000500003
    ... + 200                      000       N ####__S                 999
                                   3332222222420000555222222222222222223332
                                   0000000000E00000FF3000000000000000009990
    ... + 240                           00
                                   222223322222222
                                   000000000000000
    MTAS                           MAS
                                   4452222222222222222222222222222222222222
                                   D130000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    VBMOD_TABL-VBKEY               2CF93538B4E949608CAEF68FCB839DA0
                                   34433333434333333444433444333443
                                   23693538245949608315668632839410
    VBMOD_TABL-VBFUNC              RS_NEW_PROGRAM_INDEX
                                   555445555445445444452222222222
                                   23FE57F02F721DF9E4580000000000
    VBMOD_TABL-VBMODCNT            1
                                   0000
                                   1000
    LOC_VBPARAM-VBPHASE            538968577
                                   0
                                   1
    LOC_VBPARAM-VBDEBUG            538976258
                                   0
                                   2
    READ                           READ
                                   5444222222222222222222222222222222222222
                                   2514000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    EXISTS_V2                      #
                                   0
                                   0
    SPACE
                                   2
                                   0
    NEW_VBSTATE                    0
                                   0
                                   0
    OBJA                           OBJA
                                   4444222222222222222222222222222222222222
                                   F2A1000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    OFFICE_TASO18                  SO18
                                   5433222222222222222222222222222222222222
                                   3F18000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    USER_NOT_EXIST                 34
                                   2000
                                   2000
    SY-XPROG
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    SY-XFORM
                                   222222222222222222222222222222
                                   000000000000000000000000000000
         2 FORM         VB_V1_NORMAL
           RSM13000
           RSM13000                                  3944
    VBHDR-VBCLIINFO                #
                                   0
                                   0
    VB_SYNC_VB                     #
                                   0
                                   1
    %_ARCHIVE
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    SY-MSGID
                                   22222222222222222222
                                   00000000000000000000
    ROOM_TAPP30                    PP30
                                   5533222222222222222222222222222222222222
                                   0030000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    ADMI                           ADM
                                   4442222222222222222222222222222222222222
                                   14D0000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    SY-MSGNO                       000
                                   333
                                   000
    NOTE_NOT_ADDED                 11
                                   0000
                                   B000
    SY-MSGV1
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    SY-MSGV2
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    SY-MSGV3
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    SY-MSGV4
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    LOGO                           LOG
                                   4442222222222222222222222222222222222222
                                   CF70000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    VBHDR                          2CF93538B4E949608CAEF68FCB839DA0999AIL_D
                                   3443333343433333344443344433344333344454
                                   2369353824594960831566863283941099919CF4
    ... +  40                      EV                 RS_CALL_PROGRAMM_INDE
                                   4522222222222222222555444455544544454444
                                   560000000000000000023F31CCF02F721DDF9E45
    ... +  80                      X_DELTA            SE38
                                   5544454222222222222543322222222222222222
                                   8F45C41000000000000353800000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160                                          ÿ###awnts151_DEE_00
                                   22222222222222222222F0006767733354445332
                                   00000000000000000000F00017E43151F455F000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240                              :E:
                                   222222223432222
                                   00000000A5A0000
         1 MODULE (PBO) VBEXEC
           RSM13000
           RSM13000                                  3793
    VB_V1_NORMAL                   #
                                   0
                                   1
    %_SPACE
                                   2
                                   0
    STOP                           RET
                                   5452222222222222222222222222222222222222
                                   2540000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    RSUP                           RSUP
                                   5555222222222222222222222222222222222222
                                   2350000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    USPR                           USPR
                                   5555222222222222222222222222222222222222
                                   5302000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    VB_V2_NORMAL                   #
                                   0
                                   3
    ENTER                          ENTR
                                   4455222222222222222222222222222222222222
                                   5E42000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    USAD                           USAD
                                   5544222222222222222222222222222222222222
                                   5314000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    VB_MAIL                        #
                                   0
                                   4
    INBO                           INB
                                   4442222222222222222222222222222222222222
                                   9E20000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    PAGP                           PAGP
                                   5445222222222222222222222222222222222222
                                   0170000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    VB_AUTO_SYS_START              #
                                   0
                                   5
    Application Calls
    No dump information available
    Application Information
    No dump information available
    Internal notes
    The termination occurred in the function "expInpDb " of the SAP
    Basis System, specifically in line 4364 of the module
    "//bas/640_REL/src/krn/runt/abexpo.c#14".
    The internal operation just processed is "IMPO".
    The internal session was started at 20080812083037.
    Internal call code.........: "[SETG/GET /VBDATA ]"
    Active calls in SAP kernel
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Callstack without Exception:
    App       : disp+work.EXE (pid=5484)
    When      : 8/12/2008 8:30:37.808
    Threads   : 2
    Computer Name       : AWNTS151
    User Name           : SAPSERVICEDEE
    Number of Processors: 8
    Processor Type: x86 Family 6 Model 15 Stepping 11
    Windows Version     : 5.2 Current Build: 3790
    Stack Dump for Thread Id 1578
    eax=00000201 ebx=0000040c ecx=00000210 edx=009c35fa esi=0000040c edi=00000000
    eip=7c8285ec esp=0410cd10 ebp=0410cd80 iopl=0         nv up ei ng nz ac po cy
    cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00200297
    function : KiFastSystemCallRet
             7c8285ec c3               ret
             7c8285ed 8da42400000000   lea     esp,[esp]              ss:0410cd10=7c827d0b
             7c8285f4 8d642400         lea     esp,[esp]              ss:2571bd23=????????
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    0410cd80 77e61c8d 0000040c 0001d4c0 00000000 0410cdb8 ntdll!KiFastSystemCallRet
    0410cd94 00f6a44d 0000040c 0001d4c0 00000001 7c3ad8c8 kernel32!WaitForSingleObject
    0410cdb8 0054011a 00540153 7c3ad8c8 7c3ad8c8 7c3ad8c8 disp+work!NTDebugProcess >
    >
    0410cdbc 00540153 7c3ad8c8 7c3ad8c8 7c3ad8c8 01778db4 disp+work!NTStack >
    >
    0410cdd8 00540187 7c3ad8c8 00000000 008224b3 7c3ad8c8 disp+work!CTrcStack2 >
    >
    0410cde4 008224b3 7c3ad8c8 00040000 41305f59 30303030 disp+work!CTrcStack >
    >
    0410ce00 008259e9 02079620 0472a370 00000000 00000000 disp+work!rabax_CStackSave >
    >
    0410d2a0 007a00f8 01223708 012755fc 0000110c 018ac020 disp+work!ab_rabax >
    >
    0410d30c 00725113 00000001 01223708 0000110c 018ac020 disp+work!ab_setgerr >
    >
    0410d36c 007ac556 0410d498 0410d49c 00000000 00000000 disp+work!expInpDb >
    >
    0410e618 007278d3 00000003 00000000 00000000 00000000 disp+work!ab_connread >
    >
    0410e69c 0072a3a9 00000001 00000000 00000000 00000000 disp+work!ab_expvb >
    >
    0410e6d4 0067334a 00000003 516c9cf0 00000000 0410e73c disp+work!expo_import >
    >
    018ac020 2f2f203a 2f736162 5f303436 2f4c4552 2f637273 disp+work!ab_extri >
    >
    64492420 00000000 00000000 00000000 00000000 00000000 
    0668ffb8 77e64829 04f7feb0 00000000 00000000 04f7feb0 MSVCR71!endthreadex
    0668ffec 00000000 7c3621a4 04f7feb0 00000000 00000000 kernel32!GetModuleHandleA
    List of ABAP programs affected
    Type
    Program
    Gen. Date  Time
    Load Size
    Prg
    RSM13000
    19.05.2007 19:22:41
    242688
    Prg
    SAPMSSYD
    05.06.2002 17:09:33
    16384
    Prg
    SAPFSYSCALLS
    14.02.2002 14:22:47
    6144
    Typ
    VBHDR
    09.11.2000 14:25:09
    5120
    Typ
    VBMOD
    08.08.1995 14:49:58
    2048
    Typ
    TFDIR
    29.07.1998 19:49:08
    3072
    Typ
    TFDIR
    29.07.1998 19:49:08
    3072
    Prg
    SAPLSEUAX
    19.05.2007 19:03:05
    8192
    Typ
    SYST
    04.12.2000 14:54:51
    27648
    Typ
    VBPARAM
    30.03.1998 09:43:02
    4096
    Typ
    VBSTAT
    07.05.1997 13:20:30
    9216
    Typ
    VBMOD
    08.08.1995 14:49:58
    2048
    List of internal tables
    No dump information available
    Directory of Application Tables
    Program
      Name................ Contents....1........2........3........4........5....+....
    RSM13000
      SYST                 |000000000000x01000000000000000
      VBHDR                |2CF93538B4E949608CAEF68FCB839DA0999AIL_DEV
      VBPARAM              |2CF93538B4E949608CAEF68FCB839DA00001RS_NEW_PROGRAM_INDEX
      VBSTAT               |0
      TFDIR                |RS_NEW_PROGRAM_INDEX          SAPLSEUAX
    SAPLSEUAX
      RSJOBINFO            |                                00000000000000
    Directory of Application Tables (Administrative Information)
    Program
      Name.......................... Time.......... Length...
    SAPLSEUAX
      SYST                                          00002404
      VBHDR                                         00000432
      VBPARAM                        20000323224119 00000179
      VBSTAT                                        00000736
      TFDIR                                         00000094
    SAPLSEUAX
      RSJOBINFO                                     00000084
    ABAP control blocks CONT
    Include                                 Line source code
    Index Name F1 Co Par01 Par2. Par3. Par4. Tabl
    LSEUAXV01                                  19 IF %_STATE EQ 'N'.
       61 cmp1 00 42  0020
       63 BRAF 02
    LSEUAXV01                                  21 IMPORT
       64 TCHK 04 15
       66 CLEA 00
       67 XDAT 90
       69 XDAT 91 03  C000
       71 XDAT 91 03  C001
    LSEUAXV01                                  25 ELSE.
       73 BRAX 00
    LSEUAXV01                                  27 IMPORT
       74 TCHK 07 15
       76 IMPO 04 02                           0000
       80 PAR2 06     C000
       82 PAR2 06     C001
    >>>>> IMPO 05                              0000
    LSEUAXV01                                  33 CALL FUNCTION 'RS_NEW_PROGRAM_
       88 FUNC 00
       89 FUNC 00
       90 PAR2 02     C001
       92 PAR2 02     C000
       94 FUNC 10
       95 FUNC FF
    LSEUAXV01                                  38 ENDFORM.
       96 ENDF 00
    End of runtime analysis
    Please help.
    Regards,
    siddhartha

    Hi Guys,
    Thanks for the reply!!
    To SriHari,
    Just to get the insight of the problem am posting it in the forum.Sometimes, it need not be an oracle issue instead it may be an Kernel issue. I did not know which sort of issue as i am new to Basis. Sorry if i have done anything wrong and against the ethics of this forum. Please pardon.
    To Fidel Vales,
    1) I have installed 10.2.0.2 patch which is available in the service marketplace.
    i have not installed the OPatch
    2) My kernel version is 239 (SAP R/3 4.7)
    3) The env variables are give beolow.
    DBMS_TYPE=ORA
    DBS_ORA_SCHEMA=SAPR3
    dbs_ora_tnsname=DEE
    NLS_LANG=AMERICAN_AMERICA.WE8DEC
    NUMBER_OF_PROCESSORS=8
    ORACLE_HOME=D:\ORACLE\DEE\102
    ORACLE_SID=DEE
    OS=Windows_NT
    Path=C:\Perl\bin\;D:\oracle\DEE\102\jre\1.4.2\bin\client;D:\oracle\DEE\102\jre\1
    .4.2\bin;C:\Program Files\EMC\PowerPath\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDO
    WS\System32\Wbem;C:\Program Files\Dell\SysMgt\RAC5;C:\Program Files\Dell\SysMgt\
    oma\bin;C:\Program Files\Dell\SysMgt\oma\oldiags\bin;C:\Program Files\EMC\Navisp
    here CLI;C:\Program Files\Resource Kit\;D:\Oracle92\Opatch;D:\Oracle92\Opatch;d:
    \oracle\DEE\102;D:\usr\sap\DEE\sys\exe\run;D:\Oracle\DEE\102\BIN;d:\oracle92;d:\
    oracle92\bin;D:\usr\sap\DEE\sys\exe\run;
    SAPARCH=E:\oracle\DEE\saparch
    SAPBACKUP=E:\oracle\DEE\sapbackup
    SAPCHECK=E:\oracle\DEE\sapcheck
    SAPDATA_HOME=E:\oracle\DEE
    SAPEXE=D:\usr\sap\DEE\SYS\exe\run
    SAPLOCALHOST=awnts151
    SAPREORG=E:\oracle\DEE\sapreorg
    SAPTRACE=E:\oracle\DEE\saptrace
    SAPTRANSHOST=AWNTS151
    TNS_ADMIN=D:\usr\sap\DEE\sys\profile\ORACLE
    USERDNSDOMAIN=AUDCO9.AILVALVES.COM
    USERDOMAIN=AUDCO9
    USERNAME=deeadm
    USERPROFILE=C:\Documents and Settings\deeadm
    USE_KIT=OFF
    4) Since there is no application server i have not installed oracle client.
    5) Kernel version is 640.
    Please help.
    Thanks and regards,
    siddhartha.

  • Upgrade Dump analysis

    Hi Gurus
    Here is a list of our system dumps in September and October. I would like if any of you would analyze these for any trends or differences.
    The reason is that we upgraded from BW 3.1 to 3.5 by the end of September. We need to know if this has lead to a signifiacant change in the types of dumps we are receiving.
    <b>Pre Upgrade</b>     
      <b>Runtime error     Count</b>
    MESSAGE_TYPE_X     214
    DYNPRO_SEND_IN_BACKGROUND     43
    STORAGE_PARAMETERS_WRONG_SET     41
    CALL_FUNCTION_SEND_ERROR     29
    UNCAUGHT_EXCEPTION     17
    START_CALL_SICK     14
    TIME_OUT     12
    RAISE_EXCEPTION     9
    TYPELOAD_LOST     8
    CALL_FUNCTION_OPEN_ERROR     7
    DBIF_RSQL_INVALID_RSQL     5
    DBIF_RSQL_SQL_ERROR     5
    RFC_ATTACH_GUI_FAILED     4
    IMPORT_FORMAT_ERROR     4
    DBIF_DSQL2_SQL_ERROR     4
    DBIF_SETG_SQL_ERROR     4
    LOAD_PROGRAM_LOST     4
    TSV_TNEW_PAGE_ALLOC_FAILED     4
    RABAX_CALLING_RABAX     3
    DBIF_REPO_SQL_ERROR     2
    SYSTEM_CORE_DUMPED     2
    OBJECTS_OBJREF_NOT_ASSIGNED     2
    CONNE_IMPORT_ILL_OBJECT_TYPE     1
    ITAB_DUPLICATE_KEY     1
    SAPSQL_INVALID_TABLENAME     1
    DBIF_RTAB_SQL_ERROR     1
    DBIF_DSQL2_OBJ_UNKNOWN     1
    SAPSQL_ARRAY_INSERT_DUPREC     1
    GETWA_NOT_ASSIGNED     1
    <b>Post Upgrade     </b>
    <b>Name of runtime error     Count</b>
    MESSAGE_TYPE_X     211
    DBIF_RSQL_SQL_ERROR     16
    STORAGE_PARAMETERS_WRONG_SET     11
    OBJECTS_OBJREF_NOT_ASSIGNED     10
    CALL_FUNCTION_SEND_ERROR     9
    SYNTAX_ERROR     9
    TIME_OUT     8
    TSV_TNEW_PAGE_ALLOC_FAILED     6
    TYPELOAD_LOST     5
    CALL_FUNCTION_OPEN_ERROR     5
    IMPORT_FORMAT_ERROR     5
    SYSTEM_CORE_DUMPED     4
    DBIF_RSQL_INVALID_RSQL     3
    LOAD_PROGRAM_LOST     3
    UNCAUGHT_EXCEPTION     3
    SAPSQL_CURSOR_ALREADY_OPEN     3
    RAISE_EXCEPTION     2
    CALL_FUNCTION_NOT_FOUND     2
    CALL_FUNCTION_NO_DEST     2
    DBIF_SETG_SQL_ERROR     2
    RFC_ATTACH_GUI_FAILED     2
    ITAB_DUPLICATE_KEY     1
    SAPSQL_INVALID_TABLENAME     1
    CALL_FUNCTION_ACCEPT_FAILED     1
    CONNE_IMPORT_ILL_OBJECT_TYPE     1
    SAPSQL_INVALID_FIELDNAME     1
    TYPELOAD_NEW_VERSION     1
    SYSTEM_CANCELED     1

    Hi Jeevi,
    You can check Dump using ST22 transaction. Dump analysis is nothing but the analysis as what was the cause of dump, what went on the worng in the program which resulted in dump and such questions and getting there answers.
    Reward points if useful.
    Regards,
    Atish

  • As much as the space in HD is necessary to be able to make a Client Copy??

    Hi everybody!!
    As much as the space in HD is necessary to be able to make a Client Copy??
    After the installation, the still servant with approximately 11 GB of free space in C (Total 30 GB) and around 100 free GB in E (Total 190 GB) , in E installed SAP  himself ECC6 along with the data base ( Oracle 10,0,2 ), when all tag aiming at the record E did installation  itself, but in a minute to make the Client Copy he remains without space in the Drive C (38,3 MB Free)
    The Client Copy is for the "Client 300 Test", the Client Copy in DEV with 3 Client ( 100 DEV, 120 QA DEV, 130 Sandbox ) it could come true trouble-free
    thanks
    Edited by: Manuel Sandoval on Aug 18, 2008 7:16 PM
    Edited by: Manuel Sandoval on Aug 18, 2008 7:20 PM

    Where do the "Client Copy" goes down the process in reviewing the "TCode ST22" I find the following:
    Runtime Errors         DBIF_SETG_SQL_ERROR
    Date and Time          19.08.2008 06:21:19
    Short text
         SQL error occurred when accessing table.
    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.
    How to correct the error
         Database error text........: "ORA-03106: fatal two-task communication protocol
          error"
         Internal call code.........: "[SETG/GET /INDX_HIER ]"
         Please check the entries in the system log (Transaction SM21).
         If the error occures in a non-modified SAP program, you may be able to
         find an interim solution in an SAP Note.
         If you have access to SAP Notes, carry out a search with the following
         keywords:
         "DBIF_SETG_SQL_ERROR" " "
         "SAPLSHI2" or "LSHI2U25"
         "STREE_READ_BUFFERED_DATA_GENER"
        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... "mts-qua"
        Network address...... "192.168.1.48"
        Operating system..... "Windows NT"
        Release.............. "5.2"
        Hardware type........ "4x Intel 80686"
        Character length.... 16 Bits
        Pointer length....... 32 Bits
        Work process number.. 0
        Shortdump setting.... "full"
        Database server... "MTS-QUA"
        Database type..... "ORACLE"
        Database name..... "ECQ"
        Database user ID.. "SAPSR3"
        Char.set.... "C"
        SAP kernel....... 700
        created (date)... "May 22 2007 00:14:27"
        create on........ "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
        Database version. "OCI_10201_SHARE (10.2.0.1.0) "
        Patch level. 111
        Patch text.. " "
        Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
        SAP database version. 700
        Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows
         NT 6.0"
        Memory consumption
        Roll.... 8176
        EM...... 2090448
        Heap.... 0
        Page.... 16384
        MM Used. 1943008
        MM Free. 145920
    User and Transaction
        Client.............. 300
        User................ "SAP*"
        Language key........ "E"
        Transaction......... " "
        Program............. "SAPLSHI2"
        Screen.............. "SAPLSMTR_NAVIGATION 0100"
        Screen line......... 2
    Information on where terminated
        Termination occurred in the ABAP program "SAPLSHI2" - in
         "STREE_READ_BUFFERED_DATA_GENER".
        The main program was "SAPLSMTR_NAVIGATION ".
        In the source code you have the termination point in line 57
        of the (Include) program "LSHI2U25".
    Source Code Extract
    Line  SourceCde
       27             DO_NOT_READ_DEVCLASS       = 'X'
       28        IMPORTING
       29 *          MESSAGE          =
       30             STRUCTURE_HEADER = STRUCTURE_HEADER
       31        EXCEPTIONS
       32             OTHERS           = 0.
       33 *
       34   READ TABLE BUFFER_DATA WITH KEY TREE_ID = STRUCTURE_ID.
       35   MODIFY_INDEX = SY-TABIX.
       36 *
       37   IF NOT STRUCTURE_HEADER-BUFFERVAR CS BUF_NODE.
       38     GET_NODES = FALSE.
       39     BUFFER_DATA-NODES_OK = FALSE.
       40   ENDIF.
       41   IF NOT STRUCTURE_HEADER-BUFFERVAR CS BUF_REF.
       42     GET_REFERENCES = FALSE.
       43     BUFFER_DATA-REFS_OK = FALSE.
       44   ENDIF.
       45   IF NOT STRUCTURE_HEADER-BUFFERVAR CS BUF_TEXT.
       46     GET_TEXTS_LANGUAGE = SPACE.
       47     BUFFER_DATA-TEXT_OK = FALSE.
       48   ENDIF.
       49 *
       50 * get nodes and/or references
       51   IF GET_NODES EQ TRUE OR GET_REFERENCES EQ TRUE.
       52     SELECT SINGLE * FROM TTREELOADS WHERE TREE_ID EQ STRUCTURE_ID.
       53     IF SY-SUBRC EQ 0.
       54       CLEAR BUFFER_NODES. REFRESH BUFFER_NODES.
       55       CLEAR BUFFER_REFS. REFRESH BUFFER_REFS.
       56       IF GET_NODES EQ TRUE AND GET_REFERENCES EQ TRUE.
    >>>>>         IMPORT BUFFER_NODES BUFFER_REFS FROM DATABASE INDX_HIER(XX)
       58                                ID STRUCTURE_ID.
       59         BUFFER_DATA-NODES_READ = TRUE.
       60         BUFFER_DATA-REFS_READ = TRUE.
       61       ELSE.
       62         IF GET_NODES EQ TRUE.
       63           IMPORT BUFFER_NODES FROM DATABASE INDX_HIER(XX)
       64                                ID STRUCTURE_ID.
       65           BUFFER_DATA-NODES_READ = TRUE.
       66         ELSEIF GET_REFERENCES EQ TRUE.
       67           IMPORT BUFFER_REFS  FROM DATABASE INDX_HIER(XX)
       68                                ID STRUCTURE_ID.
       69           BUFFER_DATA-REFS_READ = TRUE.
       70         ENDIF.
       71       ENDIF.
       72 *     nodes[] = buffer_nodes[].
       73 *     references[] = buffer_refs[].
       74       APPEND LINES OF BUFFER_NODES TO NODES.
       75       APPEND LINES OF BUFFER_REFS  TO REFERENCES.
       76     ELSE.
    Contents of system fields
    Name     Val.
    SY-SUBRC 0
    SY-INDEX 0
    SY-TABIX 1
    SY-DBCNT 1
    SY-FDPOS 2
    SY-LSIND 0
    SY-PAGNO 0
    SY-LINNO 1
    SY-COLNO 1
    SY-PFKEY
    SY-UCOMM
    SY-TITLE SAP Easy Access
    SY-MSGTY E
    SY-MSGID 01
    SY-MSGNO 289
    SY-MSGV1 SAP*
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO 0
    SY-DATUM 20080819
    SY-UZEIT 062116
    SY-XPROG
    SY-XFORM
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
          Name
       10 FUNCTION     SAPLSHI2                            LSHI2U25                               57
          STREE_READ_BUFFERED_DATA_GENER
        9 FUNCTION     SAPLSHI2                            LSHI2U14                               82
          STREE_READ_TOP_LINE_GENER
        8 FUNCTION     SAPLSHI1                            LSHI1U12                               73
          STREE_STRUCTURE_READ_TOP_NODE
        7 FUNCTION     SAPLSHI1                            LSHI1U14                               47
          STREE_STRUCTURE_READ_N_TOP_LEV
        6 FUNCTION     SAPLSHI6                            LSHI6U08                               38
          STREE_HIERARCHY_READ
        5 FUNCTION     SAPLSMNU_NEW                        LSMNU_NEWU02                          130
          MENU_GET_MENU_TREE_PART
        4 FUNCTION     SAPLSMTR_NAVIGATION_MODULES         LSMTR_NAVIGATION_MODULESU01           140
          NAVIGATION_LOAD_MENU_DATA
        3 FORM         SAPLSMTR_NAVIGATION                 LSMTR_NAVIGATIONF11                    14
          HELP_FORM_LOAD_ALL
        2 FORM         SAPLSMTR_NAVIGATION                 LSMTR_NAVIGATIONF0I                   511
          CONTROL_INITIALIZE_TREE
        1 MODULE (PBO) SAPLSMTR_NAVIGATION                 LSMTR_NAVIGATIONO01                    10
          STATUS_0100
    Chosen variables
    Name
        Val.
    No.      10 Ty.          FUNCTION
    Name  STREE_READ_BUFFERED_DATA_GENER
    GET_NODES
        X
        5
        8
        0
        0
    GET_REFERENCES
        X
        5
        8
        0
        0
    GET_TEXTS_LANGUAGE
        2
        0
        0
        0
    STRUCTURE_ID
        S000
        53332222222222222222222222222222
        30000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
    NODES[]
        Table IT_235[0x1102]
        \FUNCTION=STREE_READ_TOP_LINE_GENER\DATA=INEXTLEVEL[]
        Table reference: 44
        TABH+  0(20) = 00000000800EC451000000002C000000EB000000
        TABH+ 20(20) = 000000004E040000FFFFFFFF046C0000F0080000
        TABH+ 40( 8) = 08000000C1248001
        store        = 0x00000000
        ext1         = 0x800EC451
        shmId        = 0     (0x00000000)
        id           = 44    (0x2C000000)
        label        = 235   (0xEB000000)
        fill         = 0     (0x00000000)
        leng         = 1102  (0x4E040000)
        loop         = -1    (0xFFFFFFFF)
        xtyp         = TYPE#000033
        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         = 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      = 0x00000000
        collHook     = 0x00000000
        ext2         = 0x30F6BC51
        >>>>> 2nd level extension part <<<<<
        tabhBack     = 0xC013B251
        delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
        pb_func      = 0x00000000
        pb_handle    = 0x00000000
    REFERENCES[]
        Table IT_236[0x516]
        \FUNCTION=STREE_READ_TOP_LINE_GENER\DATA=REFERENCES[]
        Table reference: 45
        TABH+  0(20) = 00000000C0F6BC51000000002D000000EC000000
        TABH+ 20(20) = 0000000004020000FFFFFFFF046C000020120000
        TABH+ 40( 8) = 10000000C1248001
        store        = 0x00000000
        ext1         = 0xC0F6BC51
        shmId        = 0     (0x00000000)
        id           = 45    (0x2D000000)
        label        = 236   (0xEC000000)
        fill         = 0     (0x00000000)
        leng         = 516   (0x04020000)
        loop         = -1    (0xFFFFFFFF)
        xtyp         = TYPE#000082
        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         = 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      = 0x00000000
        collHook     = 0x00000000
        ext2         = 0x78F6BC51
        >>>>> 2nd level extension part <<<<<
        tabhBack     = 0x0014B251
        delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
        pb_func      = 0x00000000
        pb_handle    = 0x00000000
    TEXTS[]
        Table[initial]
    SY-REPID
        SAPLSHI2
        5454544322222222222222222222222222222222
        310C389200000000000000000000000000000000
        0000000000000000000000000000000000000000
        0000000000000000000000000000000000000000
    UP_NAME_USER_EXIT_2
        USER_EXIT_2
        5545545455322222222222222
        5352F5894F200000000000000
        0000000000000000000000000
        0000000000000000000000000
    REF_TABLE_NAME
        2222222222222222
        0000000000000000
        0000000000000000
        0000000000000000
    I_TNODET[]
        Table[initial]
    TTREELOADS
        S000                            20060927073108G
        53332222222222222222222222222222333333333333334
        30000000000000000000000000000000200609270731087
        00000000000000000000000000000000000000000000000
        00000000000000000000000000000000000000000000000
    NODE_TYPE_STEXT_F_MODULE
        STREE_NODE_TYPE_GET_STEXT_XXXX
        555445444455554544555545555555
        34255FEF45F4905F754F34584F8888
        000000000000000000000000000000
        000000000000000000000000000000
    SY-SUBRC
        0
        0000
        0000
    BUFFER_NODES
        2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    BUFFER_NODES[]
        Table[initial]
    BUFFER_REFS
        2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    BUFFER_REFS[]
        Table[initial]
    TRUE
        X
        5
        8
        0
        0
    SYST-REPID
        SAPLSHI2
        5454544322222222222222222222222222222222
        310C389200000000000000000000000000000000
        0000000000000000000000000000000000000000
        0000000000000000000000000000000000000000
    INDX_HIER
        XXS000                            ############################################################
        5553332222222222222222222222222222000000000000000000000000000000000000000000000000000000000000
        8830000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    INDX_HIER-CLUSTR
        0
        00
        00
    GLOBAL_TREE_REF_TYPE_STXT
        STREE_GET_STEXT_FOR_RTYPE_XXXX
        555445445555455544555555455555
        34255F754F34584F6F2F24905F8888
        000000000000000000000000000000
        000000000000000000000000000000
    PROPERTY_OWN_LONGTEXT
        1
        3
        1
        0
        0
    NODE_TYPES_WITH_OWN_LONGTEXT[]
        Table[initial]
    TRTYPEH
        2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_ARCHIVE
        2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    %_DUMMY$$
        2222
        0000
        0000
        0000
    No.       9 Ty.          FUNCTION
    Name  STREE_READ_TOP_LINE_GENER
    DISPLAY_MODE
        D
        4
        4
        0
        0
    FILTER_ID
        22222222222222222222222222222222
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
    STRUCTURE_ID
        S000
        53332222222222222222222222222222
        30000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
    TABLE_NAME
        TMENU01
        544453322222222
        4D5E50100000000
        000000000000000
        000000000000000
    MESSAGE
                             000
        2222222222222222222223332222222222222222222222222222222222222222222222222222222222222222222222
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
        0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    PARENT_NODE
        22222222222222222222222222222222
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
    STRUCTURE_TOP_LINE[]
        Table IT_233[0x1234]
        \FUNCTION=STREE_STRUCTURE_READ_N_TOP_LEV\DATA=STRUCTURE[]
        Table reference: 42
        TABH+  0(20) = 0000000030F1C151000000002A000000E9000000
        TABH+ 20(20) = 00000000D2040000FFFFFFFF04640000900E0000
        TABH+ 40( 8) = 08000000C1248001
        store        = 0x00000000
        ext1         = 0x30F1C151
        shmId        = 0     (0x00000000)
        id           = 42    (0x2A000000)
        label        = 233   (0xE9000000)
        fill         = 0     (0x00000000)
        leng         = 1234  (0xD2040000)
        loop         = -1    (0xFFFFFFFF)
        xtyp         = TYPE#000063
        occu         = 8     (0x08000000)
        access       = 1     (ItAccessStandard)

Maybe you are looking for

  • Clicking on a link to open a new page or tab gives me a blank page.

    If I click on a link to open a new page or a new tab, the page that opens is always blank and no address is in the address bar. Also, occasionally, my refresh button is "grayed" out so I can't hit that either. I think this is some sort of security se

  • Credit Memo and AR Invoice Query

    Hi Everyone, I'm fairly new to query writing and need to write a query that would list all of the credit memos and invoices.  I was able to write the following query that pulls just the AR Invoice info.  How do I also pull the AR Credit Memo info?  S

  • XI3.0 - file adapter create directory

    Hi, Is there anyway in 3.0 to prevent a receiver file adapter from creating a directory if it does not already exist.  There was a parameter in the J2SE adapter but I do not know if or how this has been implemented in 3.0. Regards Ian

  • Text problems

    I just got my first Blackberry Pearl yesterday. Everything is great...except the SMS text messaging. When I go to compose an SMS text, the little box you type into disappears as soon as you start typing and doesn't reappear until the cursor moves to

  • Recently formatted my machine

    I own a touchsmart 610-1190f, i formatted the hard drive. I no longer have my drivers, which ones should i download? I use to have popups when i change volumes and i had HP software istalled, i really want this back to enjoy my home theater experienc