2007 Nov 19 12:53 PM
There is a ABAP program with call the function RFC_READ_TABLE to load information from BW system. Sometimes the processing of this program is canceled with several DUMPs. These DUMPs point to commands in the code of the function RFC_READ_TABLE.
I didn't find any notes to this problem. What can I do?
One of many DUMPs:
================
Runtime Errors ASSIGN_CASTING_UNKNOWN_TYPE
Except. CX_SY_ASSIGN_CAST_UNKNOWN_TYPE
Date and Time 08.11.2007 23:59:58
-
-
-
-
ShrtText |
The specified type "/bi0/scomp_code" is unknown. |
-
-
-
-
What happened? |
Error in ABAP application program. |
The current ABAP program "SAPLSDTX" had to be terminated because one of the |
statements could not be executed. |
This is probably due to an error in the ABAP program. |
-
-
-
-
What can you do? |
Print out the error message (using the "Print" function) |
and make a note of the actions and input that caused the |
error. |
To resolve the problem, contact your SAP system administrator. |
You can use transaction ST22 (ABAP Dump Analysis) to view and administer |
termination messages, especially those beyond their normal deletion |
date. |
is especially useful if you want to keep a particular message. |
-
-
-
-
Error analysis |
An exception occurred. This exception is dealt with in more detail below |
. The exception, which is assigned to the class |
'CX_SY_ASSIGN_CAST_UNKNOWN_TYPE', was neither |
caught nor passed along using a RAISING clause, in the procedure |
"RFC_READ_TABLE" "(FUNCTION)" |
. |
Since the caller of the procedure could not have expected this exception |
to occur, the running program was terminated. |
The reason for the exception is: |
The type "/bi0/scomp_code" that you specified dynamically in the |
ASSIGN ... CASTING TYPE statement is unknown. |
It was not found either in the program or the ABAP Dictionary. |
This may either be due to a spelling mistake, or the object is |
not active in the ABAP Dictionary. |
-
-
-
-
How to correct the error |
The name of the type "/bi0/scomp_code" is incorrect, or the type does |
not exist (at least within the current program context). |
Probably the only way to eliminate the error is to correct the program. |
- |
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: |
"ASSIGN_CASTING_UNKNOWN_TYPE" CX_SY_ASSIGN_CAST_UNKNOWN_TYPEC |
"SAPLSDTX" or "LSDTXU01" |
"RFC_READ_TABLE" |
If you cannot solve the problem yourself and you wish to send |
an error message to SAP, include the following documents: |
1. A printout of the problem description (short dump) |
To obtain this, select in the current display "System->List-> |
Save->Local File (unconverted)". |
2. A suitable printout of the system log |
To obtain this, call the system log through transaction SM21. |
Limit the time interval to 10 minutes before and 5 minutes |
after the short dump. In the display, then select the function |
"System->List->Save->Local File (unconverted)". |
3. If the programs are your own programs or modified SAP programs, |
supply the source code. |
To do this, select the Editor function "Further Utilities-> |
Upload/Download->Download". |
4. Details regarding the conditions under which the error occurred |
or which actions and input led to the error. |
The exception must either be prevented, caught within the procedure |
"RFC_READ_TABLE" |
"(FUNCTION)", or declared in the procedure's RAISING clause. |
To prevent the exception, note the following: |
-
-
-
-
System environment |
SAP Release.............. "640" |
Application server....... "brsjp005" |
Network address.......... "10.97.208.64" |
Operating system......... "HP-UX" |
Release.................. "B.11.11" |
Hardware type............ "9000/800" |
Character length......... 8 Bits |
Pointer length........... 64 Bits |
Work process number...... 0 |
Short dump setting....... "full" |
Database server.......... "brsjp005" |
Database type............ "ORACLE" |
Database name............ "PBW" |
Database owner........... "SAPPBW" |
Character set............ "pt_PT.iso88591" |
SAP kernel............... "640" |
Created on............... "Jul 25 2005 20:22:17" |
Created in............... "HP-UX B.11.00 A 9000/800" |
Database version......... "OCI_920 " |
Patch level.............. "83" |
Patch text............... " " |
Supported environment.... |
Database................. "ORACLE 8.1.7.., ORACLE 9.2.0.., ORACLE |
10.1.0.." |
SAP database version..... "640" |
Operating system......... "HP-UX B.11" |
Memory usage............. |
Roll..................... 16128 |
EM....................... 4189928 |
Heap..................... 0 |
Page..................... 0 |
MM Used.................. 821688 |
MM Free.................. 3365720 |
SAP Release.............. "640" |
-
-
-
-
User and Transaction |
-
-
-
-
Information on where terminated |
The termination occurred in the ABAP program "SAPLSDTX" in "RFC_READ_TABLE". |
The main program was "SAPMSSY1 ". |
The termination occurred in line 166 of the source code of the (Include) |
program "LSDTXU01" |
of the source code of program "LSDTXU01" (when calling the editor 1660). |
Processing was terminated because the exception |
"CX_SY_ASSIGN_CAST_UNKNOWN_TYPE" occurred in the |
procedure "RFC_READ_TABLE" "(FUNCTION)" but was not handled locally, not |
declared in the |
RAISING clause of the procedure. |
The procedure is in the program "SAPLSDTX ". Its source code starts in line 7 |
of the (Include) program "LSDTX$01 ". |
-
-
-
-
Source Code Extract |
-
-
Line | SourceCde |
-
-
136 | FIELDS_INT-OFFSET_DST = LINE_CURSOR. |
137 | FIELDS_INT-TYPE = TABLE_STRUCTURE-INTTYPE. |
138 | FIELDS_INT-DECIMALS = TABLE_STRUCTURE-DECIMALS. |
139 |
|
140 | LINE_CURSOR = LINE_CURSOR + TABLE_STRUCTURE-LENG. |
141 | IF LINE_CURSOR > LINE_LENGTH AND NO_DATA EQ SPACE. |
142 | RAISE DATA_BUFFER_EXCEEDED. |
143 | ENDIF. |
144 | APPEND FIELDS_INT. |
145 | |
146 |
|
147 | FIELDS-FIELDTEXT = TABLE_STRUCTURE-FIELDTEXT. |
148 | FIELDS-TYPE = TABLE_STRUCTURE-INTTYPE. |
149 | FIELDS-LENGTH = FIELDS_INT-LENGTH_DST. |
150 | FIELDS-OFFSET = FIELDS_INT-OFFSET_DST. |
151 | MODIFY FIELDS. |
152 | |
153 | ENDLOOP. |
154 |
|
155 | |
156 |
|
157 |
|
158 |
|
159 |
|
160 |
|
161 | IF NO_DATA EQ SPACE. |
162 | |
163 | DATA: BEGIN OF WORK, BUFFER(30000), END OF WORK. |
164 | |
165 | FIELD-SYMBOLS: <WA> TYPE ANY, <COMP> TYPE ANY. |
>>>>> | ASSIGN WORK TO <WA> CASTING TYPE (QUERY_TABLE). |
167 | |
168 | IF ROWCOUNT > 0. |
169 | ROWCOUNT = ROWCOUNT + ROWSKIPS. |
170 | ENDIF. |
171 | |
172 | SELECT * FROM (QUERY_TABLE) INTO <WA> WHERE (OPTIONS). |
173 | |
174 | IF SY-DBCNT GT ROWSKIPS. |
175 | |
176 |
|
177 | LOOP AT FIELDS_INT. |
178 | IF FIELDS_INT-TYPE = 'P'. |
179 | ASSIGN COMPONENT FIELDS_INT-FIELDNAME |
180 | OF STRUCTURE <WA> TO <COMP> |
181 | TYPE FIELDS_INT-TYPE |
182 | DECIMALS FIELDS_INT-DECIMALS. |
183 | ELSE. |
184 | ASSIGN COMPONENT FIELDS_INT-FIELDNAME |
185 | OF STRUCTURE <WA> TO <COMP> |
-
-
-
-
Contents of system fields |
-
-
Name | Val. |
-
-
SY-SUBRC | 0 |
SY-INDEX | 2 |
SY-TABIX | 2 |
SY-DBCNT | 5 |
SY-FDPOS | 30 |
SY-LSIND | 0 |
SY-PAGNO | 0 |
SY-LINNO | 1 |
SY-COLNO | 1 |
SY-PFKEY | |
SY-UCOMM | |
SY-TITLE | Controle CPIC e RFC |
SY-MSGTY | |
SY-MSGID | |
SY-MSGNO | 000 |
SY-MSGV1 | |
SY-MSGV2 | |
SY-MSGV3 | |
SY-MSGV4 |
-
-
-
-
Active Calls/Events |
-
-
No. Ty. Program Include Line |
Name |
-
-
4 FUNCTION SAPLSDTX LSDTXU01 166 |
RFC_READ_TABLE |
3 FORM SAPLSDTX LSDTXV01 43 |
RFC_READ_TABLE |
2 FORM SAPMSSY1 SAPMSSY1 69 |
REMOTE_FUNCTION_CALL |
1 MODULE (PBO) SAPMSSY1 SAPMSSY1 30 |
%_RFC_START |
-
-
-
-
Chosen variables |
-
-
Name |
Val. |
-
-
No. 4 Ty. FUNCTION |
Name RFC_READ_TABLE |
-
-
DELIMITER |
; |
3 |
B |
NO_DATA |
2 |
0 |
QUERY_TABLE |
/bi0/scomp_code |
266327666756666222222222222222 |
F290F33FD0F3F45000000000000000 |
ROWCOUNT |
0 |
0000 |
0000 |
ROWSKIPS |
0 |
0000 |
0000 |
DATA[] |
Table IT_54[0x512] |
FUNCTION-POOL=SDTXFORM=RFC_READ_TABLEDATA=DATA[] |
Table reference: 2 |
TABH+ 0(20) = 0000000000000000C0000001E40C766800000000 |
TABH+ 20(20) = 00000002000000360000000000000200FFFFFFFF |
TABH+ 40(16) = 0400000100000568000A249081000000 |
store = 0x0000000000000000 |
ext1 = 0xC0000001E40C7668 |
shmId = 0 (0x00000000) |
id = 2 (0x00000002) |
label = 54 (0x00000036) |
fill = 0 (0x00000000) |
leng = 512 (0x00000200) |
loop = -1 (0xFFFFFFFF) |
xtyp = TYPE#000015 |
occu = 10 (0x0000000A) |
access = 1 (ItAccessStandard) |
idxKind = 0 (ItIndexNone) |
uniKind = 2 (ItUniqueNon) |
keyKind = 1 (default) |
cmpMode = 2 (cmpSingleMcmpR) |
occu0 = 0 |
collHash = 0 |
groupCntl = 0 |
rfc = 1 |
unShareable = 0 |
mightBeShared = 0 |
sharedWithShmTab = 0 |
isShmLockId = 0 |
gcKind = 0 |
isUsed = 1 |
>>>>> Shareable Table Header Data <<<<< |
tabi = Not allocated |
pghook = Not allocated |
idxPtr = Not allocated |
refCount = Not allocated |
tstRefCount = Not allocated |
lineAdmin = Not allocated |
lineAlloc = Not allocated |
store_id = Not allocated |
shmIsReadOnly = Not allocated |
>>>>> 1st level extension part <<<<< |
regHook = 0x0000000000000000 |
hsdir = 0x0000000000000000 |
ext2 = 0xC0000001E40BC1E8 |
>>>>> 2nd level extension part <<<<< |
tabhBack = 0xC0000001E40A0238 |
delta_head = 0000000100000001CC0000000000000304000001000005A00000000080000000A0000000 |
pb_func = 0x0000000000000000 |
pb_handle = 0x0000000000000000 |
FIELDS[] |
Table IT_55[1x103] |
FUNCTION-POOL=SDTXFORM=RFC_READ_TABLEDATA=FIELDS[] |
Table reference: 1 |
TABH+ 0(20) = C0000001E40A01E0C0000001E40BB51800000000 |
TABH+ 20(20) = 00000001000000370000000100000067FFFFFFFF |
TABH+ 40(16) = 04000001000004C0000A249081000000 |
store = 0xC0000001E40A01E0 |
ext1 = 0xC0000001E40BB518 |
shmId = 0 (0x00000000) |
id = 1 (0x00000001) |
label = 55 (0x00000037) |
fill = 1 (0x00000001) |
leng = 103 (0x00000067) |
loop = -1 (0xFFFFFFFF) |
xtyp = TYPE#000012 |
occu = 10 (0x0000000A) |
access = 1 (ItAccessStandard) |
idxKind = 0 (ItIndexNone) |
uniKind = 2 (ItUniqueNon) |
keyKind = 1 (default) |
cmpMode = 2 (cmpSingleMcmpR) |
occu0 = 0 |
collHash = 0 |
groupCntl = 0 |
rfc = 1 |
unShareable = 0 |
mightBeShared = 0 |
sharedWithShmTab = 0 |
isShmLockId = 0 |
gcKind = 0 |
isUsed = 1 |
>>>>> Shareable Table Header Data <<<<< |
tabi = 0xC0000001E409FDC0 |
pghook = 0x0000000000000000 |
idxPtr = 0x0000000000000000 |
refCount = 0 (0x00000000) |
tstRefCount = 0 (0x00000000) |
lineAdmin = 10 (0x0000000A) |
lineAlloc = 10 (0x0000000A) |
store_id = 34 (0x00000022) |
shmIsReadOnly = 0 (0x00000000) |
>>>>> 1st level extension part <<<<< |
regHook = 0x0000000000000000 |
hsdir = 0x0000000000000000 |
ext2 = 0xC0000001E40C4D40 |
>>>>> 2nd level extension part <<<<< |
tabhBack = 0xC0000001E4001E30 |
delta_head = 0000000100000002CD0000000000000204000001000004F80000006780000000A0000000 |
pb_func = 0x0000000000000000 |
pb_handle = 0x0000000000000000 |
OPTIONS[] |
Table IT_56[1x72] |
FUNCTION-POOL=SDTXFORM=RFC_READ_TABLEDATA=OPTIONS[] |
Table reference: 0 |
TABH+ 0(20) = C0000001E4001950C0000001E40C520000000000 |
TABH+ 20(20) = 00000000000000380000000100000048FFFFFFFF |
TABH+ 40(16) = 0400000100000418000A249081000000 |
store = 0xC0000001E4001950 |
ext1 = 0xC0000001E40C5200 |
shmId = 0 (0x00000000) |
id = 0 (0x00000000) |
label = 56 (0x00000038) |
fill = 1 (0x00000001) |
leng = 72 (0x00000048) |
loop = -1 (0xFFFFFFFF) |
xtyp = TYPE#000009 |
occu = 10 (0x0000000A) |
access = 1 (ItAccessStandard) |
idxKind = 0 (ItIndexNone) |
uniKind = 2 (ItUniqueNon) |
keyKind = 1 (default) |
cmpMode = 2 (cmpSingleMcmpR) |
occu0 = 0 |
collHash = 0 |
groupCntl = 0 |
rfc = 1 |
unShareable = 0 |
mightBeShared = 0 |
sharedWithShmTab = 0 |
isShmLockId = 0 |
gcKind = 0 |
isUsed = 1 |
>>>>> Shareable Table Header Data <<<<< |
tabi = 0xC0000001E40A0288 |
pghook = 0x0000000000000000 |
idxPtr = 0x0000000000000000 |
refCount = 0 (0x00000000) |
tstRefCount = 0 (0x00000000) |
lineAdmin = 10 (0x0000000A) |
lineAlloc = 10 (0x0000000A) |
store_id = 35 (0x00000023) |
shmIsReadOnly = 0 (0x00000000) |
>>>>> 1st level extension part <<<<< |
regHook = 0x0000000000000000 |
hsdir = 0x0000000000000000 |
ext2 = 0xC0000001E40C51A0 |
>>>>> 2nd level extension part <<<<< |
tabhBack = 0xC0000001E4001900 |
delta_head = 0000000100000003CE0000000000000104000001000004500000000080000000A0000000 |
pb_func = 0x0000000000000000 |
pb_handle = 0x0000000000000000 |
LINE_CURSOR |
10 |
0000 |
000A |
TABLE_STRUCTURE-LENG |
000010 |
333333 |
000010 |
LINE_LENGTH |
512 |
0000 |
0020 |
SYST-REPID |
SAPLSDTX |
5454545522222222222222222222222222222222 |
310C344800000000000000000000000000000000 |
FIELDS_INT[] |
Table IT_94[1x61] |
FUNCTION=RFC_READ_TABLEDATA=FIELDS_INT[] |
Table reference: 26 |
TABH+ 0(20) = C0000001E40BB688000000000000000000000000 |
TABH+ 20(20) = 0000001A0000005E000000010000003DFFFFFFFF |
TABH+ 40(16) = 0400000100000808000A249001000000 |
store = 0xC0000001E40BB688 |
ext1 = 0x0000000000000000 |
shmId = 0 (0x00000000) |
id = 26 (0x0000001A) |
label = 94 (0x0000005E) |
fill = 1 (0x00000001) |
leng = 61 (0x0000003D) |
loop = -1 (0xFFFFFFFF) |
xtyp = TYPE#000027 |
occu = 10 (0x0000000A) |
access = 1 (ItAccessStandard) |
idxKind = 0 (ItIndexNone) |
uniKind = 2 (ItUniqueNon) |
keyKind = 1 (default) |
cmpMode = 2 (cmpSingleMcmpR) |
occu0 = 0 |
collHash = 0 |
groupCntl = 0 |
rfc = 0 |
unShareable = 0 |
mightBeShared = 0 |
sharedWithShmTab = 0 |
isShmLockId = 0 |
gcKind = 0 |
isUsed = 1 |
>>>>> Shareable Table Header Data <<<<< |
tabi = 0xC0000001E40C6C50 |
pghook = 0x0000000000000000 |
idxPtr = 0x0000000000000000 |
refCount = 0 (0x00000000) |
tstRefCount = 0 (0x00000000) |
lineAdmin = 10 (0x0000000A) |
lineAlloc = 10 (0x0000000A) |
store_id = 54 (0x00000036) |
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 |
FIELDS_INT |
SID I000000000004000010000004000000 |
5442222222222222222222222222224333333333333333333333333333333 |
3940000000000000000000000000009000000000004000010000004000000 |
FIELDS |
SID 000000000010IID dados mestre |
5442222222222222222222222222223333333333334442666672667776222222222222222222222222222222222222 |
3940000000000000000000000000000000000000109940414F30D53425000000000000000000000000000000000000 |
%_SPACE |
2 |
0 |
WORK |
2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 |
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
<%_1_SYSINI> |
2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 |
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
<WA> |
??? |
?????? |
?????? |
SY-XFORM |
RFC_READ_TABLE |
544554445544442222222222222222 |
263F2514F412C50000000000000000 |
-
-
No. 3 Ty. FORM |
Name RFC_READ_TABLE |
-
-
SY-SUBRC |
0 |
0000 |
0000 |
SY-XPROG |
SAPLSDTX |
5454545522222222222222222222222222222222 |
310C344800000000000000000000000000000000 |
DELIMITER |
; |
3 |
B |
NO_DATA |
2 |
0 |
%_VIASELSCR |
# |
0 |
4 |
QUERY_TABLE |
/bi0/scomp_code |
266327666756666222222222222222 |
F290F33FD0F3F45000000000000000 |
ROWCOUNT |
0 |
0000 |
0000 |
ROWSKIPS |
0 |
0000 |
0000 |
DATA[] |
Table IT_54[0x512] |
FIELDS[] |
Table IT_55[1x103] |
OPTIONS[] |
Table IT_56[1x72] |
-
-
No. 2 Ty. FORM |
Name REMOTE_FUNCTION_CALL |
-
-
%_DUMMY$$ |
2222 |
0000 |
SY-REPID |
SAPMSSY1 |
5454555322222222222222222222222222222222 |
310D339100000000000000000000000000000000 |
SYST-REPID |
SAPMSSY1 |
5454555322222222222222222222222222222222 |
310D339100000000000000000000000000000000 |
%_ARCHIVE |
2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 |
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
TYPE |
3 |
0000 |
0003 |
SY-XPROG |
SAPLSDTX |
5454545522222222222222222222222222222222 |
310C344800000000000000000000000000000000 |
SY-XFORM |
RFC_READ_TABLE |
544554445544442222222222222222 |
263F2514F412C50000000000000000 |
%_SPACE |
2 |
0 |
-
-
No. 1 Ty. MODULE (PBO) |
Name %_RFC_START |
-
-
%_PRINT |
000 0 ## |
2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223200 |
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
RFCTYPE_INTERNAL |
3 |
0000 |
0003 |
-
-
-
-
Internal notes |
The termination occurred in the function "GetTypeByName" of the SAP |
Basis System, specifically in line 3115 of the module |
"//bas/640_REL/src/krn/runt/abassi.c#7". |
The internal operation just processed is "ASSI". |
The internal session was started at 20071108235957. |
-
-
-
-
Active Calls in SAP Kernel |
-
-
Lines of C Stack in Kernel (Structure Differs on Each Platform) |
-
-
( 4) 0x4000000001a3aee4 GetTypeByName__FPC7AB_DATAP4RUDI + 0xbbc |
-
-
-
-
List of ABAP programs affected |
-
-
Index | Ty. | Program | Group | Date | Time | Size | Lang. |
-
-
0 | Prg | SAPMSSY1 | 0 | 04.09.2002 | 14:48:31 | 18432 | P |
1 | Prg | SAPLSDTX | 1 | 04.09.2002 | 14:48:30 | 44032 | P |
2 | Typ | TAB512 | 0 | 31.03.1995 | 17:41:24 | 2048 | |
3 | Typ | RFC_DB_FLD | 0 | 16.12.1996 | 19:30:48 | 2048 | |
4 | Typ | RFC_DB_OPT | 0 | 16.05.1995 | 16:36:01 | 1024 | |
5 | Prg | SAPLSVIX | 5 | 16.10.2005 | 19:37:40 | 450560 | P |
6 | Typ | X030L | 0 | 02.02.2001 | 11:46:51 | 5120 | |
7 | Typ | DFIES | 0 | 01.02.2001 | 17:10:27 | 8192 | |
8 | Prg | SAPLSDIFRUNTIME | 8 | 24.08.2004 | 14:10:20 | 82944 | P |
9 | Typ | DDFIXVALUE | 0 | 19.01.2000 | 18:27:52 | 2048 | |
10 | Typ | X031L | 0 | 02.02.2001 | 11:46:54 | 5120 | |
11 | Prg | SAPLSDNT | 11 | 16.10.2005 | 19:17:23 | 201728 | P |
12 | Prg | SAPLSUGS | 12 | 24.08.2004 | 14:10:21 | 29696 | P |
13 | Typ | REPL_TAB | 0 | 13.11.2001 | 00:05:58 | 5120 | |
14 | Typ | DDFTX | 0 | 08.08.1997 | 14:46:46 | 4096 | |
15 | Typ | TVDIR | 0 | 29.04.1998 | 10:24:52 | 3072 | |
16 | Prg | SAPLSDIF | 16 | 24.08.2004 | 14:10:20 | 180224 | P |
17 | Typ | DD03P | 0 | 02.10.2003 | 11:43:19 | 11264 | |
18 | Typ | DD05M | 0 | 01.02.2001 | 17:09:48 | 3072 | |
19 | Typ | DD08V | 0 | 06.02.1998 | 12:40:54 | 3072 | |
20 | Typ | DD12V | 0 | 06.02.1998 | 12:41:05 | 4096 | |
21 | Typ | DD17V | 0 | 07.04.1997 | 18:28:05 | 2048 | |
22 | Typ | DD35V | 0 | 14.03.2001 | 11:04:51 | 2048 | |
23 | Typ | DD36M | 0 | 14.03.2001 | 11:04:51 | 4096 | |
24 | Typ | DD02V | 0 | 13.11.2001 | 00:18:46 | 6144 | |
25 | Typ | DD09V | 0 | 19.01.2000 | 18:27:41 | 4096 | |
26 | Prg | SAPLSDTB | 26 | 16.10.2005 | 19:05:56 | 386048 | P |
27 | Typ | DDCACHE | 0 | 13.01.1995 | 11:02:04 | 2048 | |
28 | Typ | DCTABDGET | 0 | 02.05.1997 | 13:15:33 | 2048 | |
29 | Prg | SAPLSDSG | 29 | 24.08.2004 | 14:10:20 | 112640 | P |
30 | Prg | RADBTDDO | 29 | 24.08.2004 | 14:10:20 | 34816 | P |
31 | Prg | RADBTDDF | 29 | 24.08.2004 | 14:10:20 | 237568 | P |
32 | Typ | DD02L | 0 | 13.11.2001 | 00:13:06 | 6144 | |
33 | Typ | DD02T | 0 | 07.04.1997 | 18:27:24 | 2048 | |
34 | Typ | DDSTATE | 0 | 18.12.1996 | 10:40:59 | 2048 | |
35 | Typ | DCTABLGET | 0 | 02.05.1997 | 13:15:34 | 2048 | |
36 | Typ | DD08L | 0 | 09.05.1997 | 12:50:26 | 3072 | |
37 | Typ | TDDAT | 0 | 16.12.1996 | 19:26:43 | 2048 | |
38 | Typ | TAB512 | 0 | 31.03.1995 | 17:41:24 | 2048 | |
39 | Typ | /BIC/DIC_SD_C08T | 0 | 15.07.2005 | 10:46:12 | 2048 | |
40 | Prg | CX_SY_ASSIGN_CAST_UNKNOWN_TYPECP | 40 | 13.11.2001 | 01:32:28 | 8192 | P |
41 | Typ | SCX_SRCPOS | 0 | 01.02.2001 | 17:20:25 | 2048 | |
42 | Prg | CX_SY_ASSIGN_CAST_ERROR=======CP | 42 | 22.01.2003 | 11:57:34 | 8192 | P |
43 | Prg | CX_SY_ASSIGN_ERROR============CP | 43 | 22.01.2003 | 11:57:34 | 8192 | P |
44 | Prg | CX_DYNAMIC_CHECK==============CP | 44 | 22.01.2003 | 11:57:34 | 8192 | P |
45 | Prg | CX_ROOT=======================CP | 45 | 02.10.2003 | 11:47:51 | 9216 | P |
46 | Prg | CX_NO_CHECK===================CP | 46 | 22.01.2003 | 11:57:34 | 8192 | P |
47 | Prg | CX_SY_NO_HANDLER==============CP | 47 | 22.01.2003 | 11:57:34 | 8192 | P |
48 | Typ | DFIES | 0 | 01.02.2001 | 17:10:27 | 8192 | |
49 | Typ | SYST | 0 | 16.10.2005 | 17:24:11 | 27648 |
-
-
-
-
Directory of Application Tables |
-
-
Name Date Time Lngth |
Val. |
-
-
Program SAPMSSY1 |
-
-
SYST . . : : 00002404 |
00000000000x02000x0500000000000 |
-
-
Program SAPLSVIX |
-
-
TVDIR . . : : 00000136 | |
X030L . . : : 00000147 | |
/BI0/SCOMP_CODE BDZH«Bx7FCLá000x0AaÐv20 | |
TDDAT . . : : 00000039 | |
&NC& | |
DD25L . . : : 00000106 | |
0000 00 |
-
-
-
-
ABAP Control Blocks (CONT) |
-
-
Index | Name | Fl | PAR0 | PAR1 | PAR2 | PAR3 | PAR4 | PAR5 | PAR6 | SourceCde | Line |
-
-
280 | FUNE | 03 | 002C | LSDTXU01 | 142 | ||||||
281 | ENDF | 00 | 0000 | LSDTXU01 | 142 | ||||||
282 | TAPP | 00 | 0243 | C005 | C006 | LSDTXU01 | 144 | ||||
284 | mvqk | 3C | 8480 | 002B | 0185 | LSDTXU01 | 147 | ||||
286 | mvqb | 01 | 8480 | 002A | 00ED | LSDTXU01 | 148 | ||||
288 | mvqk | 06 | 8480 | 0024 | 0313 | LSDTXU01 | 149 | ||||
290 | mvqk | 06 | 8480 | 001E | 031F | LSDTXU01 | 150 | ||||
292 | TMOD | 00 | 0000 | 8007 | 8008 | LSDTXU01 | 151 | ||||
294 | BRAX | 01 | FFB3 | LSDTXU01 | 153 | ||||||
295 | cmp1 | 00 | 0242 | 8002 | 001A | LSDTXU01 | 161 | ||||
297 | BRAF | 02 | 004E | LSDTXU01 | 161 | ||||||
298 | ASSI | 40 | 0004 | C00B | 4000 | 0000 | 0000 | 0000 | 0000 | LSDTXU01 | 166 |
>>>>> | ASSI | 8A | 0000 | 4000 | 800D | 8000 | 0000 | 0000 | 0000 | LSDTXU01 | 166 |
306 | cmpr | 00 | 00CA | 8004 | 0000 | LSDTXU01 | 168 | ||||
308 | BRAF | 04 | 0005 | LSDTXU01 | 168 | ||||||
309 | ccqi | 0B | 0000 | 8000 | 0024 | 8000 | 0020 | 8000 | 0024 | LSDTXU01 | 169 |
313 | SQLS | 3A | 0000 | LSDTXU01 | 172 | ||||||
314 | SQLS | 09 | 8000 | LSDTXU01 | 172 | ||||||
315 | SQLS | 24 | 0012 | LSDTXU01 | 172 | ||||||
316 | PAR1 | 00 | 0011 | LSDTXU01 | 172 |
-
-
2007 Nov 19 2:59 PM
If I recall correctly, there are SAP notes about this FM pointing out that it shouldn't be used. I think at least one of them points to another one that can be used.
Look for consulting notes.
Rob
2007 Nov 19 3:03 PM
2007 Nov 19 3:14 PM
Hi Rodrigo,
Refer to the url below:
<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f50dcd4e-0501-0010-3596-b686a7b51492">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f50dcd4e-0501-0010-3596-b686a7b51492</a>
Hope it helps.
Lokesh