Regarding EXPORT_COMPRESS_ERROR ABAP dump

Hello Experts,
In our BI System, we are getting EXPORT_COMPRESS_ERROR ABAP dump. And not able to find out any SAP notes regarding this dump.
Waiting for your kind response.
Runtime Errors         EXPORT_COMPRESS_ERROR
Date and Time          11.04.2008 16:40:42
Short text
Internal error when compressing data.
What happened?
Error in the SAP kernel.
The current ABAP "SAPLRSDRI_SERVICES" program had to be terminated because the
ABAP processor detected an internal system error.
In the EXPORT TO DATABASE statement, an internal error occurred
when compressing data.
What can you do?
Note which actions and input led to the error.
For further help in handling the problem, contact your SAP administrator
You can use the ABAP dump analysis transaction ST22 to view and manage
termination messages, in particular for long term reference.
Error analysis
There is an internal system error.
eliminated with ABAP/4.
Last error logged in SAP kernel
Component............ "EM"
Place................ "SAP-Server u962004s_P38_67 on host u962004s (wp 23)"
Version.............. 37
Error code........... 7
Error text........... "Warning: EM-Memory exhausted: Workprocess gets PRIV "
Description.......... " "
System call.......... " "
Module............... "emxx.c"
Line................. 1881
The error reported by the operating system is:
Error number..... " "
Error text....... " "
How to correct the error
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:
"EXPORT_COMPRESS_ERROR" " "
"SAPLRSDRI_SERVICES" or "LRSDRI_SERVICESF01"
"DATA_WRAP_UC"
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... "u962004s"
Network address...... "10.200.230.110"
Operating system..... "HP-UX"
Release.............. "B.11.23"
Hardware type........ "ia64"
Character length.... 8 Bits
Pointer length....... 64 Bits
Work process number.. 23
Shortdump setting.... "full"
Database server... "u962004s"
Database type..... "ORACLE"
Database name..... "P38"
Database user ID.. "SAPP38"
Char.set.... "de_DE.iso88591"
SAP kernel....... 700
created (date)... "Dec 30 2007 21:06:56"
create on........ "HP-UX B.11.23 U ia64"
Database version. "OCI_102 (10.2.0.2.0) "
Patch level. 141
Patch text.. " "
Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
SAP database version. 700
Operating system..... "HP-UX B.11"
Memory consumption
Roll.... 6219104
EM...... 2291965488
Heap.... 2302579280
Page.... 16384
MM Used. 4399764848
MM Free. 194652624
User and Transaction
Client.............. 100
User................ "K59461"
Language Key........ "D"
Transaction......... " "
Transactions ID..... "47FF35AD14F65486E10000000AC8E66E"
Program............. "SAPLRSDRI_SERVICES"
Screen.............. "SAPMSSY1 3004"
Screen Line......... 2
Information on caller of Remote Function Call (RFC):
System.............. "P38"
Database Release.... 700
Kernel Release...... 700
Connection Type..... 3 (2=R/2, 3=ABAP System, E=Ext., R=Reg. Ext.)
Call Type........... "asynchron with reply and non-transactional (emode 0,
imode 0)"
Inbound TID.........." "
Inbound Queue Name..." "
Outbound TID........." "
Outbound Queue Name.." "
Client.............. 100
User................ "K59461"
Transaction......... " "
Call Program........."SAPLZ_ZOP01_VCUBES"
Function Module..... "RSDRI_INFOPROV_READ_RFC"
Call Destination.... "NONE"
Source Server....... "u962004s_P38_67"
Source IP Address... "10.200.230.110"
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 "SAPLRSDRI_SERVICES" - in
"DATA_WRAP_UC".
The main program was "SAPMSSY1 ".
In the source code you have the termination point in line 194
of the (Include) program "LRSDRI_SERVICESF01".
Source Code Extract
Line
SourceCde
164
165
CLEAR: l_string.
166
167
CALL METHOD cl_abap_container_utilities=>fill_container_c
168
EXPORTING
169
im_value     = <l_s_data>
170
IMPORTING
171
ex_container = l_string.
172
173
PERFORM wrap_str_to_c255
174
USING    l_string
175
CHANGING e_t_outdata.
176
177
ENDLOOP.
178
179
ENDFORM.                    " data_wrap_std
180
181
*&      Form  data_wrap_uc
182
183
      text
184
185
     -->P_I_T_DATA  text
186
     <--P_E_OUTDATA_UC  text
187
188
FORM data_wrap_uc
189
USING    i_t_data      TYPE STANDARD TABLE
190
i_compress    TYPE rs_bool
191
CHANGING e_outdata_uc  TYPE xstring.
192
193
IF i_compress = rs_c_true.
>>>>>
EXPORT rsdri = i_t_data
195
TO DATA BUFFER e_outdata_uc
196
COMPRESSION ON.
197
ELSE.
198
EXPORT rsdri = i_t_data
199
TO DATA BUFFER e_outdata_uc
200
COMPRESSION OFF.
201
ENDIF.
202
203
IF sy-subrc <> 0.
204
   RAISE conversion_error.
205
ENDIF.
206
207
ENDFORM.                    " data_wrap_uc
208
209
210
FORM data_wrap_250
211
212
213
Contents of system fields
Name
Val.
SY-SUBRC
0
SY-INDEX
1
SY-TABIX
0
SY-DBCNT
1
SY-FDPOS
25
SY-LSIND
0
SY-PAGNO
0
SY-LINNO
1
SY-COLNO
1
SY-PFKEY
SY-UCOMM
SY-TITLE
CPIC- und RFC-Steuerung
SY-MSGTY
E
SY-MSGID
BL
SY-MSGNO
209
SY-MSGV1
SY-MSGV2
SY-MSGV3
SY-MSGV4
SY-MODNO
0
SY-DATUM
20080411
SY-UZEIT
163555
SY-XPROG
SAPLRSDRI
SY-XFORM
RSDRI_INFOPROV_READ_RFC
Active Calls/Events
No.   Ty.          Program                             Include                             Line
Name
7 FORM         SAPLRSDRI_SERVICES                  LRSDRI_SERVICESF01                    194
DATA_WRAP_UC
6 FUNCTION     SAPLRSDRI_SERVICES                  LRSDRI_SERVICESU04                     29
RSDRI_DATA_WRAP
5 FORM         GP49E5DYREKDNLT28VWMJJ5FAZY         GP49E5DYREKDNLT28VWMJJ5FAZY           199
INFOPROV_READ_RSDRI
4 FUNCTION     SAPLRSDRI                           LRSDRIU02                             153
RSDRI_INFOPROV_READ_RFC
3 FORM         SAPLRSDRI                           LRSDRIU02                               1
RSDRI_INFOPROV_READ_RFC
2 FORM         SAPMSSY1                            SAPMSSY1                               85
REMOTE_FUNCTION_CALL
1 MODULE (PBO) SAPMSSY1                            SAPMSSY1                               30
%_RFC_START
Chosen variables
Name
Val.
No.       7 Ty.          FORM
Name  DATA_WRAP_UC
SYST-REPID
SAPLRSDRI_SERVICES
5454554545545544452222222222222222222222
310C23429F352693530000000000000000000000
I_COMPRESS
X
5
8
RS_C_TRUE
X
5
8
SY
###############################################################################À##############
0000000000000000000000000000000000000000000000010000000000000000000000000000000C00000000000000
0001000000000000000000000000000000000000000100090001000000010000000000000000002000000000000000
I_T_DATA
Table IT_4214[3004988x1456]
PROGRAM=GP49E5DYREKDNLT28VWMJJ5FAZYFORM=INFOPROV_READ_RSDRIDATA=L_T_DATA
Table reference: 245
TABH+  0(20) = C0000005B3A98DB0000000000000000000000000
TABH+ 20(20) = 000000F500001076002DDA3C000005B0FFFFFFFF
TABH+ 40(16) = 0400002A00000B10000824C401800000
store        = 0xC0000005B3A98DB0
ext1         = 0x0000000000000000
shmId        = 0     (0x00000000)
id           = 245   (0x000000F5)
label        = 4214  (0x00001076)
fill         = 3004988 (0x002DDA3C)
leng         = 1456  (0x000005B0)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000040
occu         = 8     (0x00000008)
access       = 1     (ItAccessStandard)
idxKind      = 0     (ItIndexNone)
uniKind      = 2     (ItUniqueNon)
keyKind      = 1     (default)
cmpMode      = 8     (cmpManyEq)
occu0        = 1
groupCntl    = 0
rfc          = 0
unShareable  = 0
mightBeShared = 0
sharedWithShmTab = 0
isShmLockId  = 0
gcKind       = 0
isUsed       = 1
isCtfyAble   = 1
>>>>> Shareable Table Header Data <<<<<
tabi         = 0xC0000009BB9B2090
pgHook       = 0x600000008EAEC160
idxPtr       = 0x0000000000000000
shmTabhSet   = 0x0000000000000000
id           = 3503  (0x00000DAF)
refCount     = 0     (0x00000000)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 3014656 (0x002E0000)
lineAlloc    = 3004992 (0x002DDA40)
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
%_DUMMY$$
2222
0000
E_OUTDATA_UC
ÿ#######1100####ÒWÜ#####°ï6=³$Ç~ßsæ#ä5L#¼ -^##há#°#!&ß3#ð#ô#Á#p6##Òâ¬###Å#.À#6²aÀ#kÀ6´1ÀOp##ú#
F000008033330000D5D01190BE33B2C7D7E8E348BA25816E8B822D30F8F1C07321DEA019C12C93B6C86C3B3C4700F0
F61122001100000027C52FD20F6D347EF36545C1C0DE008100016F3B064D13063B22C59855E056210BB06410F019A0
SYST
###############################################################################À##############
0000000000000000000000000000000000000000000000010000000000000000000000000000000C00000000000000
0001000000000000000000000000000000000000000100090001000000010000000000000000002000000000000000
No.       6 Ty.          FUNCTION
Name  RSDRI_DATA_WRAP
I_COMPRESS
X
5
8
I_RESULT250
2
0
I_T_DATA
Table IT_4214[3004988x1456]
I_UNICODE_RESULT
X
5
8
E_OUTDATA_UC
ÿ#######1100####ÒWÜ#####°ï6=³$Ç~ßsæ#ä5L#¼ -^##há#°#!&ß3#ð#ô#Á#p6##Òâ¬###Å#.À#6²aÀ#kÀ6´1ÀOp##ú#
F000008033330000D5D01190BE33B2C7D7E8E348BA25816E8B822D30F8F1C07321DEA019C12C93B6C86C3B3C4700F0
F61122001100000027C52FD20F6D347EF36545C1C0DE008100016F3B064D13063B22C59855E056210BB06410F019A0
E_T_OUTDATA
Table[initial]
E_T_OUTDATA250
Table[initial]
RS_C_FALSE
2
0
SY-REPID
SAPLRSDRI_SERVICES
5454554545545544452222222222222222222222
310C23429F352693530000000000000000000000
No.       5 Ty.          FORM
Name  INFOPROV_READ_RSDRI
SY-SUBRC
0
0000
0000
SY-REPID
GP49E5DYREKDNLT28VWMJJ5FAZY
4533434554444453355444344552222222222222
7049554925B4EC42867DAA561A90000000000000
SY
###############################################################################À##############
0000000000000000000000000000000000000000000000010000000000000000000000000000000C00000000000000
0001000000000000000000000000000000000000000100090001000000010000000000000000002000000000000000
%_DUMMY$$
2222
0000
%_SPACE
2
0
SYST-REPID
GP49E5DYREKDNLT28VWMJJ5FAZY
4533434554444453355444344552222222222222
7049554925B4EC42867DAA561A90000000000000
I_OUTU
X
5
8
RS_C_TRUE
X
5
8
L_T_DATA
Table IT_4214[3004988x1456]
E_RFCOUT_UC
ÿ#######1100####ÒWÜ#####°ï6=³$Ç~ßsæ#ä5L#¼ -^##há#°#!&ß3#ð#ô#Á#p6##Òâ¬###Å#.À#6²aÀ#kÀ6´1ÀOp##ú#
F000008033330000D5D01190BE33B2C7D7E8E348BA25816E8B822D30F8F1C07321DEA019C12C93B6C86C3B3C4700F0
F61122001100000027C52FD20F6D347EF36545C1C0DE008100016F3B064D13063B22C59855E056210BB06410F019A0
I_S_RFCMODE
0.0.0.1.
22222222222222222222222222222222222222220000
00000000000000000000000000000000000000000000
I_S_RFCMODE-RFC_RECEIVER
222222222222222222222222222222
000000000000000000000000000000
E_EOD
X
5
8
I_S_RFCMODE-ID
2222222222
0000000000
No.       4 Ty.          FUNCTION
Name  RSDRI_INFOPROV_READ_RFC
I_AUTHORITY_CHECK
R
5
2
I_CURRENCY_CONVERSION
X
5
8
I_DEBUG
2
0
I_FILENAME
222222222222222222222222222222222222222222222222222222222222
000000000000000000000000000000000000000000000000000000000000
I_INFOPROV
B100_CB3E
433354434222222222222222222222
2100F3235000000000000000000000
I_MAXROWS
0
0000
0000
I_READ_ODS_DELTA
2
0
I_REFERENCE_DATE
20080411
33333333
20080411
I_RESULTTYPE
U
5
5
I_ROLLUP_ONLY
X
5
8
I_SAVE_IN_FILE
2
0
I_SAVE_IN_TABLE
2
0
I_S_RFCMODE
0.0.0.1.
22222222222222222222222222222222222222220000
00000000000000000000000000000000000000000000
I_TABLENAME
222222222222222222222222222222
000000000000000000000000000000
I_USE_AGGREGATES
X
5
8
I_USE_DB_AGGREGATION
X
5
8
E_AGGREGATE
B100_CB3E$X
433354434252222222222222222222
2100F3235480000000000000000000
E_END_OF_DATA
X
5
8
E_RFCDATA_UC
ÿ#######1100####ÒWÜ#####°ï6=³$Ç~ßsæ#ä5L#¼ -^##há#°#!&ß3#ð#ô#Á#p6##Òâ¬###Å#.À#6²aÀ#kÀ6´1ÀOp##ú#
F000008033330000D5D01190BE33B2C7D7E8E348BA25816E8B822D30F8F1C07321DEA019C12C93B6C86C3B3C4700F0
F61122001100000027C52FD20F6D347EF36545C1C0DE008100016F3B064D13063B22C59855E056210BB06410F019A0
E_SPLIT_OCCURRED
2
0
E_T_FIELD[]
Table IT_4[180x40]
FUNCTION-POOL=RSDRIFORM=RSDRI_INFOPROV_READ_RFCDATA=%_%_E_T_FIELD
Table reference: 4
TABH+  0(20) = C0000005B3902040C0000005B38D281000000000
TABH+ 20(20) = 0000000400000004000000B400000028FFFFFFFF
TABH+ 40(16) = 0400000100000F700010249401800000
store        = 0xC0000005B3902040
ext1         = 0xC0000005B38D2810
shmId        = 0     (0x00000000)
id           = 4     (0x00000004)
label        = 4     (0x00000004)
fill         = 180   (0x000000B4)
leng         = 40    (0x00000028)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000060
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         = 0xC0000005B39020A0
pgHook       = 0xC0000005B38FC770
idxPtr       = 0x0000000000000000
shmTabhSet   = 0x0000000000000000
id           = 16    (0x00000010)
refCount     = 0     (0x00000000)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 304   (0x00000130)
lineAlloc    = 304   (0x00000130)
shmVersId    = 0     (0x00000000)
shmRefCount  = 1     (0x00000001)
>>>>> 1st level extension part <<<<<
regHook      = 0x0000000000000000
collHook     = 0x0000000000000000
ext2         = 0xC0000005B38D27A0
>>>>> 2nd level extension part <<<<<
tabhBack     = 0xC0000005B38D2740
delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
pb_func      = 0x0000000000000000
pb_handle    = 0x0000000000000000
E_T_RFCDATA[]
Table IT_5[0x256]
FUNCTION-POOL=RSDRIFORM=RSDRI_INFOPROV_READ_RFCDATA=%_%_E_T_RFCDATA
Table reference: 5
TABH+  0(20) = 0000000000000000C0000005B38D292000000000
TABH+ 20(20) = 00000005000000050000000000000100FFFFFFFF
TABH+ 40(16) = 0400000100000E580010249401800000
store        = 0x0000000000000000
ext1         = 0xC0000005B38D2920
shmId        = 0     (0x00000000)
id           = 5     (0x00000005)
label        = 5     (0x00000005)
fill         = 0     (0x00000000)
leng         = 256   (0x00000100)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000055
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         = Not allocated
pghook       = Not allocated
idxPtr       = Not allocated
shmTabhSet   = Not allocated
id           = Not allocated
refCount     = Not allocated
tstRefCount  = Not allocated
lineAdmin    = Not allocated
lineAlloc    = Not allocated
shmVersId    = Not allocated
shmRefCount  = Not allocated
shmIsReadOnly = Not allocated
>>>>> 1st level extension part <<<<<
regHook      = 0x0000000000000000
collHook     = 0x0000000000000000
ext2         = 0xC0000005B38D28B0
>>>>> 2nd level extension part <<<<<
tabhBack     = 0xC0000005B38D2850
delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
pb_func      = 0x0000000000000000
pb_handle    = 0x0000000000000000
E_T_RFCDATAV[]
Table IT_6[0x100]
FUNCTION-POOL=RSDRIFORM=RSDRI_INFOPROV_READ_RFCDATA=%_%_E_T_RFCDATAV
Table reference: 6
TABH+  0(20) = 0000000000000000C0000005B38D2A3000000000
TABH+ 20(20) = 00000006000000060000000000000064FFFFFFFF
TABH+ 40(16) = 0400000100000F000010249401800000
store        = 0x0000000000000000
ext1         = 0xC0000005B38D2A30
shmId        = 0     (0x00000000)
id           = 6     (0x00000006)
label        = 6     (0x00000006)
fill         = 0     (0x00000000)
leng         = 100   (0x00000064)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000058
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         = Not allocated
pghook       = Not allocated
idxPtr       = Not allocated
shmTabhSet   = Not allocated
id           = Not allocated
refCount     = Not allocated
tstRefCount  = Not allocated
lineAdmin    = Not allocated
lineAlloc    = Not allocated
shmVersId    = Not allocated
shmRefCount  = Not allocated
shmIsReadOnly = Not allocated
>>>>> 1st level extension part <<<<<
regHook      = 0x0000000000000000
collHook     = 0x0000000000000000
ext2         = 0xC0000005B38D29C0
>>>>> 2nd level extension part <<<<<
tabhBack     = 0xC0000005B38D2960
delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
pb_func      = 0x0000000000000000
pb_handle    = 0x0000000000000000
I_T_RANGE[]
Table IT_0[24x153]
FUNCTION-POOL=RSDRIFORM=RSDRI_INFOPROV_READ_RFCDATA=%_%_I_T_RANGE
Table reference: 0
TABH+  0(20) = C0000005B38C97E0C0000005B38C97A000000000
TABH+ 20(20) = 00000000000000000000001800000099FFFFFFFF
TABH+ 40(16) = 04000001000004B80010249421800000
store        = 0xC0000005B38C97E0
ext1         = 0xC0000005B38C97A0
shmId        = 0     (0x00000000)
id           = 0     (0x00000000)
label        = 0     (0x00000000)
fill         = 24    (0x00000018)
leng         = 153   (0x00000099)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000011
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 = 1
sharedWithShmTab = 0
isShmLockId  = 0
gcKind       = 0
isUsed       = 1
isCtfyAble   = 1
>>>>> Shareable Table Header Data <<<<<
tabi         = 0xC0000005B38C9840
pgHook       = 0xC0000005B38CA1F0
idxPtr       = 0x0000000000000000
shmTabhSet   = 0x0000000000000000
id           = 2     (0x00000002)
refCount     = 1     (0x00000001)
tstRefCount  = 0     (0x00000000)
lineAdmin    = 48    (0x00000030)
lineAlloc    = 48    (0x00000030)
shmVersId    = 0     (0x00000000)
shmRefCount  = 3     (0x00000003)
>>>>> 1st level extension part <<<<<
regHook      = 0xC0000005B3AB3F70
collHook     = 0x0000000000000000
ext2         = 0xC0000005B38C9730
>>>>> 2nd level extension part <<<<<
tabhBack     = 0xC0000005B38C96D0
delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
pb_func      = 0x0000000000000000
pb_handle    = 0x0000000000000000
I_T_REQUID[]
Table IT_7[0x12]
FUNCTION-POOL=RSDRIFORM=RSDRI_INFOPROV_READ_RFCDATA=%_%_I_T_REQUID
Table reference: 7
TABH+  0(20) = 0000000000000000C0000005B38D2B4000000000
TABH+ 20(20) = 0000000700000007000000000000000CFFFFFFFF
TABH+ 40(16) = 04000001000006780010249401800000
store        = 0x0000000000000000
ext1         = 0xC0000005B38D2B40
shmId        = 0     (0x00000000)
id           = 7     (0x00000007)
label        = 7     (0x00000007)
fill         = 0     (0x00000000)
leng         = 12    (0x0000000C)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000019
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         = Not allocated
pghook       = Not allocated
idxPtr       = Not allocated
shmTabhSet   = Not allocated
id           = Not allocated
refCount     = Not allocated
tstRefCount  = Not allocated
lineAdmin    = Not allocated
lineAlloc    = Not allocated
shmVersId    = Not allocated
shmRefCount  = Not allocated
shmIsReadOnly = Not allocated
>>>>> 1st level extension part <<<<<
regHook      = 0x0000000000000000
collHook     = 0x0000000000000000
ext2         = 0xC0000005B38D2AD0
>>>>> 2nd level extension part <<<<<
tabhBack     = 0xC0000005B38D2A70
delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
pb_func      = 0x0000000000000000
pb_handle    = 0x0000000000000000
I_T_RTIME[]
Table IT_1[3x121]
FUNCTION-POOL=RSDRIFORM=RSDRI_INFOPROV_READ_RFCDATA=%_%_I_T_RTIME
Table reference: 1
TABH+  0(20) = C0000005B38CB680C0000005B38CB64000000000
TABH+ 20(20) = 00000001000000010000000300000079FFFFFFFF
TABH+ 40(16) = 04000001000005980010249401800000
store        = 0xC0000005B38CB680
ext1         = 0xC0000005B38CB640
shmId        = 0     (0x00000000)
id           = 1     (0x00000001)
label        = 1     (0x00000001)
fill         = 3     (0x00000003)
leng         = 121   (0x00000079)
loop         = -1    (0xFFFFFFFF)
xtyp         = TYPE#000015
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         = 0xC0000005B38CB6E0
pgHook       = 0x0000000000000000
idxPtr       = 0x0000000000000000
shmTabhSet   = 0x0000000000000000
id           = 3     (0x00000003)
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         = 0xC0000005B38CB5D0
>>>>> 2nd level extension part <<<<<
tabhBack     = 0xC0000005B38CB570
delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
pb_func      = 0x0000000000000000
pb_handle    = 0x0000000000000000
I_T_SFC[]
Table IT_2[17x52]
FUNCTION-POOL=RSDRIFORM=RSDRI_INFOPROV_READ_RFCDATA=%_%_I_T_SFC
Table reference: 2
TABH+  0(20) = C0000005B38CBFA0C0000005B38CBF6000000000
TABH+ 20(20) = 00000002000000020000001100000034FFFFFFFF
TABH+ 40(16) = 0400000100000DB00010249401800000
store        = 0xC0000005B38CBFA0
ext1         = 0xC0000005B38CBF60
shmId        = 0     (0x00000000)
i

Hello,
did you resolve the problem ?
Please tell me how if it's resolved.
Best Regards

Similar Messages

  • PNP_Report(Showing ABAP Dump)

    hi,
    i have created one ALV report(using PNP Log. database)and using standard selection screen ..
    the problem i am having is in runtime it showing ABAP DUMP Error called "<b>NO_FIELDCATALOG_AVAILABLE</b>"..
    and also i am not able to Apply check on the selection field of the standard selection screen...
    so need help on that..plz ...i am new to PNP Stuff...
    thanks in advance...

    thanks for response..one more problem i am having is i am applying checks on Standard selection screen...can this can be done if yes then plz suggest how...
    and regarding my ABAP Dump problem if i Specify GET PERNR statement in <b>INTIALIZATION Event</b> then it ALV Report work fine..but not picking up the data from Standard Selection screen which is must..and if specify same GET PERNR in <b>Start-of-selection event</b> then it gives this ABAP DUMP <b>"NO_FIELDCATALOG_AVAILABLE"..</b>AND not PICKING up the data from selection screen..
    Plz suggest any help i will be greatfull to you..
    Thanks in advance....

  • Regarding ABAP Dump found when saving the job.

    Hi all,
    Generally we create a job and once the job is created,we rasie Sales Order,Purchase Order and so on.
    When we create a job we give the details of the Sold -to-party,client,parent and child job text,advertising category,project type, sales organisation,Cost and profit center,person incharge and purchase division.
    After submitting these details the job gets created and the job number will be generated.
    But now we have created a new Sales Organisation, which is leading to ABAP Dump.
    The functional people have concluded that there is nothing wrong in the configaration settings.
    If we enter an existing sales organisation in the job creation process the job is getting created and the job number is displayed.
    But if we try to enter a new sales organisation the ABAP Dump is comming.
    After debugging we came to know that BAPI function Module called
    Bapi Project Maintain Call and inside that there is another bapi call called
    BAPI_PROJECT_MAINTAIN which is taking some structures as inputs among them
    this new sales org is there.

    Hi all,
    Is there any answer regarding this question.
    Thanx in advance

  • Regarding ABAP dump during time ticket confirmation.

    Hi PP Gurus,
    I'm getting an ABAP dump while doing time ticket confirmation for a process order using COR6N. The dump is coming only for one plant and all the plants are working fine.
    The reason for dump is
    The current application program detected a situation which really should not occur. Therefore, a termination with a short dump was triggered on purpose by the key word MESSAGE (type X).
    I tried to analyze the dump and got OSS# 385830. But this note only talking about the conversion of message from A to X type. What should be the reason (configuration/product error) behind that?
    If anybody came across the same, please comment on this
    Thanks & Regards,
    Abu Arbab

    Hi,
    Since this dump is happening only for a particular plant, compare the config set of this plant with the other plant which is working fine, you should be able to resolve it.
    Alternatively, ask your abaper to analyze the dump in ST22 & he / she should be able to let you know the exact reason why the dump is occurring.
    Regards,
    Vivek

  • Regarding ABAP dump

    Hi all,
    When i execute the tcode co02 for the order number 10015447 (only) and when i change the technical information and when i press save button the system leads to ABAP dump
    with parameters_not_valid message.
    I tried to find out SAP notes for the problem all notes
    saying that support package not required for version 4.6c.
    Can anybody help me regarding this matter
    with regards
    chandu.

    Hi Max,
    The termination occurred in the ABAP/4 program "SAPLCXOT " in           
    "CX_SCHED_VIA_OPERATING_TIME".                                          
    The main program was "SAPLCOKO1 ".                                                                
    The termination occurred in line 244                                    
    of the source code of program "LCXOTU01 " (when calling the editor 2440).
    002260         if not i_date_end is initial.                                    
    002270           call function 'DATE_TIME_CONVERT'                              
    002280                exporting                                                 
    002290                     date                 = i_date_end                    
    002300                     time                 = i_time_end                    
    002310                importing                                                 
    002320                     point_in_time        = i_point_in_time_end           
    002330                exceptions                                                
    002340                     date_before_rel_date = 01                            
    002350                     date_to_big          = 02.                           
    002360           if sy-subrc <> 0.                                              
    002370             e_message_code = mc-date_out_of_pit_range.                   
    002380           endif.                                                         
    002390         endif.                                                           
    002400       endif.                                                             
    002410   *   Eingabeparameter prüfen                                            
    002420       if i_point_in_time_start = 0 and                                   
    002430          i_point_in_time_end = 0.                                        
         >         raise parameters_not_valid.                                      
    002450       elseif i_duration_sec <> 0 and                                     
    002460              i_point_in_time_start <> 0 and                              
    002470              i_point_in_time_end <> 0.                                   
    002480         raise parameters_not_valid.                                      
    002490       endif.

  • Regarding ABAP dump in ALV reports

    hi all,
         we are migrating the report programs from 4.7 to ECC...some of the reports am getting ABAP dump like this.....INCORRECT VALUE IN THE DYNAMIC TABLE.....if i comment the sort portion in grid display or list display  function module..output is coming please guided me in this...we are not upgrading..just migrating all the reports to ECC server..

    hi ,
    Error in the ABAP Application Program
    The current ABAP program "SAPLKKBL" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    An exception occurred that is explained in detail below.
      The exception, which is assigned to class 'CX_SY_DYN_TABLE_ILL_COMP_VAL',
       not caught in
      procedure "FB_OUTTAB_SORT2" "(FORM)", nor was it propagated by a RAISING
       clause.
      Since the caller of the procedure could not have anticipated that the
      exception would occur, the current program is terminated.
      The reason for the exception is:
      The table "\FUNCTION-POOL=KKBL\FORM=FB_OUTTAB_SORT2\DATA=LT_SORTBYTAB" con
       an incorrect value in row 1 in the
      component with the name "NAME".
      In this particular case, the condition mentioned below was violated:
      (" ") The addition AS TEXT can only be used for character-type fields.
       IF RT_SORT-DOWN = 'X'.
         ls_sortbytab-descending = 'X'.
       ENDIF.
       append ls_sortbytab to lt_sortbytab.
    ENDLOOP.
    if RFLG_STABLE eq 'X'.
       sort rt_outtab stable by (lt_sortbytab).*******here dump is coming
    else.
       sort rt_outtab by (lt_sortbytab).
    endif.

  • Cheque Printing Abap Dumps

    Dear All Gurrus
    i am facing an Abap Dump when user send cheque Printing .other document printing are Ok .please see this error
    Runtime errors         LOAD_PROGRAM_NOT_FOUND       
           Occurred on     04.06.2007 at   16:18:50
    Program " " not found.                                                        
    What happened?
    There are several possible reasons for the error:                                                                               
    or                                                                               
    The current ABAP program had to be terminated because the                                
    ABAP processor detected an internal system error.                                        
    The current ABAP program "SAPLF028" had to be terminated because the ABAP                
    processor discovered an invalid system state.                                                                               
    What can you do?
    Print out the error message (using the "Print" function)                                 
    and make a note of the actions and input that caused the                                 
    error.                                                                               
    To resolve the problem, contact your SAP system administrator.                           
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer                 
    termination messages, especially those beyond their normal deletion                     
    date.                                                                               
    Error analysis
    On account of a branch in the program                                                    
    (CALL FUNCTION/DIALOG, external PERFORM, SUBMIT)                                         
    or a transaction call, another ABAP/4 program                                            
    is to be loaded, namely " ".                                                                               
    However, program " " does not exist in the library.                                                                               
    Possible reasons:                                                                        
    a) Wrong program name specified in an external PERFORM or                                
       SUBMIT or, when defining a new transaction, a new                                     
       dialog module or a new function module.                                               
    b) Transport error                                                                       
    b) Transport error                                                                       
    How to correct the error
    Check the last transports to the R/3 System.                                                                               
    Are changes currently being made to the program "SAPLF028"?                                                                               
    Has the correct program been entered in table TSTC for Transaction "FBZ4 "?              
                                                                                    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:                                                                               
    "LOAD_PROGRAM_NOT_FOUND" C                                                               
    "SAPLF028" or "LF028U06"                                                                 
    "PAYMENT_FORM_PRINT"                                                                     
    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....... "PKSAPT10"                                                     
    Network address.......... "184.208.96.235"                                               
    Operating system......... "Windows NT"                                                   
    Release.................. "5.0"                                                          
    Hardware type............ "4x Intel 801586"                                              
    Character length......... 8 Bits                                                         
    Pointer length........... 32 Bits                                                        
    Work process number...... 0                                                              
    Short dump setting....... "full"                                                                               
    Database server.......... "PKSAPT10"                                                     
    Database type............ "MSSQL"                                                        
    Database name............ "T10"                                                          
    Database owner........... "t10"                                                                               
    Character set............ "English_United State"                                                                               
    SAP kernel............... "640"                                                          
    Created on............... "Oct 29 2006 23:44:46"                                         
    Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"                 
    Database version......... "SQL_Server_8.00 "                                                                               
    Patch level.............. "155"                                                          
    Patch text............... " "                                                                               
    Supported environment....                                                                
    Database................. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"                     
    SAP database version..... "640"                                                          
    Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"               
    User, transaction...
    Client.............. 210                                                                 
    User................ "AGHAZNAVI"                                                         
    Language key........ "E"                                                                 
    Transaction......... "FBZ4 "                                                             
    Program............. "SAPLF028"                                                          
    Screen.............. "SAPMF05A 0700"                                                     
    Screen line......... 43                                                                  
    Information on where terminated
    The termination occurred in the ABAP program "SAPLF028" in                               
    "PAYMENT_FORM_PRINT".                                                                   
    The main program was "SAPMF05A ".                                                                               
    The termination occurred in line 332 of the source code of the (Include)                 
    program "LF028U06"                                                                      
    of the source code of program "LF028U06" (when calling the editor 3320).                 
    Source code extract
    003020     IF sy-subrc NE 0                     "bei nicht in PAYR vorhandenen o.
    003030         AND payr-vblnr EQ reguh-vblnr.   "durch FCH7 (Scheck neu drucken)
    003040       opayf-pstap = 0.                   "in Auftrag gegebene Schecks wird
    003050     ELSE.                                "der Stapel mitgegeben, sonst die
    003060       CLEAR payr.                        "Restart-Schecknummer aus PAYR  
    003070     ENDIF.                                                               
    003080                                                                          
    003090     IF t042z-formi IS INITIAL.           "alte Zahlungsträger (nur Scheck)
    003100       SUBMIT (t042z-progn) WITH zw_laufd = reguh-laufd                   
    003110                            WITH zw_laufi = reguh-laufi                   
    003120                            WITH zw_zbukr = reguh-zbukr                   
    003130                            WITH zw_xvorl = space                         
    003140                            WITH sel_zawe = i_opayf-rzawe                 
    003150                            WITH par_zdru = 'X'                           
    003160                            WITH par_priz = i_opayf-ppriz                 
    003170                            WITH par_zfor = i_opayf-pzfor                 
    003180                            WITH par_avis = i_opayf-pavis                 
    003190                            WITH par_pria = i_opayf-ppria                 
    003200                            WITH par_stap = i_opayf-pstap                 
    003210                            WITH par_rchk = payr-chect                    
    003220                            WITH par_begl = space                         
    003230                            WITH sel_hbki = reguh-hbkid                   
    003240                            WITH sel_hkti = reguh-hktid                   
    003250                            WITH par_anzp = par_anzp                      
    003260                            WITH par_fill = i_opayf-pfill                 
    003270                            WITH par_espr = i_opayf-pespr                 
    003280                            WITH par_isoc = i_opayf-pisoc                 
    003290                            WITH par_sofo = i_opayf-psofo                 
    003300                            WITH par_novo = i_opayf-xnovo                 
    003310                            AND RETURN.                                   
        ELSE.                           "neue Zahlungsträger (z.Zt. nur OFX) 
    003330       CALL FUNCTION 'PAYMENT_MEDIUM_ONLINE'                              
    003340         EXPORTING                                                        
    003350           im_formi = t042z-formi                                         
    003360           im_reguh = reguh                                               
    003370           im_opayf = i_opayf                                             
    003380         TABLES                                                           
    003390           tb_regup = xregup.                                             
    003400     ENDIF.                                                               
    003410                                                                          
    003420   ENDFUNCTION.                                                           
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 4                             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 UAN                          
    SY-UCOMM BU                           
    SY-TITLE Payment with Printout: Display Overview                              
    SY-MSGTY I                             SY-MSGID F5                           
    SY-MSGNO 312                           SY-MSGV1 1500000011                   
    SY-MSGV2 KOPK                          SY-MSGV3                              
    SY-MSGV4                              
    Active calls / events
    No.... Type........ Name..........................
           Program                                
           Include                                  Line    
           Class                                  
         4 FUNCTION     PAYMENT_FORM_PRINT                                          
           SAPLF028                               
           LF028U06                                   332
         3 FORM         FCODE_BEARBEITUNG                                           
           SAPMF05A                               
           MF05AFF0_FCODE_BEARBEITUNG                2333
         2 FORM         FUSSZEILE_VERARBEITEN                                       
           SAPMF05A                               
           MF05AFF0_FUSSZEILE_VERARBEITEN             148
         1 MODULE (PAI) FUSSZEILE_BEARBEITEN                                        
           SAPMF05A                               
           MF05AI00_FUSSZEILE_BEARBEITEN               46
    Chosen variables
         4 FUNCTION     PAYMENT_FORM_PRINT                                          
           SAPLF028                               
           LF028U06                                   332
    I_CC_CURR                      PKR                                    
                                   54522                                  
                                   0B200                                  
    I_OPAYF                        KOPKLOCL                     0002  XCCIT
                                   4454444422222222222222222222233332254445
                                   BF0BCF3C00000000000000000000000020083394
    ... +  40                      IH  X           0001000005             
                                   4422522222222222333333333322222222222222
                                   9800800000000000000100000500000000000000
    ... +  80                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120                                             00000000000000  
                                   2222222222222222222222233333333333333  
                                   0000000000000000000000000000000000000  
    I_REPRI                                                                               
    2                                      
                                   0                                      
    I_VBLNR                        1500000011                             
                                   3333333333                             
                                   1500000011                             
    I_WWERT                        20070604                               
                                   33333333                               
                                   20070604                               
    REGUH-LAUFI                    00001*                                 
                                   333332                                 
                                   00001A                                 
    <%_TABLE_LFA1>                 ???                                    
    REGUH-ZBUKR                    KOPK                                   
                                   4454                                   
                                   BF0B                                   
    I_OPAYF-RZAWE                  C                                      
                                   4                                      
                                   3                                      
    I_OPAYF-PPRIZ                  LOCL                                   
                                   4444                                   
                                   CF3C                                   
    I_OPAYF-PZFOR                                                                               
    2222222222222222                       
                                   0000000000000000                       
    I_OPAYF-PAVIS                                                                               
    2                                      
                                   0                                      
    I_OPAYF-PPRIA                                                                               
    2222                                   
                                   0000                                   
    I_OPAYF-PSTAP                  0002                                   
                                   3333                                   
                                   0002                                   
    PAYR-CHECT                                                                               
    2222222222222                          
                                   0000000000000                          
    REGUH-HBKID                    CITIH                                  
                                   44544                                  
                                   39498                                  
    REGUH-HKTID                    CTOLH                                  
                                   45444                                  
                                   34FC8                                  
    PAR_ANZP                       0                                      
                                   3                                      
                                   0                                      
    I_OPAYF-PFILL                                                                               
    2                                      
                                   0                                      
    I_OPAYF-PESPR                                                                               
    2                                      
                                   0                                      
    I_OPAYF-PISOC                                                                               
    2                                      
                                   0                                      
    I_OPAYF-PSOFO                  X                                      
                                   5                                      
                                   8                                      
    I_OPAYF-XNOVO                                                                               
    2                                      
                                   0                                      
    %_PRINT                            000                                
                                   2222333222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80                                0 ########                   
                                   2222222222320000000022222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160                                    0                 ####   
                                   222222222222223222222222222222220000   
                                   000000000000000000000000000000000000   
    KNBK-KOINH                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40                                                                               
    22222222222222222222                   
                                   00000000000000000000                   
    T042Z-FORMI                                                                               
    222222222222222222222222222222         
                                   000000000000000000000000000000         
    <%_TABLE_T012>                 ???                                    
    REGUH                             2007060400001* KOPK0001000005       
                                   2223333333333333224454333333333322222222
                                   0002007060400001A0BF0B000100000500000000
    ... +  40                                        1500000011 PKR  LHP1Co
                                   2222222222222222223333333333254522445346
                                   000000000000000000150000001100B200C8013F
    ... +  80                      mpany        Supreme Gas Ind. Pvt. Ltd 
                                   6766722222222577766624672466225772247622
                                   D01E90000000035025D5071309E4E0064E0C4400
    ... + 120                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240                         Lahore                              
                                   222466676222222                        
                                   000C18F25000000                        
    SYST-REPID                     SAPLF028                               
                                   5454433322222222222222222222222222222222
                                   310C602800000000000000000000000000000000
    T042I-HBKID                    CITIH                                  
                                   44544                                  
                                   39498                                  
    XREGUP[]                       Table IT_1065[1x1184]                  
         3 FORM         FCODE_BEARBEITUNG                                           
           SAPMF05A                               
           MF05AFF0_FCODE_BEARBEITUNG                2333
    %_SPACE                                                                               
    2                                      
                                   0                                      
    RC                             0                                      
                                   0000                                   
                                   0000                                   
    SYST-REPID                     SAPMF05A                               
                                   5454433422222222222222222222222222222222
                                   310D605100000000000000000000000000000000
    SY-REPID                       SAPMF05A                               
                                   5454433422222222222222222222222222222222
                                   310D605100000000000000000000000000000000
    VORSCHL_GRIRG                                                                               
    222                                    
                                   000                                    
    XBKPF-BELNR                    1500000011                             
                                   3333333333                             
                                   1500000011                             
    %_DUMMY$$                                                                               
    2222                                   
                                   0000                                   
    VAKTAB                                                                               
    222222222222222222222222222222         
                                   000000000000000000000000000000         
    XBKPF-BUKRS                    KOPK                                   
                                   4454                                   
                                   BF0B                                   
    VORSCHL_GITYP                                                                               
    22                                     
                                   00                                     
    XBKPF-GJAHR                    2007                                   
                                   3333                                   
                                   2007                                   
    C_INFO_LINK                    100                                    
                                   333                                    
                                   100                                    
    BKPF                           210KOPK15000000112007KZ20070604200706040
                                   3334454333333333333334533333333333333333
                                   210BF0B15000000112007BA20070604200706040
    ... +  40                      620070604161846000000000000000020070604A
                                   3333333333333333333333333333333333333334
                                   6200706041618460000000000000000200706041
    ... +  80                      GHAZNAVI   FBZ4                        
                                   4445445422244532222222222222222222222222
                                   781AE16900062A40000000000000000000000000
    ... + 120                             12345                           
                                   2222222333332222222222222222222222222222
                                   0000000123450000000000000000000000000000
    ... + 160                         0000                         PKR  ###
                                   2223333222222222222222222222222254522000
                                   000000000000000000000000000000000B200000
    ... + 200                      ##     #####  ####### RFBU             
                                   0022222000002200000002544522222222222222
                                   0C000000000C00000000C0262500000000000000
    ... + 240                                                                               
    222222222222222                        
                                   000000000000000                        
    BSEG                           210KOPK15000000112007002 000000000000000
                                   3334454333333333333333332333333333333333
                                   210BF0B150000001120070020000000000000000
    ... +  40                      0          25K   SLHP1        ##########
                                   3222222222233422254453222222220001000000
                                   0000000000025B0003C80100000000000000C000
    ... +  80                      ##################PKR  #################
                                   1000000000000010005452200000000000000000
                                   000C000000C000000C0B200000000C000000C000
    ... + 120                      #######################################
                                   0000000000000000000000000000000000000002
                                   000C000000C000000C000000C000000C000000C0
    ... + 160                         000   ###############################
                                   2223332220000000000000000000000000000000
                                   000000000000000C0000C000000C000000C00000
    ... + 200                      ##0000000020070427                     
                                   0033333333333333332222222222222222222222
                                   0C00000000200704270000000000000000000000
    ... + 240                                                                               
    222222222222222                        
                                   000000000000000                        
    SY-SUBRC                       4                                      
                                   0000                                   
                                   4000                                   
    %_ARCHIVE                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240                                                                               
    222222222222222                        
                                   000000000000000                        
    SAPOS-GITYP                                                                               
    22                                     
                                   00                                     
    T001-WAERS                     PKR                                    
                                   54522                                  
                                   0B200                                  
    SAPOS-GRICD                                                                               
    22                                     
                                   00                                     
    OPAYF                          KOPKLOCL                     0002  XCCIT
                                   4454444422222222222222222222233332254445
                                   BF0BCF3C00000000000000000000000020083394
    ... +  40                      IH  X           0001000005             
                                   4422522222222222333333333322222222222222
                                   9800800000000000000100000500000000000000
    ... +  80                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120                                             00000000000000  
                                   2222222222222222222222233333333333333  
                                   0000000000000000000000000000000000000  
    SAPOS-GRIRG                                                                               
    222                                    
                                   000                                    
    RF05A-KOATX                                                                               
    222222222222                           
                                   000000000000                           
    BKPF-WWERT                     20070604                               
                                   33333333                               
                                   20070604                               
    SY-XFORM                       CONVERSION_EXIT                        
                                   444545544454545222222222222222         
                                   3FE65239FEF5894000000000000000         
    SY-MSGID                       F5                                     
                                   43222222222222222222                   
                                   65000000000000000000                   
    ANL_HKONT                                                                               
    2222222222                             
                                   0000000000                             
    T001W                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200                                                                               
    2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240                                    #                        
                                   222222222222220                        
                                   000000000000000                        
    SPACE                                                                               
    2                                      
                                   0                                      
    SY-MSGNO                       312                                    
                                   333       

    Specification of form is missing in pmnt method C for comp.code KOPK
    In the include program RFFORI01 the query "SELECT * FROM t042z WHERE land1 EQ t001-land1 AND zlsch IN sel_zawe AND progn EQ sy-repid" is returning a null value for progn. This null value is passed to "003100 SUBMIT (t042z-progn) WITH zw_laufd = reguh-laufd" (Refer to the short dump).
    Refer to IMG for adding specification of form.
    Regards,
    Khalid Mustafa
    Development Consultant Netweaver-ABAP

  • ABAP DUMP While doing GI Through Zmovement type in MIGO Transaction

    Hi ,
    We have migrated from FM FBS to BCS from 12.01.2015.
    And we are using 101 profile with GR and IR update.
    We received blow ABAP Dump while doing the GI through MIGO Transaction.
    Can you please help on this.
    Dump detatils
    Category               ABAP Programming Error
    Runtime Errors         MESSAGE_TYPE_X
    ABAP Program           CL_BUAVC_ENTRY================CP
    Application Component  PSM-FM-BCS-AC
    Date and Time          13.01.2015 09:10:00
    Operating system..... "AIX 1 6, AIX 1 7"                                                      |
    |                                                                                                  |
    |    Memory consumption                                                                            |
    |    Roll.... 0                                                                                    |
    |    EM...... 33518336                                                                             |
    |    Heap.... 0                                                                                    |
    |    Page.... 196608                                                                               |
    |    MM Used. 21989120                                                                             |
    |    MM Free. 3145840                                                                              |
    |User and Transaction                                                                              |
    |    Client.............. 256                                                                      |
    |    User................ "MM_BUX00_ZZ"                                                            |
    |    Language key........ "R"                                                                      |
    |    Transaction......... "MIGO_GI "                                                               |
    |    Transaction ID...... "54AEDD9E3EE60710E10080000A15C616"                                       |
    |                                                                                                  |
    |    EPP Whole Context ID.... "54B35F7088300910E10080000A15C616"                                   |
    |    EPP Connection ID....... 00000000000000000000000000000000                                     |
    |    EPP Caller Counter...... 0                                                                    |
    |                                                                                                  |
    |    Program............. "CL_BUAVC_ENTRY================CP"                                       |
    |    Screen.............. "SAPLMIGO 0001"                                                          |
    |    Screen Line......... 18                                                                       |
    |    Debugger Active..... "none"                                                                   |
    |Information on where terminated                                                                   |
    |    Termination occurred in the ABAP program "CL_BUAVC_ENTRY================CP" -                 |
    |     in "POST".                                                                                   |
    |    The main program was "SAPLMIGO ".                                                             |
    |                                                                                                  |
    |    In the source code you have the termination point in line 82                                  |
    |    of the (Include) program "CL_BUAVC_ENTRY================CM00J".                               |
    |Source Code Extract                                                                               |
    |Line |SourceCde                                                                                   |
    |   52|*--- method has provided some errors!):                                                     |
    |   53|                                                                                            |
    |   54|* Note 1499464:                                                                             |
    |   55|*      IF cl_abap_aab_utilities=>is_active( id = 'BUAVC_GROUP'                              |
    |   56|*       mode_assert_dump = 'X' ) = 'X'.                                                     |
    |   57|      MOVE 'X' TO l_flg_dump.                                                               |
    |   58|*      ENDIF.                                                                               |
    |   59|                                                                                            |
    |   60|*--- Check if the entry buffer of the AVC ledger contains data records                      |
    |   61|*--- from previous COLLECT events:                                                          |
    |   62|      IF ( l_f_avc_ledger-ref_ledger->entry_buffer_lines_count( ) > 0 ).                    |
    |   63|*--- Sorry, must dump:                                                                      |
    |   64|        ASSERT ID buavc_group                                                               |
    |   65|               FIELDS c_avc_text 'POSTING_NOT_ALLOWED'                                      |
    |   66|               CONDITION l_flg_dump <> 'X'.                                                 |
    |   67|        IF l_flg_dump = 'X'.                                                                |
    |   68|          MESSAGE x002(buavc) WITH c_avc_text space                                         |
    |   69|                                   'POSTING_NOT_ALLOWED' space.                             |
    |   70|        ENDIF.                                                                              |
    |   71|      ENDIF.                                                                                |
    |   72|    ENDIF.                                                                                  |
    |   73|*----------------------------------------------------------------------                     |
    |   74|* Note 1666556:                                                                             |
    |   75|    IF me->g_commit_before_post EQ 'X'.                                                     |
    |   76|*--- An unauthorized COMMIT WORK occurred before calling this POST                          |
    |   77|*--- method. This COMMIT WORK has refreshed the AVC entry buffer and                        |
    |   78|*--- would thus create a database inconsistency!                                            |
    |   79|      MOVE 'X' TO l_flg_dump.                                                               |
    |   80|      IF l_flg_dump = 'X'.                                                                  |
    |   81|*--- Sorry, must dump (see note 1666556):                                                   |
    |>>>>>|        MESSAGE x002(buavc) WITH c_avc_text space                                           |
    |   83|                                 'INVALID_COMMIT' space.                                    |
    |   84|      ENDIF.                                                                                |
    |   85|    ENDIF.                                                                                  |
    |   86|*----------------------------------------------------------------------                     |
    |   87|                                                                                            |
    |   88|                                                                                            |
    |   89|*--- Call the POST method of the corresponding ledger instance:                             |
    |   90|    CALL METHOD l_f_avc_ledger-ref_ledger->post                                             |
    |   91|      EXPORTING                                                                             |
    |   92|        i_ref_appl_log = me->g_ref_appl_log                                                 |
    |   93|        i_doc_ref      = i_doc_ref.                                                         |
    |   94|                                                                                            |
    |   95|  ENDLOOP.                                                                                  |
    |   96|                      
    Thanks Advance.
    SAM

    Hi Sam,
    Please check if there is any commit statement written in badi or enhancement before calling this method for posting which is leading to update termination.
    Regards,
    Prakash.

  • RDDGENOL job getting cancelled with huge number of ABAP dumps

    Hi,
    In our Production system, we had applied Kernel upto patch level 263 and while
    applying SPAM 30 for release 640 it failed. We tried applying Basis patch 15 still
    it did not went through.
    Since then we are getting around 1500-2500 dumps daily. The job RDDGENOLis getting cancelled and the dumps RAISE_EXCEPTION and SYNTAX_ERROR is displayed in ST22. Today, there were around 2500 dumps in the system.
    When I now run the Database <-> ABAP Dictionary consistency check in
    DB02, I see number of errors for missing objects in the database. There
    are around of dozens of Primary Indexes, secondary Indexes, Tables,
    Views listed in the result:
    Objects Missing in database No.
    =========================== ===
    Primary indexes 6
    Secondary indexes 14
    Tables 37
    Views 26
    When I try to create each of them using SE16 or using SQL utility on OS
    level, it gives an SQL system error. We are also getting thousands of
    dumps each day (attached alongwith this message). Also I see the CPF327E error
    in the OS Level Joblog.
    Also we cannot transport any requests. There is some problem with or
    due to the conversions. Is it a problem with Kernel, ABAP dictionary or
    database.
    Following is the extract of the dumps due to DDIC in 000:
    ============================================================
    Runtime Error          SYNTAX_ERROR
    Date and Time         
    ShrtText
    Syntax error in program "CL_WB_CROSSREFERENCE==========CP ".
    What happened?
    Error in ABAP application program.
    The current ABAP program "SAPLSEWB" had to be terminated because one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    In program "CL_WB_CROSSREFERENCE==========CP ", the following syntax error
    occurred
    in the Include "CL_WB_CROSSREFERENCE==========CM00D " in line 8:
    |    "The type "KEYWORD_TAB" is unknown." 
    ============================================================
    ============================================================
    Runtime Error          RAISE_EXCEPTION
    Date and Time         
    ShrtText
    Exception condition "DESTINATION_NOT_OPEN" raised.
    What happened?
    The current ABAP/4 program encountered an unexpected
    situation.
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    is especially useful if you want to keep a particular message.
    Error analysis
    A RAISE statement in the program "SAPLCRFC" raised the exception
    condition "DESTINATION_NOT_OPEN".
    Since the exception was not intercepted by a superior program
    in the hierarchy, processing was terminated.
    Short description of exception condition:
    Specified destination is not open.
    For detailed documentation of the exception condition, use
    Transaction SE37 (Function Library). You can take the called
    function module from the display of active calls.
    How to correct the error
    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:
    "RAISE_EXCEPTION" C
    "SAPLCRFC" or "LCRFCU20"
    "RFC_CONNECTION_CLOSE"
    or
    "SAPLCRFC" "DESTINATION_NOT_OPEN"
    or
    "RADBAT01 " "DESTINATION_NOT_OPEN"
    If you cannot solve the problem yourself and you wish to send
    an error message to SAP, include the following documents:
    1. A printout of the problem description (short dump)
    To obtain this, select in the current display "System->List->
    Save->Local File (unconverted)".
    2. A suitable printout of the system log
    To obtain this, call the system log through transaction SM21.
    Limit the time interval to 10 minutes before and 5 minutes
    after the short dump. In the display, then select the function
    "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
    supply the source code.
    To do this, select the Editor function "Further Utilities->
    Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    System environment
    SAP Release.............. "640"
    Application server....... "TXTPDSAP"
    Network address.......... "172.16.0.140"
    Operating system......... "OS400"
    Release.................. "5.3"
    Hardware type............ "0065000655EC"
    Character length......... 8 Bits
    Pointer length........... 64 Bits
    Work process number...... 35
    Short dump setting....... "full"
    Database server.......... "TXTPDSAP"
    Database type............ "DB400"
    Database name............ "TXT"
    Database owner........... "R3TXTDATA"
    Character set............ "en_US.ISO8859-1"
    SAP kernel............... "640"
    Created on............... "Dec 11 2008 23:06:45"
    Created in............... "AIX 1 5 00538A4A4C00 (IBM iSeries with OS400)"
    Database version......... "DB4_52"
    Patch level.............. "263"
    Patch text............... " "
    Supported environment....
    Database................. "V5R2, V5R3, V5R4, V6R1"
    SAP database version..... "640"
    Operating system......... "OS400 2 5, OS400 3 5, OS400 4 5, OS400 1 6"
    Memory usage.............
    Roll..................... 696832
    EM....................... 16759712
    Heap..................... 0
    Page..................... 32768
    MM Used.................. 1383120
    MM Free.................. 3483600
    SAP Release.............. "640"
    User and Transaction
    Client.............. 000
    User................ "DDIC"
    Language key........ "E"
    Transaction......... " "
    Program............. "SAPLCRFC"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where terminated
    The termination occurred in the ABAP program "SAPLCRFC" in
    "RFC_CONNECTION_CLOSE".
    The main program was "RADBAT01 ".
    The termination occurred in line 22 of the source code of the (Include)
    program "LCRFCU20"
    of the source code of program "LCRFCU20" (when calling the editor 220).
    The program "SAPLCRFC" was started as a background job.
    Job name........ "RDDGEN0L"
    Job initiator... "DDIC"
    |    Job number...... 00032101    
    ============================================================
    Kindly let me know the immediate fix. Thanks!
    Regards,
    Nick

    Hi Nick,
    I would say, you are having a slight missperception of this forum ... it should not replace your basis ressources in your company.
    What you are doing is pretty complex (and the mixtrure of SPAM Update AND Basis SP seems to be wrong to me) and therefore, it will not be possible, to help you, just based on such a short dump.
    Sorry,
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.net - http://www.4soi.de - http://www.easymarketplace.de

  • Abap Dump Syntax_Error

    Hi , Gurus,
    I am configuring the EWA, i have configured finally when i try to schdule the service data processing, it's scheduling in background,
    in SM37 if i see that job status, job is cancelling and generating the abap dump, please help me
    here the dump of SYNTAX _ERROR
    RDSVASAEW_DBMSS____________060
    Runtime Errors         SYNTAX_ERROR
    Date and Time          22.11.2008 15:52:13
    Short text
         Syntax error in program "RDSVASAEW_DBMSS____________060 ".
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPLDSVAS_PROC" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
         The following syntax error occurred in program "RDSVASAEW_DBMSS____________060
          " in include "RDSVASAEW_DBMSS____________060 " in
         line 47:
         "INCLUDE report "/1CAGTF/IF_LOGFUNC_000208" not found."
         The include has been created and last changed by:
         Created by: "SAP "
         Last changed by: "SAP "
    please help me how to get the reports
    Cheers

    Hi Gopal,
    This is a well known issue.
    Follow the instructions of
    [SAP Note  727998 "Complete Replacement of Service Definitions for SDCC/SDCCN"|http://service.sap.com/sap/support/notes/727998 ]
    Best regards,
    Ruediger

  • ABAP DUMP - DYNPRO_FIELD_CONVERSION !!!

    Hii SAP Expert,
    I having a problem when diplaying the material document using reservation number, below is the abap dump error from sap, could anyone tell me what is the problem ?
    Runtime Error          DYNPRO_FIELD_CONVERSION
    Date and Time          31.12.2007 17:49:41
    <removed by moderator as the content doesnt help to understand the problem>
    Error analysis
    The program flow was interrupted and could not be resumed.
    Program "SAPLMIGO" tried to display fields on screen 0370. However, an
    error occurred while this data was being converted.
    How to correct the error
    A conversion error occurred while the program was trying to
    display data on the screen.
    The ABAP output field and the screen field may not have the
    same format.
    Some field types require more characters on the screen than
    in the ABAP program. For example, a date field on a screen needs
    two characters more than it would in the program. When attempting to
    display the date on the screen, an error will occur that triggers the
    error message.
    Screen name.............. "SAPLMIGO"
    Screen number............ 0370
    Screen field............. "GOITEM-VMENG"
    Error text............... "FX015: Sign lost."
    Further data:
    <removed by moderator as the content doesnt help to understand the problem>            |
    "DYNPRO_FIELD_CONVERSION" " "
    "SAPLMIGO" bzw. "LMIGOPBO"
    "PBO_DETAIL_RESERVATION"
    System environment
    SAP Release.............. "640"
    Application server....... "pecprd00"
    Network address.......... "192.168.1.122"
    Operating system......... "HP-UX"
    Release.................. "B.11.23"
    Hardware type............ "ia64"
    Character length......... 16 Bits
    Pointer length........... 64 Bits
    Work process number...... 2
    Short dump setting....... "full"
    Database server.......... "pesbdbci"
    Database type............ "ORACLE"
    Database name............ "ECP"
    Database owner........... "SAPECP"
    Character set............ "C"
    SAP kernel............... "640"
    Created on............... "Mar 21 2007 20:14:03"
    Created in............... "HP-UX B.11.23 U ia64"
    Database version......... "OCI_920 "
    Patch level.............. "175"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE
    10.2.0.."
    SAP database version..... "640"
    Operating system......... "HP-UX B.11"
    Memory usage.............
    Roll..................... 16192
    EM....................... 33518720
    Heap..................... 0
    Page..................... 425984
    MM Used.................. 7977808
    MM Free.................. 399024
    SAP Release.............. "640"
    User and Transaction
    Client.............. 900
    User................ "GHAZALM"
    Language key........ "E"
    Transaction......... "/DBM/ORDER03 "
    Program............. "SAPLMIGO"
    Screen.............. "SAPLMIGO 0370"
    Screen line......... 0
    Information on where terminated
    The termination occurred in the ABAP program "SAPLMIGO" in
    "PBO_DETAIL_RESERVATION".
    The main program was "MB_CALL_MIGO_DIALOG ".
    The termination occurred in line 296 of the source code of the (Include)
    program "LMIGOPBO"
    of the source code of program "LMIGOPBO" (when calling the editor 2960).
    Source Code Extract
    Line
    SourceCde
    266
    ENDMODULE.                 " PBO_DETAIL_ORDER  OUTPUT
    267
    268
    *&      Module  PBO_DETAIL_TRANSFER OUTPUT
    269
    270
    MODULE pbo_detail_transfer OUTPUT.
    271
    CALL METHOD oref_detail_transfer->pbo.
    272
    ENDMODULE.                 " PBO_DETAIL_TRANSFER  OUTPUT
    273
    274
    *&      Module  PBO_BOM_POPUP  OUTPUT
    275
    276
    MODULE pbo_bom_popup OUTPUT.
    277
    CALL METHOD oref_bom->pbo.
    278
    ENDMODULE.                 " PBO_BOM_POPUP  OUTPUT
    279
    280
    *&      Module  PBO_DEFAULTS_LOOP  OUTPUT
    281
    282
    MODULE pbo_defaults_loop OUTPUT.
    283
    CALL METHOD oref_defaults->pbo_loop.
    284
    ENDMODULE.                 " PBO_DEFAULTS_LOOP  OUTPUT
    285
    286
    *&      Module  PBO_SEARCH_RES  OUTPUT
    287
    288
    MODULE pbo_search_res OUTPUT.
    289
    CALL METHOD oref_search->pbo.
    290
    ENDMODULE.                 " PBO_SEARCH_RES  OUTPUT
    291
    292
    *&      Module  PBO_DETAIL_RESERVATION  OUTPUT
    293
    294
    MODULE pbo_detail_reservation OUTPUT.
    295
    CALL METHOD oref_detail_reservation->pbo.
    >>>>>
    ENDMODULE.                 " PBO_DETAIL_RESERVATION  OUTPUT
    297
    298
    299
    *&      Module  PBO_DETAIL_TAKEIT  OUTPUT
    300
    301
    MODULE pbo_detail_takeit OUTPUT.
    302
    CALL METHOD oref_detail_takeit->pbo.
    303
    ENDMODULE.                 " PBO_DETAIL_TAKEIT  OUTPUT
    304
    305
    *&      Module  PBO_DETAIL_PARTNERS  OUTPUT
    306
    307
          Detail Tabstrip Partners
    308
    309
    MODULE pbo_detail_partners OUTPUT.
    310
    CALL METHOD oref_detail_partners->pbo.
    311
    ENDMODULE.                 " PBO_DETAIL_PARTNERS  OUTPUT
    312
    313
    *&      Module  PBO_DETAIL_DEST_SUB_SELECT  OUTPUT
    314
    315
    MODULE pbo_detail_dest_sub_select OUTPUT.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    0
    SY-TABIX
    0
    SY-DBCNT
    1
    SY-FDPOS
    40
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    MIGO_STATUS
    SY-UCOMM
    SY-TITLE
    Display Material Document 4901380914 - Ghazali Musa
    SY-MSGTY
    E
    SY-MSGID
    DA
    SY-MSGNO
    300
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    3 MODULE (PBO) SAPLMIGO                            LMIGOPBO                              296
    PBO_DETAIL_RESERVATION
    2 FUNCTION     SAPLMIGO                            LMIGOU02                              225
    MIGO_DIALOG
    1 EVENT        MB_CALL_MIGO_DIALOG                 MB_CALL_MIGO_DIALOG                    37
    START-OF-SELECTION
    Chosen variables
    Name
    Val.
    No.       3 Ty.          MODULE (PBO)
    Name  PBO_DETAIL_RESERVATION
    %_DUMMY$$
    0000
    0000
    2222
    0000
    OREF_DETAIL_RESERVATION
    A0000005
    70000008
    No.       2 Ty.          FUNCTION
    Name  MIGO_DIALOG
    I_ACTION
    A04
    000
    000
    433
    104
    I_DEADEND
    X
    0
    0
    5
    8
    I_EBELN
    0000000000
    0000000000
    2222222222
    0000000000
    I_EBELP
    00000
    00000
    00000
    33333
    00000
    I_INBOUND_DELIV
    0000000000
    0000000000
    2222222222
    0000000000
    I_LEAVE_AFTER_POST
    0
    0
    2
    0
    I_MBLNR
    4901380914
    0000000000
    0000000000
    3333333333
    4901380914
    I_MJAHR
    0000
    0000
    0000
    3333
    0000
    I_NEW_ROLLAREA
    0
    0
    2
    0
    I_NOTREE
    X
    0
    0
    5
    8
    I_NO_AUTH_CHECK
    0
    0
    2
    0
    I_OKCODE
    OK_GO
    00000000000000000000
    00000000000000000000
    44544222222222222222
    FBF7F000000000000000
    I_ORDER_ITEM
    0000
    0000
    0000
    3333
    0000
    I_ORDER_NUMBER
    000000000000
    000000000000
    222222222222
    000000000000
    I_OUTBOUND_DELIV
    0000000000
    0000000000
    2222222222
    0000000000
    I_REFDOC
    R02
    000
    000
    533
    202
    I_RESERVATION_ITEM
    0000
    0000
    0000
    3333
    0000
    I_RESERVATION_NUMB
    0000000000
    0000000000
    0000000000
    3333333333
    0000000000
    I_SKIP_FIRST_SCREEN
    X
    0
    0
    5
    8
    I_SYTCODE
    /DBM/ORDER03
    00000000000000000000
    00000000000000000000
    24442454453322222222
    F42DFF24520300000000
    I_TRANSPORT
    0000000000
    0000000000
    2222222222
    0000000000
    I_TRANSPORTIDENT
    00000000000000000000
    00000000000000000000
    22222222222222222222
    00000000000000000000
    I_TRANSPORT_MEANS
    0000
    0000
    2222
    0000
    I_ZEILE
    0000
    0000
    0000
    3333
    0000
    SY
    #######################(###############j#########(#################################(#### C####
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000007000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100
    0000000000000000000000020000000000000006000000000200000000000000000000000000010900020008240000
    000000010000000000000108010001000000000A0000000008000000000000000000000000000A000008000003000C
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_EBELP
    00000
    00000
    00000
    33333
    00000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_MBLNR
    4901380914
    0000000000
    0000000000
    3333333333
    4901380914
    SPACE
    0
    0
    2
    0
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_MJAHR
    0000
    0000
    0000
    3333
    0000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_ZEILE
    0000
    0000
    0000
    3333
    0000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_TRANSPORT
    0000000000
    0000000000
    2222222222
    0000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_ORDER_NUMBER
    000000000000
    000000000000
    222222222222
    000000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_ORDER_ITEM
    0000
    0000
    0000
    3333
    0000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_TRANSPORT_MEANS
    0000
    0000
    2222
    0000
    RL50E
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_TRANSPORTIDENT
    00000000000000000000
    00000000000000000000
    22222222222222222222
    00000000000000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_INBOUND_DELIV
    0000000000
    0000000000
    2222222222
    0000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_OUTBOUND_DELIV
    0000000000
    0000000000
    2222222222
    0000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_RESERVATION_NUMB
    0000000000
    0000000000
    0000000000
    3333333333
    0000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_RESERVATION_ITEM
    0000
    0000
    0000
    3333
    0000
    SY-REPID
    SAPLMIGO
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454444422222222222222222222222222222222
    310CD97F00000000000000000000000000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_ACTIVE
    X
    0
    0
    5
    8
    ABAP_TRUE
    X
    0
    0
    5
    8
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_LEAVE_AFTER_POST
    0
    0
    2
    0
    LCL_MIGO_GLOBALS=>EXTERNAL_CALL_FIRST_ROUND
    0
    0
    2
    0
    GOSEARCH_RES
    00000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222222222222222222222222222222222222222333333332222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    No.       1 Ty.          EVENT
    Name  START-OF-SELECTION
    I_NOTREE
    X
    0
    0
    5
    8
    I_IN_DEL
    0000000000
    0000000000
    2222222222
    0000000000
    I_LEAVE_
    0
    0
    2
    0
    VARI
    ###00000000000000      ############
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    2222222222222222222222222222222222222222222222222222222222200033333333333333222222000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    I_MBLNR
    4901380914
    0000000000
    0000000000
    3333333333
    4901380914
    I_MJAHR
    0000
    0000
    0000
    3333
    0000
    I_NEW_RO
    0
    0
    2
    0
    I_NO_AUT
    0
    0
    2
    0
    I_OKCODE
    OK_GO
    00000000000000000000
    00000000000000000000
    44544222222222222222
    FBF7F000000000000000
    %_I_ACTION_%_APP_%
    I_ACTION
    000000000000000000000000000000
    000000000000000000000000000000
    454454442222222222222222222222
    9F1349FE0000000000000000000000
    I_ORDERI
    0000
    0000
    0000
    3333
    0000
    I_ACTION
    A04
    000
    000
    433
    104
    I_ORDERN
    000000000000
    000000000000
    222222222222
    000000000000
    %_I_NOTREE_%_APP_%
    I_NOTREE
    000000000000000000000000000000
    000000000000000000000000000000
    454455442222222222222222222222
    9FEF42550000000000000000000000
    I_OUT_DE
    0000000000
    0000000000
    2222222222
    0000000000
    SY-XFORM
    CONVERSION_EXIT
    000000000000000000000000000000
    000000000000000000000000000000
    444545544454545222222222222222
    3FE65239FEF5894000000000000000
    I_REFDOC
    R02
    000
    000
    533
    202
    %_I_NO_AUT_%_APP_%
    I_NO_AUT
    000000000000000000000000000000
    000000000000000000000000000000
    454454552222222222222222222222
    9FEFF1540000000000000000000000
    I_RES_IT
    0000
    0000
    0000
    3333
    0000
    I_RES_NU
    0000000000
    0000000000
    0000000000
    3333333333
    0000000000
    I_SKIP_F
    X
    0
    0
    5
    8
    I_SYTCOD
    /DBM/ORDER03
    00000000000000000000
    00000000000000000000
    24442454453322222222
    F42DFF24520300000000
    SY-LDBPG
    SAPDB__S
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    5454455522222222222222222222222222222222
    31042FF300000000000000000000000000000000
    I_TRANSP
    0000000000
    0000000000
    2222222222
    0000000000
    %_I_REFDOC_%_APP_%
    I_REFDOC
    000000000000000000000000000000
    000000000000000000000000000000
    455444442222222222222222222222
    9F2564F30000000000000000000000
    I_TR_IDE
    00000000000000000000
    00000000000000000000
    22222222222222222222
    00000000000000000000
    I_TR_MEA
    0000
    0000
    2222
    0000
    I_ZEILE
    0000
    0000
    0000
    3333
    0000
    %_DUMMY$$
    0000
    0000
    2222
    0000
    %_I_SKIP_F_%_APP_%
    I_SKIP_F
    000000000000000000000000000000
    000000000000000000000000000000
    455445542222222222222222222222
    9F3B90F60000000000000000000000
    SY-REPID
    MB_CALL_MIGO_DIALOG
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    4454444544445444444222222222222222222222
    D2F31CCFD97FF491CF7000000000000000000000
    SY-SUBRC
    0
    0000
    0000
    %_SSCR[]
    Table IT_0[24x492]
    \PROGRAM=MB_CALL_MIGO_DIALOG\DATA=%_SSCR[]
    Table reference: 0
    TABH+  0(20) = C000000251801770000000000000000000000000
    TABH+ 20(20) = 000000000000000000000018000001ECFFFFFFFF
    TABH+ 40(16) = 04000000000003B000202CC021000000
    store        = 0xC000000251801770
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 0     (0x00000000)
    label        = 0     (0x00000000)
    fill         = 24    (0x00000018)
    leng         = 492   (0x000001EC)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000006
    occu         = 32    (0x00000020)
    access       = 1     (ItAccessStandard)
    idxKind      = 1     (ItIndexLinear)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 0
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xC0000002518A66C0
    pghook       = 0x0000000000000000
    idxPtr       = 0xC000000251801B50
    refCount     = 2     (0x00000002)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 32    (0x00000020)
    lineAlloc    = 32    (0x00000020)
    store_id     = 2     (0x00000002)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    Internal notes
    The termination occurred in the function "dynpconv.c" of the SAP
    Basis System, specifically in line 701 of the module
    "//bas/640_REL/src/krn/dynp/dybas.c#5".
    The internal operation just processed is "ENDM".
    The internal session was started at 20071231174940.
    Application server....... "pecprd00"
    Network address.......... "192.168.1.122"
    Operating system ........ "HP-UX"
    Release.................. "B.11.23"
    Hardware type............ "ia64"
    Database server.......... "pesbdbci"
    Database type............ "ORACLE"
    Database name............ "ECP"
    Database user ID......... "SAPECP"
    triggers this error message.
    Screen name.............. "SAPLMIGO"
    Screen number............ 0370
    Screen field............. "GOITEM-VMENG"
    Error text............... "FX015: Sign lost."
    Additional data:
    Application server....... "pecprd00"
    Network address.......... "192.168.1.122"
    Operating system......... "HP-UX"
    Release.................. "B.11.23"
    Hardware type............ "ia64"
    Database server.......... "pesbdbci"
    Database type............ "ORACLE"
    Database name............ "ECP"
    Database user ID........ "SAPECP"
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    (0)  0x40000000017dab60  CTrcStack2 + 0x1b0  [dw.sapECP_DVEBMGS10]
    (1)  0x40000000017da970  CTrcStack + 0x30  [dw.sapECP_DVEBMGS10]
    (2)  0x4000000002373150  Z16rabaxCStackSavev + 0x1d0  [dw.sapECP_DVEBMGS10]
    (3)  0x400000000236f3b0  ab_rabax + 0x2d20  [dw.sapECP_DVEBMGS10]
    (4)  0x40000000017efdf0  dyHandleError + 0x300  [dw.sapECP_DVEBMGS10]
    (5)  0x40000000018ec770  dypcnvoXt + 0x3410  [dw.sapECP_DVEBMGS10]
    (6)  0x40000000018e9330  dypcnvo + 0x30  [dw.sapECP_DVEBMGS10]
    (7)  0x40000000018b29c0  dynpdco0 + 0x1e0  [dw.sapECP_DVEBMGS10]
    (8)  0x40000000018b91c0  dynprctl + 0x390  [dw.sapECP_DVEBMGS10]
    (9)  0x40000000018a5c30  dynpen00 + 0x910  [dw.sapECP_DVEBMGS10]
    (10) 0x4000000001513620  Thdynpen00 + 0x460  [dw.sapECP_DVEBMGS10]
    (11) 0x40000000014e3b60  TskhLoop + 0x46d0  [dw.sapECP_DVEBMGS10]
    (12) 0x40000000014da820  tskhstart + 0x3a0  [dw.sapECP_DVEBMGS10]
    (13) 0x40000000013b6e50  DpMain + 0x490  [dw.sapECP_DVEBMGS10]
    (14) 0x40000000013b1b40  main + 0x70  [dw.sapECP_DVEBMGS10]
    (15) 0xc00000000002fb20  main_opd_entry + 0x50  [/usr/lib/hpux64/dld.so]
    List of ABAP programs affected
    Index
    Ty.
    Program
    Group
    Date
    Time
    Size
    Lang.
    0
    Prg
    MB_CALL_MIGO_DIALOG
    0
    18.09.2001
    10:17:04
    55296
    E
    1
    Prg
    SAPMSSY0
    1
    10.08.2006
    17:27:06
    83968
    E
    2
    Prg
    SAPMSSYD
    1
    10.08.2006
    17:30:43
    20480
    E
    3
    Prg
    SAPFSYSCALLS
    1
    06.11.2003
    20:52:59
    7168
    E
    4
    Prg
    RSDBRUNT
    0
    12.11.2004
    14:03:37
    254976
    E
    5
    Typ
    RSSCR
    0
    : m:15
    5120
    6
    Prg
    RSDBSPBL
    0
    06.11.2003
    20:56:48
    72704
    E
    7
    Prg
    SAPDB__S
    0
    06.11.2003
    20:52:58
    18432
    E
    8
    Typ
    VARID
    0
    12.05.1997
    16:51:30
    5120
    9
    Prg
    %_CSYDB0
    0
    06.11.2003
    20:52:42
    35840
    E
    10
    Prg
    RSDBSPVA
    0
    10.08.2006
    17:09:03
    129024
    E
    11
    Typ
    RSVAMEMKEY
    0
    07.05.1997
    13:07:49
    2048
    12
    Prg
    RSDBSPMC
    0
    10.08.2006
    16:45:25
    78848
    E
    13
    Typ
    DDSHDESCR
    0
    03.09.1997
    03:05:16
    4096
    14
    Typ
    SPPARAMS
    0
    07.05.1997
    13:10:38
    2048
    15
    Typ
    SPPARAMS
    0
    07.05.1997
    13:10:38
    2048
    16
    Prg
    SAPLICON
    16
    12.11.2004
    13:50:21
    27648
    E
    17
    Prg
    %_CICON
    16
    16.03.2004
    20:13:52
    100352
    E
    18
    Prg
    SAPLSABE
    18
    06.11.2003
    20:53:04
    13312
    E
    19
    Prg
    SAPLSECU
    19
    10.08.2006
    17:27:59
    76800
    E
    20
    Typ
    RSSUBINFO
    0
    14.10.1999
    22:01:03
    3072
    21
    Typ
    RSEXFCODE
    0
    13.08.1997
    12:52:57
    2048
    22
    Prg
    SAPLDSYA
    22
    06.11.2003
    20:53:01
    45056
    E
    23
    Prg
    SAPFSDS1
    22
    06.11.2003
    20:53:24
    52224
    E
    24
    Typ
    TDCLD
    0
    02.11.1998
    09:51:35
    5120
    25
    Prg
    SAPLSDOD
    25
    10.08.2006
    17:29:56
    45056
    E
    26
    Typ
    DOKIL
    0
    12.05.1997
    16:46:17
    3072
    27
    Prg
    SAPCNVE
    27
    06.11.2003
    20:52:58
    8192
    E
    28
    Prg
    SAPLLANG
    28
    06.11.2003
    20:53:03
    10240
    E
    29
    Typ
    T002
    0
    14.02.1998
    10:24:58
    2048
    30
    Prg
    SAPFSPOR
    0
    11.08.2006
    10:35:34
    14336
    E
    31
    Typ
    RSPARINT
    0
    10.04.1995
    09:58:38
    2048
    32
    Prg
    SAPLKGJH
    32
    06.11.2003
    20:53:03
    10240
    E
    33
    Prg
    SAPLSCNT
    33
    06.11.2003
    20:53:04
    30720
    E
    34
    Typ
    DYCBOX
    0
    20.08.1998
    11:16:53
    3072
    35
    Prg
    SAPLSVSM
    35
    10.08.2006
    17:26:59
    29696
    E
    36
    Prg
    SAPLSGUI
    36
    12.11.2004
    13:59:56
    76800
    E
    37
    Prg
    SAPLSTTM
    37
    10.08.2006
    16:44:18
    86016
    E
    38
    Prg
    SAPLSBDC
    38
    10.08.2006
    16:54:12
    45056
    E
    39

    Hi,
    In the screen 370 of your module pool, go to the properties of the field which is having a negative value displayed.. (Ex: Currency fields), we see a text with all underscores. ___________
    Change it to _________V
    Remove last underscore and put V
    Hope it solves your problem.
    Regards
    Sailaja.

  • Abap dump error while release Production order

    Dear Gurus,
                          Abap dump error is creating while release production order , pour some light on this issue.
    Regards,
    Kamal

    Hello,
      use transaction ST22 to analyze the error type. There you have the detail of the error message, the program and the line of the ABAP code where the dump was triggered.
    Best regards,
    Andrea

  • ABAP DUMP IN DTP

    Hi All,
    i got a ABAP Dump in the DTP while i am loading the Text data stating " ASSIGN_TYPE_CONFLICT" . I had chked but unable to find any reason if any one is familiar abt this plz help me out.
    Regards
    KK

    I had a similar problem. It is not enough to activate the transformation.
    We changed the target structure by deleting a field (I think add a field should be fine, too), activated everything and changed the structure and transformation back after this.
    The change of structure lead to a complete new generation of the generic code. Activation alone is not enough, a bigger change is necessary!
    After this change and activation everything run perfect!

  • ABAP dump Error while creating service order in PCUI.

    Hi Experts,
                     We are getting following ABAP dump error while creating service order in PCUI which is working fine in GUI.
    Runtime Errors         RAISE_EXCEPTION
    Date and Time          02.01.2008 14:55:38
    Short text
    Exception condition "TYPE_NOT_FOUND" raised.
    What happened?
    The current ABAP/4 program encountered an unexpected
    situation.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    A RAISE statement in the program "CL_CRM_ELEMDESCR==============CP" raised the
    exception
    condition "TYPE_NOT_FOUND".
    Since the exception was not intercepted by a superior
    program, processing was terminated.
    Short description of exception condition:
    For detailed documentation of the exception condition, use
    Transaction SE37 (Function Library). You can take the called
    |    function module from the display of active calls.     
    We have added custom fields in the service application. these custom fields with Z-structure & data elements  are included in BSP structure CRMT_BSP_SRV_OIC_SRCHRES in development system.But the same Z structure & custom fields are exist in the production system but not included in BSP Structue CRMT_BSP_SRV_OIC_SRCHRES.
    This may be the reason resulting this ABAP dump error in PCUI while creating Service order.
    How these Z structures can be included in the BSP Structure CRMT_BSP_SRV_OIC_SRCHRES in production system?
    Helpful answers would be rewrded max points as it is high priority issue.
    Regards,
    Basavaraj Patil

    Hi Thirumala,
    Thnaks for the reply.
                I have enhanced service application using transaction EEWB to add new custom fields. these fields are there in Z structure created by the system in production system. All the transports are moved to target system. Problem is that Z structure( contains custom fields)  created while doing  EEWB is not included in BSP structure.
    I f transports are missed to move to target system, Is there any other alternative to solve this problem?
    Regards,
    Basavaraj Patil

  • ABAP dump in ECC 6.0 - Need OSS notes

    ABAP dump is coming when retriving data between select-endselect.
    Runtime Errors         DBIF_RSQL_INVALID_CURSOR
    Except.                CX_SY_OPEN_SQL_DB
    The problem cannot be resolved without correcting the application
    program.
    The statements MESSAGE, COMMIT WORK, ROLLBACK WORK, CALL SCREEN,
    BREAK-POINT, WAIT, CALL FUNCTION ... DESTINATION, CALL FUNCTION ...
    STARTING NEW TASK, RECEIVE RESULTS, CALL SELECTION-SCREEN, CALL
    DIALOG, CALL TRANSACTION cannot be used within a database
    loop.
    You can collect the data needed for these statements together in an
    internal table and process them
    in a loop.
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "DBIF_RSQL_INVALID_CURSOR" "CX_SY_OPEN_SQL_DB"
    Can you please give the OSS notes no. if anything is available.

    Hi Sreedevi..
    In the dump report, the piece of code where the dump occured will be shown
    something with >>>>>> sign in the line...
    Please copy and paste this peice of code..
    Thanks and Best Regards,
    Vikas Bittera.
    **Reward if useful**

Maybe you are looking for

  • Users Opening to Their Dektop

    RDS 2012 publishing office to users desktop. Our users are not using thin clients. They have their own desktop PC with their own local profile. What is everyone else doing for when users file->open in an office app and the user is seeing their profil

  • SAML sender-vouches using SSL

    Hi, I have an WLS 9.2 sending a SOAP with SAML: <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" soapenv:mustUnderstand="0"> <Assertion AssertionID="cb5d35763849418c060580753c16b334" IssueI

  • Moving Through Messages

    Is there a way to move from one open message to another without closing each message I open? Here's my layout: Mail list has preview turned off Down & up arrow through list of messages Hit Enter key to open first message - window with message appears

  • Different values within "conversion rule" possible?

    Hi, in context of the HR-CRM-integration we are using a conversion rule for converting the private address (IT 0006) to a constant value by using trx bd62 -> bd79 -> bd55. This conversion rule works quite fine, but the disadvantage is that we can onl

  • Dbca fails

    Hello , i am doing database createion on 11gR2 on solaris 10 and i got this mesage while defining SID: "The Oracle system identifier(SID) "test" already exists. Specifiy another SID. Before that my dbca failed when got to 4%, i don't know why, and no