Runtime Errors SYNTAX_ERROR
Date and Time 11.10.2011 12:54:12
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Short text |
| Syntax error in program "CL_IM_WRF_BWEXT_STRUKTART=====CP ". |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|What happened? |
| Error in the ABAP Application Program |
| |
| The current ABAP program "CL_EXIT_MASTER================CP" had to be |
| terminated because it has |
| come across a statement that unfortunately cannot be executed. |
| |
| The following syntax error occurred in program |
| "CL_IM_WRF_BWEXT_STRUKTART=====CP " in include |
| "CL_IM_WRF_BWEXT_STRUKTART=====CM007 " in |
| line 125: |
| "The data object "<2LIS_02_SCL_REC>" does not have a component called "" |
| "ATTYP"." |
| " " |
| " " |
| |
| The include has been created and last changed by: |
| Created by: "SAP " |
| Last changed by: "SAP " |
| Error in the ABAP Application Program |
| |
| The current ABAP program "CL_EXIT_MASTER================CP" had to be |
| terminated because it has |
| come across a statement that unfortunately cannot be executed. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|What can you do? |
| Please eliminate the error by performing a syntax check |
| (or an extended program check) on the program "CL_IM_WRF_BWEXT_STRUKTART=====CP |
| ". |
| You can also perform the syntax check from the ABAP Editor. |
| |
| If the problem persists, proceed as follows: |
| 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 |
| The following syntax error was found in the program |
| CL_IM_WRF_BWEXT_STRUKTART=====CP : |
| "The data object "<2LIS_02_SCL_REC>" does not have a component called "" |
| "ATTYP"." |
| " " |
| " " |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|How to correct the error |
| Probably the only way to eliminate the error is to correct the program. |
| - |
| 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... "kml-qty" |
| Network address...... "192.168.10.92" |
| Operating system..... "Windows NT" |
| Release.............. "5.2" |
| Hardware type........ "8x AMD64 Level" |
| Character length.... 16 Bits |
| Pointer length....... 64 Bits |
| Work process number.. 1 |
| Shortdump setting.... "full" |
| |
| Database server... "KML-QTY" |
| Database type..... "ORACLE" |
| Database name..... "QT1" |
| Database user ID.. "SAPPRD" |
| |
| Terminal................. "DAMA-PC" |
| |
| Char.set.... "C" |
| |
| SAP kernel....... 700 |
| created (date)... "Nov 18 2008 22:53:36" |
| create on........ "NT 5.2 3790 Service Pack 1 x86 MS VC++ 14.00" |
| Database version. "OCI_10201_SHARE (10.2.0.2.0) " |
| |
| Patch level. 185 |
| Patch text.. " " |
| |
| Database............. "ORACLE 9.2.0.*.*, ORACLE 10.1.0.*.*, ORACLE 10.2.0.*.*" |
| SAP database version. 700 |
| Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows |
| NT 6.0" |
| |
| Memory consumption |
| Roll.... 16192 |
| EM...... 16759360 |
| Heap.... 0 |
| Page.... 90112 |
| MM Used. 2186976 |
| MM Free. 2000240 |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|User and Transaction |
| |
| Client.............. 100 |
| User................ "HCLBW" |
| Language key........ "E" |
| Transaction......... "RSA3 " |
| Transactions ID..... "01DAF3E0A91BF150A0D3E41F13C43C8F" |
| |
| Program............. "CL_EXIT_MASTER================CP" |
| Screen.............. "SAPMSSY0 1000" |
| Screen line......... 6 |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Information on where terminated |
| Termination occurred in the ABAP program "CL_EXIT_MASTER================CP" - |
| in "INSTANTIATE_IMP_CLASS". |
| The main program was "RSFHGEN2 ". |
| |
| In the source code you have the termination point in line 15 |
| of the (Include) program "CL_EXIT_MASTER================CM002". |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Source Code Extract |
----------------------------------------------------------------------------------------------------
|Line |SourceCde |
----------------------------------------------------------------------------------------------------
| 1|METHOD instantiate_imp_class . |
| 2| |
| 3| DATA: abs_type_classname TYPE string, |
| 4| imp_obj TYPE imp_obj_type. |
| 5| |
| 6|* Look for objects that have been created for this class |
| 7| READ TABLE imp_obj_tab INTO imp_obj |
| 8| WITH TABLE KEY imp_name = imp_name |
| 9| calling_obj = caller. |
| 10| IF sy-subrc = 0. |
| 11| instance = imp_obj-obj. |
| 12| ELSE. |
| 13| CONCATENATE '\CLASS=' imp_class INTO abs_type_classname. |
| 14|***** dynamic object creation ******************************* |
|>>>>>| CREATE OBJECT instance TYPE (abs_type_classname). |
| 16|****************************************************************** |
| 17| imp_obj-imp_name = imp_name. |
| 18| imp_obj-calling_obj = caller. |
| 19| imp_obj-obj = instance. |
| 20| INSERT imp_obj INTO TABLE imp_obj_tab. |
| 21| ENDIF. |
| 22|ENDMETHOD. |
----------------------------------------------------------------------------------------------------
|EXIT_OBJ_TAB |
| Table IT_98[4x588] |
| \CLASS=CL_EX_RSU5_SAPI_BADI\METHOD=IF_EX_RSU5_SAPI_BADI~DATA_TRANSFORM\DATA=EXIT_OBJ_TAB |
| Table reference: 34 |
| TABH+ 0(20) = 70E71B57FE070000000000000000000000000000 |
| TABH+ 20(20) = 2200000062000000040000004C020000FFFFFFFF |
| TABH+ 40(16) = 04930000B006000010000000C1308001 |
| store = 0x70E71B57FE070000 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 34 (0x22000000) |
| label = 98 (0x62000000) |
| fill = 4 (0x04000000) |
| leng = 588 (0x4C020000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000021 |
| occu = 16 (0x10000000) |
| 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 = 0x50942A57FE070000 |
| pgHook = 0x0000000000000000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 62 (0x3E000000) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 16 (0x10000000) |
| lineAlloc = 16 (0x10000000) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x01000000) |
| >>>>> 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 |
|WA_TAB-IMP_NAME |
| WRF_BWEXT_STRUKTART |
| 55454545555555454552 |
| 726F27584F3425B41240 |
| 00000000000000000000 |
| 00000000000000000000 |
|SXRT_FALSE |
| |
| 2 |
| 0 |
| 0 |
| 0 |
|%_ARCHIVE |
| |
| 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|WA_TAB-IMP_SWITCH |
| ABAP |
| 44452222222222 |
| 12100000000000 |
| 00000000000000 |
| 00000000000000 |
|SCREEN |
| %_17NNS0000630220_%_%_%_%_%_%_ |
| 2533445333333333352525252525252222222222222222222222222222222222222222222222222222222222222222|
| 5F17EE30000630220F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|WA_TAB-IMP_CLASS |
| CL_IM_WRF_BWEXT_STRUKTART |
| 445445554545455555554545522222 |
| 3CF9DF726F27584F3425B412400000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|WA_TAB-OBJ |
| {O:initial} |
| F0000000 |
| F0000000 |
|WA_TAB |
| WRF_BWEXT_STRUKTART IF_EX_RSU5_SAPI_BADI |
| 5545454555555545455244545555535545454444222222222222222222222222222222222222222222222222222222|
| 726F27584F3425B4124096F58F2355F3109F2149000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|ENTRY_MADE |
| X |
| 5 |
| 8 |
| 0 |
| 0 |
|SXRT_TRUE |
| X |
| 5 |
| 8 |
| 0 |
| 0 |
|%_VIASELSCR |
| # |
| 0 |
| 4 |
|CL_EXIT_MASTER=>SORTER_TABLE |
| Table[initial] |
|SORT_INFO |
| |
| 2222222222222222222222222222222222222222 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
----------------------------------------------------------------------------------------------------
|No. 6 Ty. METHOD |
|Name CL_EX_RSU5_SAPI_BADI=>IF_EX_RSU5_SAPI_BADI~DATA_TRANSFORM |
----------------------------------------------------------------------------------------------------
|I_DATASOURCE |
| 2LIS_11_VAITM |
| 344553355445422222222222222222 |
| 2C93F11F6194D00000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|I_UPDMODE |
| F |
| 42 |
| 60 |
| 00 |
| 00 |
|I_T_SELECT |
| Table IT_93[0x246] |
| \CLASS=CL_EX_RSU5_SAPI_BADI\METHOD=IF_EX_RSU5_SAPI_BADI~DATA_TRANSFORM\DATA=I_T_SELECT |
| Table reference: 50 |
| TABH+ 0(20) = 0000000000000000000000000000000000000000 |
| TABH+ 20(20) = 320000005D00000000000000F6000000FFFFFFFF |
| TABH+ 40(16) = 048F00007004000010000000C1248001 |
| store = 0x0000000000000000 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 50 (0x32000000) |
| label = 93 (0x5D000000) |
| fill = 0 (0x00000000) |
| leng = 246 (0xF6000000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000009 |
| occu = 16 (0x10000000) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 2 (cmpSingleMcmpR) |
| occu0 = 1 |
| groupCntl = 0 |
| rfc = 0 |
| unShareable = 0 |
| mightBeShared = 0 |
| sharedWithShmTab = 0 |
| isShmLockId = 0 |
| gcKind = 0 |
| isUsed = 1 |
| isCtfyAble = 1 |
| >>>>> Shareable Table Header Data <<<<< |
| tabi = Not allocated |
| pghook = Not allocated |
| idxPtr = Not allocated |
| shmTabhSet = Not allocated |
| id = Not allocated |
| refCount = Not allocated |
| tstRefCount = Not allocated |
| lineAdmin = Not allocated |
| lineAlloc = Not allocated |
| shmVersId = Not allocated |
| shmRefCount = Not allocated |
| shmIsReadOnly = Not allocated |
| >>>>> 1st level extension part <<<<< |
| regHook = 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 |
|I_T_FIELDS |
| Table IT_94[126x60] |
| \CLASS=CL_EX_RSU5_SAPI_BADI\METHOD=IF_EX_RSU5_SAPI_BADI~DATA_TRANSFORM\DATA=I_T_FIELDS |
| Table reference: 51 |
| TABH+ 0(20) = 50691757FE070000000000000000000000000000 |
| TABH+ 20(20) = 330000005E0000007E0000003C000000FFFFFFFF |
| TABH+ 40(16) = 048F0000000500007E000000C1248401 |
| store = 0x50691757FE070000 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 51 (0x33000000) |
| label = 94 (0x5E000000) |
| fill = 126 (0x7E000000) |
| leng = 60 (0x3C000000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000012 |
| occu = 126 (0x7E000000) |
| 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 = 0x507C1757FE070000 |
| pgHook = 0x0000000000000000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 11 (0x0B000000) |
| refCount = 1 (0x01000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 126 (0x7E000000) |
| lineAlloc = 126 (0x7E000000) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 2 (0x02000000) |
| >>>>> 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 |
|C_T_DATA |
| Table IT_86[99x1428] |
| \PROGRAM=GP0AB1I8G8ST6DA31XWZBM0JFU3\FORM=DATA_TRANSFER\DATA=L_T_EXT |
| Table reference: 46 |
| TABH+ 0(20) = 00B52857FE07000060B42857FE07000000000000 |
| TABH+ 20(20) = 2E000000560000006300000094050000FFFFFFFF |
| TABH+ 40(16) = 045A0000500C000008000000C1308001 |
| store = 0x00B52857FE070000 |
| ext1 = 0x60B42857FE070000 |
| shmId = 0 (0x00000000) |
| id = 46 (0x2E000000) |
| label = 86 (0x56000000) |
| fill = 99 (0x63000000) |
| leng = 1428 (0x94050000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000051 |
| occu = 8 (0x08000000) |
| 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 = 0xD0302957FE070000 |
| pgHook = 0x20B72857FE070000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 54 (0x36000000) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 128 (0x80000000) |
| lineAlloc = 104 (0x68000000) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x01000000) |
| >>>>> 1st level extension part <<<<< |
| regHook = 0x0000000000000000 |
| collHook = 0x0000000000000000 |
| ext2 = 0xA0062157FE070000 |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = 0x70BE2857FE070000 |
| delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000|
| pb_func = 0x0000000000000000 |
| pb_handle = 0x0000000000000000 |
|C_T_MESSAGES |
| Table[initial] |
|ME->INSTANCE_BADI_TABLE |
| Table[initial] |
|<EXIT_OBJ> |
| ??? |
| ?????? |
| ?????? |
|<%_L001> |
| ??? |
| ?????? |
| ?????? |
|%_ARCHIVE |
| |
| 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|SY-REPID |
| CL_EX_RSU5_SAPI_BADI==========CP |
| 4454555553554545444433333333334522222222 |
| 3CF58F2355F3109F2149DDDDDDDDDD3000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|<%_L001>-INTER_NAME |
| ??? |
| ?????? |
| ?????? |
|SYST-REPID |
| CL_EX_RSU5_SAPI_BADI==========CP |
| 4454555553554545444433333333334522222222 |
| 3CF58F2355F3109F2149DDDDDDDDDD3000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|<%_L001>-METHOD_NAME |
| ??? |
| ?????? |
| ?????? |
|EXIT_OBJ_TAB |
| Table IT_98[4x588] |
|SY-SUBRC |
| 0 |
| 0000 |
| 0000 |
|%_SPACE |
| |
| 2 |
| 0 |
| 0 |
| 0 |
|%_DUMMY$$ |
| |
| 2222 |
| 0000 |
| 0000 |
| 0000 |
|WA_FLT_CACHE-METHOD_NAME |
| |
| 222222222222222222222222222222 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|<%_L002> |
| ??? |
| ?????? |
| ?????? |
----------------------------------------------------------------------------------------------------
|No. 5 Ty. FORM |
|Name DATA_TRANSFORM |
----------------------------------------------------------------------------------------------------
|SY-SAPRL |
| 700 |
| 3332 |
| 7000 |
| 0000 |
| 0000 |
|L_SAPRL |
| 620 |
| 3332 |
| 6200 |
| 0000 |
| 0000 |
|%_SPACE |
| |
| 2 |
| 0 |
| 0 |
| 0 |
|SY-REPID |
| RSAYBADI |
| 5545444422222222222222222222222222222222 |
| 2319214900000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|L_R_SAPIBADI |
| {O:20*\CLASS=CL_EX_RSU5_SAPI_BADI} |
| E0001000 |
| B0004000 |
|%_DUMMY$$ |
| |
| 2222 |
| 0000 |
| 0000 |
| 0000 |
|P_T_DATA[] |
| Table IT_86[99x1428] |
|L_DATASOURCE |
| 2LIS_11_VAITM |
| 344553355445422222222222222222 |
| 2C93F11F6194D00000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|P_UPDMODE |
| F |
| 42 |
| 60 |
| 00 |
| 00 |
|P_T_SELECT[] |
| Table IT_16[0x246] |
| \PROGRAM=RSFHGEN2\DATA=I_T_SELECT |
| Table reference: 13 |
| TABH+ 0(20) = 0000000000000000000000000000000000000000 |
| TABH+ 20(20) = 0D0000001000000000000000F6000000FFFFFFFF |
| TABH+ 40(16) = 04000000C005000010000000C1248001 |
| store = 0x0000000000000000 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 13 (0x0D000000) |
| label = 16 (0x10000000) |
| fill = 0 (0x00000000) |
| leng = 246 (0xF6000000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000016 |
| occu = 16 (0x10000000) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 2 (cmpSingleMcmpR) |
| occu0 = 1 |
| groupCntl = 0 |
| rfc = 0 |
| unShareable = 0 |
| mightBeShared = 0 |
| sharedWithShmTab = 0 |
| isShmLockId = 0 |
| gcKind = 0 |
| isUsed = 1 |
| isCtfyAble = 1 |
| >>>>> Shareable Table Header Data <<<<< |
| tabi = Not allocated |
| pghook = Not allocated |
| idxPtr = Not allocated |
| shmTabhSet = Not allocated |
| id = Not allocated |
| refCount = Not allocated |
| tstRefCount = Not allocated |
| lineAdmin = Not allocated |
| lineAlloc = Not allocated |
| shmVersId = Not allocated |
| shmRefCount = Not allocated |
| shmIsReadOnly = Not allocated |
| >>>>> 1st level extension part <<<<< |
| regHook = 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 |
|P_T_FIELDS[] |
| Table IT_15[126x60] |
| \PROGRAM=RSFHGEN2\DATA=I_T_FIELD |
| Table reference: 12 |
| TABH+ 0(20) = 50691757FE070000000000000000000000000000 |
| TABH+ 20(20) = 0C0000000F0000007E0000003C000000FFFFFFFF |
| TABH+ 40(16) = 04000000300500007E000000C1248401 |
| store = 0x50691757FE070000 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 12 (0x0C000000) |
| label = 15 (0x0F000000) |
| fill = 126 (0x7E000000) |
| leng = 60 (0x3C000000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000013 |
| occu = 126 (0x7E000000) |
| 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 = 0x507C1757FE070000 |
| pgHook = 0x0000000000000000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 11 (0x0B000000) |
| refCount = 1 (0x01000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 126 (0x7E000000) |
| lineAlloc = 126 (0x7E000000) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 2 (0x02000000) |
| >>>>> 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 |
|L_T_MESSAGES |
| Table[initial] |
|SY-SUBRC |
| 0 |
| 0000 |
| 0000 |
|%_VIASELSCR |
| # |
| 0 |
| 4 |
|SY-MSGID |
| SF |
| 54222222222222222222 |
| 36000000000000000000 |
| 00000000000000000000 |
| 00000000000000000000 |
|SPACE |
| |
| 2 |
| 0 |
| 0 |
| 0 |
|SY-MSGNO |
| 616 |
| 333 |
| 616 |
| 000 |
| 000 |
|SY-MSGV1 |
| RSFHGEN2 |
| 55444443222222222222222222222222222222222222222222 |
| 236875E2000000000000000000000000000000000000000000 |
| 00000000000000000000000000000000000000000000000000 |
| 00000000000000000000000000000000000000000000000000 |
----------------------------------------------------------------------------------------------------
|No. 4 Ty. FORM |
|Name CALL_DATA_CUSTOMER_FUNCTION |
----------------------------------------------------------------------------------------------------
|L_DATASOURCE |
| 2LIS_11_VAITM |
| 344553355445422222222222222222 |
| 2C93F11F6194D00000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|L_12B_SOURCE |
| |
| 222222222222222222222222222222 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|L_SUBRC |
| 0 |
| 0000 |
| 0000 |
|G_BWBCRL |
| 20A |
| 3342 |
| 2010 |
| 0000 |
| 0000 |
|SRSC_BWBCRL_12B |
| 12B |
| 3342 |
| 1220 |
| 0000 |
| 0000 |
|%_SPACE |
| |
| 2 |
| 0 |
| 0 |
| 0 |
|SYST |
| ######################################L#######################################Â######### ####|
| 000000000000000000000000000000000000004000000000000000000000000000000000000010C000000050220000|
| 10000040000000000000101010001000000000C0000000000000000000000000000000000000B02000000080000200|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000|
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000D000000C|
|P_T_DATA[] |
| Table IT_86[99x1428] |
|P_T_SELECT[] |
| Table IT_16[0x246] |
|P_T_FIELDS[] |
| Table IT_15[126x60] |
|P_UPDMODE |
| F |
| 42 |
| 60 |
| 00 |
| 00 |
|P_SUBRC |
| 0 |
| 0000 |
| 0000 |
|SRSC_BWBCRL_20A |
| 20A |
| 3342 |
| 2010 |
| 0000 |
| 0000 |
|SRSC_C_PROGCLASS_MDATA_20A |
| RSAPTM2 |
| 55455432222222222222 |
| 23104D20000000000000 |
| 00000000000000000000 |
| 00000000000000000000 |
|<%_TABLE_ROOSGEN> |
| ??? |
| ?????? |
| ?????? |
|<%_TABLE_TFDIR> |
| ??? |
| ?????? |
| ?????? |
|SYST-REPID |
| SAPLRSAP |
| 5454554522222222222222222222222222222222 |
| 310C231000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|SY-REPID |
| SAPLRSAP |
| 5454554522222222222222222222222222222222 |
| 310C231000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|G_C_STANDARD_TRFC_ON |
| 1 |
| 3 |
| 1 |
| 0 |
| 0 |
----------------------------------------------------------------------------------------------------
|No. 3 Ty. FORM |
|Name PROCESS_DATA_PACKAGE |
----------------------------------------------------------------------------------------------------
|P_T_DATA[] |
| Table IT_86[99x1428] |
|SCREEN |
| %_17NNS0000630220_%_%_%_%_%_%_ |
| 2533445333333333352525252525252222222222222222222222222222222222222222222222222222222222222222|
| 5F17EE30000630220F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|SYST |
| ######################################L#######################################Â######### ####|
| 000000000000000000000000000000000000004000000000000000000000000000000000000010C000000050220000|
| 10000040000000000000101010001000000000C0000000000000000000000000000000000000B02000000080000200|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000|
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000D000000C|
|P_T_DATA |
| 000000 00000000 00000000 |
| 2222222222223333332222333333332222222333333332222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|P_T_SELECT[] |
| Table IT_16[0x246] |
|P_T_SELECT |
| |
| 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|P_T_FIELDS[] |
| Table IT_15[126x60] |
|P_T_FIELDS |
| |
| 222222222222222222222222222222 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|P_ISOURCE |
| 2LIS_11_VAITM |
| 344553355445422222222222222222 |
| 2C93F11F6194D00000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|P_S_REQUEST-UPDMODE |
| F |
| 42 |
| 60 |
| 00 |
| 00 |
|P_SUBRC |
| 0 |
| 0000 |
| 0000 |
|SYST-REPID |
| GP0AB1I8G8ST6DA31XWZBM0JFU3 |
| 4534434343553443355544344532222222222222 |
| 7001219878346413187A2D0A6530000000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|RODIOBJCMP |
| 0000 |
| 2222222222222222222222222222223333222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
----------------------------------------------------------------------------------------------------
|No. 2 Ty. FORM |
|Name DATA_TRANSFER |
----------------------------------------------------------------------------------------------------
|L_SUBRC |
| 0 |
| 0000 |
| 0000 |
|SY |
| ######################################L#######################################Â######### ####|
| 000000000000000000000000000000000000004000000000000000000000000000000000000010C000000050220000|
| 10000040000000000000101010001000000000C0000000000000000000000000000000000000B02000000080000200|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000|
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000D000000C|
|SY-REPID |
| GP0AB1I8G8ST6DA31XWZBM0JFU3 |
| 4534434343553443355544344532222222222222 |
| 7001219878346413187A2D0A6530000000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|L_T_EXT |
| Table IT_86[99x1428] |
|SYST |
| ######################################L#######################################Â######### ####|
| 000000000000000000000000000000000000004000000000000000000000000000000000000010C000000050220000|
| 10000040000000000000101010001000000000C0000000000000000000000000000000000000B02000000080000200|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000|
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000D000000C|
|P_T_SELECT[] |
| Table IT_16[0x246] |
|P_T_SELECT |
| |
| 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|P_T_FIELDS[] |
| Table IT_15[126x60] |
|P_T_FIELDS |
| |
| 222222222222222222222222222222 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|P_S_REQUEST |
| TEST D2LIS_11_VAITM 00000000000000 |
| 5455222222222222222222222222224344553355445422222222222222222333333333333332222222222222222222|
| 45340000000000000000000000000042C93F11F6194D00000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|P_S_IDOC_PARAMETERS |
| 00010000 |
| 33333333 |
| 00010000 |
| 00000000 |
| 00000000 |
|L_DATAPAKID |
| 000000 |
| 333333 |
| 000000 |
| 000000 |
| 000000 |
|P_SUBRC |
| 0 |
| 0000 |
| 0000 |
|SPACE |
| |
| 2 |
| 0 |
| 0 |
| 0 |
|P_S_REQUEST-DATAPAKID |
| 000010 |
| 333333 |
| 000010 |
| 000000 |
| 000000 |
|%_DUMMY$$ |
| |
| 2222 |
| 0000 |
| 0000 |
| 0000 |
----------------------------------------------------------------------------------------------------
|No. 1 Ty. EVENT |
|Name START-OF-SELECTION |
----------------------------------------------------------------------------------------------------
|| 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 = 0x80FA2057FE070000 |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = 0x60BA1D57FE070000 |
| delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000|
| pb_func = 0x0000000000000000 |
| pb_handle = 0x0000000000000000 |
|I_T_FIELD |
| Table IT_15[126x60] |
|L_T_FIELD_PASS |
| Table IT_40[126x60] |
| \PROGRAM=RSFHGEN2\DATA=L_T_FIELD_PASS |
| Table reference: 23 |
| TABH+ 0(20) = C0F92057FE07000030F91B57FE07000000000000 |
| TABH+ 20(20) = 17000000280000007E0000003C000000FFFFFFFF |
| TABH+ 40(16) = 04480000300E000010000000C1248001 |
| store = 0xC0F92057FE070000 |
| ext1 = 0x30F91B57FE070000 |
| shmId = 0 (0x00000000) |
| id = 23 (0x17000000) |
| label = 40 (0x28000000) |
| fill = 126 (0x7E000000) |
| leng = 60 (0x3C000000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000061 |
| occu = 16 (0x10000000) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 2 (cmpSingleMcmpR) |
| occu0 = 1 |
| groupCntl = 0 |
| rfc = 0 |
| unShareable = 0 |
| mightBeShared = 0 |
| sharedWithShmTab = 0 |
| isShmLockId = 0 |
| gcKind = 0 |
| isUsed = 1 |
| isCtfyAble = 1 |
| >>>>> Shareable Table Header Data <<<<< |
| tabi = 0x60571757FE070000 |
| pgHook = 0x303C1757FE070000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 30 (0x1E000000) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 304 (0x30010000) |
| lineAlloc = 304 (0x30010000) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x01000000) |
| >>>>> 1st level extension part <<<<< |
| regHook = 0x0000000000000000 |
| collHook = 0x0000000000000000 |
| ext2 = 0x605C1457FE070000 |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = 0xD03B1757FE070000 |
| delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000|
| pb_func = 0x0000000000000000 |
| pb_handle = 0x0000000000000000 |
|P_S_REQ |
| TEST D2LIS_11_VAITM 00000000000000 |
| 5455222222222222222222222222224344553355445422222222222222222333333333333332222222222222222222|
| 45340000000000000000000000000042C93F11F6194D00000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|L_SUBRC |
| 0 |
| 0000 |
| 0000 |
|SBIWI_C_REQOBJTYPE-MSD |
| M |
| 4 |
| D |
| 0 |
| 0 |
|SY-XFORM |
| CONVERSION_EXIT |
| 444545544454545222222222222222 |
| 3FE65239FEF5894000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Internal notes |
| The termination was triggered in function "ab_genprog" |
| of the SAP kernel, in line 1554 of the module |
| "//bas/700_REL/src/krn/runt/abgen.c#11". |
| The internal operation just processed is "ABOO". |
| Internal mode was started at 20111011125411. |
| Program name.........: "CL_IM_WRF_BWEXT_STRUKTART=====CP ". |
| Error message........: "The data object "<2LIS_02_SCL_REC>" does not have a |
| component called "". |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Active Calls in SAP Kernel |
----------------------------------------------------------------------------------------------------
|Lines of C Stack in Kernel (Structure Differs on Each Platform) |
----------------------------------------------------------------------------------------------------
|SAP (R) - R/3(TM) Callstack, Version 1.0 |
|Copyright (C) SAP AG. All rights reserved. |
|Callstack without Exception: |
|App : disp+work.EXE (pid=3156) |
|When : 10/11/2011 12:54:12.0 |
|Threads : 2 |
|Computer Name : KML-QTY |
|User Name : SAPServiceQT1 |
|Number of Processors: 8 |
|Processor Type: EM64T Family 6 Model 44 Stepping 2 |
|Windows Version : 5.2 Current Build: 3790 |
|State Dump for Thread Id c58 |
|FramePtr ReturnAd Param#1 Function Name |
|0000000007fc89d0 0000000077d704ff 0000000000313fd0 ntdll!ZwWaitForSingleObject
***********************************************************************************************
*************************************************************************************
Date and Time 11.10.2011 12:54:12
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Short text |
| Syntax error in program "CL_IM_WRF_BWEXT_STRUKTART=====CP ". |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|What happened? |
| Error in the ABAP Application Program |
| |
| The current ABAP program "CL_EXIT_MASTER================CP" had to be |
| terminated because it has |
| come across a statement that unfortunately cannot be executed. |
| |
| The following syntax error occurred in program |
| "CL_IM_WRF_BWEXT_STRUKTART=====CP " in include |
| "CL_IM_WRF_BWEXT_STRUKTART=====CM007 " in |
| line 125: |
| "The data object "<2LIS_02_SCL_REC>" does not have a component called "" |
| "ATTYP"." |
| " " |
| " " |
| |
| The include has been created and last changed by: |
| Created by: "SAP " |
| Last changed by: "SAP " |
| Error in the ABAP Application Program |
| |
| The current ABAP program "CL_EXIT_MASTER================CP" had to be |
| terminated because it has |
| come across a statement that unfortunately cannot be executed. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|What can you do? |
| Please eliminate the error by performing a syntax check |
| (or an extended program check) on the program "CL_IM_WRF_BWEXT_STRUKTART=====CP |
| ". |
| You can also perform the syntax check from the ABAP Editor. |
| |
| If the problem persists, proceed as follows: |
| 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 |
| The following syntax error was found in the program |
| CL_IM_WRF_BWEXT_STRUKTART=====CP : |
| "The data object "<2LIS_02_SCL_REC>" does not have a component called "" |
| "ATTYP"." |
| " " |
| " " |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|How to correct the error |
| Probably the only way to eliminate the error is to correct the program. |
| - |
| 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... "kml-qty" |
| Network address...... "192.168.10.92" |
| Operating system..... "Windows NT" |
| Release.............. "5.2" |
| Hardware type........ "8x AMD64 Level" |
| Character length.... 16 Bits |
| Pointer length....... 64 Bits |
| Work process number.. 1 |
| Shortdump setting.... "full" |
| |
| Database server... "KML-QTY" |
| Database type..... "ORACLE" |
| Database name..... "QT1" |
| Database user ID.. "SAPPRD" |
| |
| Terminal................. "DAMA-PC" |
| |
| Char.set.... "C" |
| |
| SAP kernel....... 700 |
| created (date)... "Nov 18 2008 22:53:36" |
| create on........ "NT 5.2 3790 Service Pack 1 x86 MS VC++ 14.00" |
| Database version. "OCI_10201_SHARE (10.2.0.2.0) " |
| |
| Patch level. 185 |
| Patch text.. " " |
| |
| Database............. "ORACLE 9.2.0.*.*, ORACLE 10.1.0.*.*, ORACLE 10.2.0.*.*" |
| SAP database version. 700 |
| Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows |
| NT 6.0" |
| |
| Memory consumption |
| Roll.... 16192 |
| EM...... 16759360 |
| Heap.... 0 |
| Page.... 90112 |
| MM Used. 2186976 |
| MM Free. 2000240 |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|User and Transaction |
| |
| Client.............. 100 |
| User................ "HCLBW" |
| Language key........ "E" |
| Transaction......... "RSA3 " |
| Transactions ID..... "01DAF3E0A91BF150A0D3E41F13C43C8F" |
| |
| Program............. "CL_EXIT_MASTER================CP" |
| Screen.............. "SAPMSSY0 1000" |
| Screen line......... 6 |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Information on where terminated |
| Termination occurred in the ABAP program "CL_EXIT_MASTER================CP" - |
| in "INSTANTIATE_IMP_CLASS". |
| The main program was "RSFHGEN2 ". |
| |
| In the source code you have the termination point in line 15 |
| of the (Include) program "CL_EXIT_MASTER================CM002". |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Source Code Extract |
----------------------------------------------------------------------------------------------------
|Line |SourceCde |
----------------------------------------------------------------------------------------------------
| 1|METHOD instantiate_imp_class . |
| 2| |
| 3| DATA: abs_type_classname TYPE string, |
| 4| imp_obj TYPE imp_obj_type. |
| 5| |
| 6|* Look for objects that have been created for this class |
| 7| READ TABLE imp_obj_tab INTO imp_obj |
| 8| WITH TABLE KEY imp_name = imp_name |
| 9| calling_obj = caller. |
| 10| IF sy-subrc = 0. |
| 11| instance = imp_obj-obj. |
| 12| ELSE. |
| 13| CONCATENATE '\CLASS=' imp_class INTO abs_type_classname. |
| 14|***** dynamic object creation ******************************* |
|>>>>>| CREATE OBJECT instance TYPE (abs_type_classname). |
| 16|****************************************************************** |
| 17| imp_obj-imp_name = imp_name. |
| 18| imp_obj-calling_obj = caller. |
| 19| imp_obj-obj = instance. |
| 20| INSERT imp_obj INTO TABLE imp_obj_tab. |
| 21| ENDIF. |
| 22|ENDMETHOD. |
----------------------------------------------------------------------------------------------------
|EXIT_OBJ_TAB |
| Table IT_98[4x588] |
| \CLASS=CL_EX_RSU5_SAPI_BADI\METHOD=IF_EX_RSU5_SAPI_BADI~DATA_TRANSFORM\DATA=EXIT_OBJ_TAB |
| Table reference: 34 |
| TABH+ 0(20) = 70E71B57FE070000000000000000000000000000 |
| TABH+ 20(20) = 2200000062000000040000004C020000FFFFFFFF |
| TABH+ 40(16) = 04930000B006000010000000C1308001 |
| store = 0x70E71B57FE070000 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 34 (0x22000000) |
| label = 98 (0x62000000) |
| fill = 4 (0x04000000) |
| leng = 588 (0x4C020000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000021 |
| occu = 16 (0x10000000) |
| 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 = 0x50942A57FE070000 |
| pgHook = 0x0000000000000000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 62 (0x3E000000) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 16 (0x10000000) |
| lineAlloc = 16 (0x10000000) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x01000000) |
| >>>>> 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 |
|WA_TAB-IMP_NAME |
| WRF_BWEXT_STRUKTART |
| 55454545555555454552 |
| 726F27584F3425B41240 |
| 00000000000000000000 |
| 00000000000000000000 |
|SXRT_FALSE |
| |
| 2 |
| 0 |
| 0 |
| 0 |
|%_ARCHIVE |
| |
| 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|WA_TAB-IMP_SWITCH |
| ABAP |
| 44452222222222 |
| 12100000000000 |
| 00000000000000 |
| 00000000000000 |
|SCREEN |
| %_17NNS0000630220_%_%_%_%_%_%_ |
| 2533445333333333352525252525252222222222222222222222222222222222222222222222222222222222222222|
| 5F17EE30000630220F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|WA_TAB-IMP_CLASS |
| CL_IM_WRF_BWEXT_STRUKTART |
| 445445554545455555554545522222 |
| 3CF9DF726F27584F3425B412400000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|WA_TAB-OBJ |
| {O:initial} |
| F0000000 |
| F0000000 |
|WA_TAB |
| WRF_BWEXT_STRUKTART IF_EX_RSU5_SAPI_BADI |
| 5545454555555545455244545555535545454444222222222222222222222222222222222222222222222222222222|
| 726F27584F3425B4124096F58F2355F3109F2149000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|ENTRY_MADE |
| X |
| 5 |
| 8 |
| 0 |
| 0 |
|SXRT_TRUE |
| X |
| 5 |
| 8 |
| 0 |
| 0 |
|%_VIASELSCR |
| # |
| 0 |
| 4 |
|CL_EXIT_MASTER=>SORTER_TABLE |
| Table[initial] |
|SORT_INFO |
| |
| 2222222222222222222222222222222222222222 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
----------------------------------------------------------------------------------------------------
|No. 6 Ty. METHOD |
|Name CL_EX_RSU5_SAPI_BADI=>IF_EX_RSU5_SAPI_BADI~DATA_TRANSFORM |
----------------------------------------------------------------------------------------------------
|I_DATASOURCE |
| 2LIS_11_VAITM |
| 344553355445422222222222222222 |
| 2C93F11F6194D00000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|I_UPDMODE |
| F |
| 42 |
| 60 |
| 00 |
| 00 |
|I_T_SELECT |
| Table IT_93[0x246] |
| \CLASS=CL_EX_RSU5_SAPI_BADI\METHOD=IF_EX_RSU5_SAPI_BADI~DATA_TRANSFORM\DATA=I_T_SELECT |
| Table reference: 50 |
| TABH+ 0(20) = 0000000000000000000000000000000000000000 |
| TABH+ 20(20) = 320000005D00000000000000F6000000FFFFFFFF |
| TABH+ 40(16) = 048F00007004000010000000C1248001 |
| store = 0x0000000000000000 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 50 (0x32000000) |
| label = 93 (0x5D000000) |
| fill = 0 (0x00000000) |
| leng = 246 (0xF6000000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000009 |
| occu = 16 (0x10000000) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 2 (cmpSingleMcmpR) |
| occu0 = 1 |
| groupCntl = 0 |
| rfc = 0 |
| unShareable = 0 |
| mightBeShared = 0 |
| sharedWithShmTab = 0 |
| isShmLockId = 0 |
| gcKind = 0 |
| isUsed = 1 |
| isCtfyAble = 1 |
| >>>>> Shareable Table Header Data <<<<< |
| tabi = Not allocated |
| pghook = Not allocated |
| idxPtr = Not allocated |
| shmTabhSet = Not allocated |
| id = Not allocated |
| refCount = Not allocated |
| tstRefCount = Not allocated |
| lineAdmin = Not allocated |
| lineAlloc = Not allocated |
| shmVersId = Not allocated |
| shmRefCount = Not allocated |
| shmIsReadOnly = Not allocated |
| >>>>> 1st level extension part <<<<< |
| regHook = 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 |
|I_T_FIELDS |
| Table IT_94[126x60] |
| \CLASS=CL_EX_RSU5_SAPI_BADI\METHOD=IF_EX_RSU5_SAPI_BADI~DATA_TRANSFORM\DATA=I_T_FIELDS |
| Table reference: 51 |
| TABH+ 0(20) = 50691757FE070000000000000000000000000000 |
| TABH+ 20(20) = 330000005E0000007E0000003C000000FFFFFFFF |
| TABH+ 40(16) = 048F0000000500007E000000C1248401 |
| store = 0x50691757FE070000 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 51 (0x33000000) |
| label = 94 (0x5E000000) |
| fill = 126 (0x7E000000) |
| leng = 60 (0x3C000000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000012 |
| occu = 126 (0x7E000000) |
| 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 = 0x507C1757FE070000 |
| pgHook = 0x0000000000000000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 11 (0x0B000000) |
| refCount = 1 (0x01000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 126 (0x7E000000) |
| lineAlloc = 126 (0x7E000000) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 2 (0x02000000) |
| >>>>> 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 |
|C_T_DATA |
| Table IT_86[99x1428] |
| \PROGRAM=GP0AB1I8G8ST6DA31XWZBM0JFU3\FORM=DATA_TRANSFER\DATA=L_T_EXT |
| Table reference: 46 |
| TABH+ 0(20) = 00B52857FE07000060B42857FE07000000000000 |
| TABH+ 20(20) = 2E000000560000006300000094050000FFFFFFFF |
| TABH+ 40(16) = 045A0000500C000008000000C1308001 |
| store = 0x00B52857FE070000 |
| ext1 = 0x60B42857FE070000 |
| shmId = 0 (0x00000000) |
| id = 46 (0x2E000000) |
| label = 86 (0x56000000) |
| fill = 99 (0x63000000) |
| leng = 1428 (0x94050000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000051 |
| occu = 8 (0x08000000) |
| 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 = 0xD0302957FE070000 |
| pgHook = 0x20B72857FE070000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 54 (0x36000000) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 128 (0x80000000) |
| lineAlloc = 104 (0x68000000) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x01000000) |
| >>>>> 1st level extension part <<<<< |
| regHook = 0x0000000000000000 |
| collHook = 0x0000000000000000 |
| ext2 = 0xA0062157FE070000 |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = 0x70BE2857FE070000 |
| delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000|
| pb_func = 0x0000000000000000 |
| pb_handle = 0x0000000000000000 |
|C_T_MESSAGES |
| Table[initial] |
|ME->INSTANCE_BADI_TABLE |
| Table[initial] |
|<EXIT_OBJ> |
| ??? |
| ?????? |
| ?????? |
|<%_L001> |
| ??? |
| ?????? |
| ?????? |
|%_ARCHIVE |
| |
| 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|SY-REPID |
| CL_EX_RSU5_SAPI_BADI==========CP |
| 4454555553554545444433333333334522222222 |
| 3CF58F2355F3109F2149DDDDDDDDDD3000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|<%_L001>-INTER_NAME |
| ??? |
| ?????? |
| ?????? |
|SYST-REPID |
| CL_EX_RSU5_SAPI_BADI==========CP |
| 4454555553554545444433333333334522222222 |
| 3CF58F2355F3109F2149DDDDDDDDDD3000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|<%_L001>-METHOD_NAME |
| ??? |
| ?????? |
| ?????? |
|EXIT_OBJ_TAB |
| Table IT_98[4x588] |
|SY-SUBRC |
| 0 |
| 0000 |
| 0000 |
|%_SPACE |
| |
| 2 |
| 0 |
| 0 |
| 0 |
|%_DUMMY$$ |
| |
| 2222 |
| 0000 |
| 0000 |
| 0000 |
|WA_FLT_CACHE-METHOD_NAME |
| |
| 222222222222222222222222222222 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|<%_L002> |
| ??? |
| ?????? |
| ?????? |
----------------------------------------------------------------------------------------------------
|No. 5 Ty. FORM |
|Name DATA_TRANSFORM |
----------------------------------------------------------------------------------------------------
|SY-SAPRL |
| 700 |
| 3332 |
| 7000 |
| 0000 |
| 0000 |
|L_SAPRL |
| 620 |
| 3332 |
| 6200 |
| 0000 |
| 0000 |
|%_SPACE |
| |
| 2 |
| 0 |
| 0 |
| 0 |
|SY-REPID |
| RSAYBADI |
| 5545444422222222222222222222222222222222 |
| 2319214900000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|L_R_SAPIBADI |
| {O:20*\CLASS=CL_EX_RSU5_SAPI_BADI} |
| E0001000 |
| B0004000 |
|%_DUMMY$$ |
| |
| 2222 |
| 0000 |
| 0000 |
| 0000 |
|P_T_DATA[] |
| Table IT_86[99x1428] |
|L_DATASOURCE |
| 2LIS_11_VAITM |
| 344553355445422222222222222222 |
| 2C93F11F6194D00000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|P_UPDMODE |
| F |
| 42 |
| 60 |
| 00 |
| 00 |
|P_T_SELECT[] |
| Table IT_16[0x246] |
| \PROGRAM=RSFHGEN2\DATA=I_T_SELECT |
| Table reference: 13 |
| TABH+ 0(20) = 0000000000000000000000000000000000000000 |
| TABH+ 20(20) = 0D0000001000000000000000F6000000FFFFFFFF |
| TABH+ 40(16) = 04000000C005000010000000C1248001 |
| store = 0x0000000000000000 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 13 (0x0D000000) |
| label = 16 (0x10000000) |
| fill = 0 (0x00000000) |
| leng = 246 (0xF6000000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000016 |
| occu = 16 (0x10000000) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 2 (cmpSingleMcmpR) |
| occu0 = 1 |
| groupCntl = 0 |
| rfc = 0 |
| unShareable = 0 |
| mightBeShared = 0 |
| sharedWithShmTab = 0 |
| isShmLockId = 0 |
| gcKind = 0 |
| isUsed = 1 |
| isCtfyAble = 1 |
| >>>>> Shareable Table Header Data <<<<< |
| tabi = Not allocated |
| pghook = Not allocated |
| idxPtr = Not allocated |
| shmTabhSet = Not allocated |
| id = Not allocated |
| refCount = Not allocated |
| tstRefCount = Not allocated |
| lineAdmin = Not allocated |
| lineAlloc = Not allocated |
| shmVersId = Not allocated |
| shmRefCount = Not allocated |
| shmIsReadOnly = Not allocated |
| >>>>> 1st level extension part <<<<< |
| regHook = 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 |
|P_T_FIELDS[] |
| Table IT_15[126x60] |
| \PROGRAM=RSFHGEN2\DATA=I_T_FIELD |
| Table reference: 12 |
| TABH+ 0(20) = 50691757FE070000000000000000000000000000 |
| TABH+ 20(20) = 0C0000000F0000007E0000003C000000FFFFFFFF |
| TABH+ 40(16) = 04000000300500007E000000C1248401 |
| store = 0x50691757FE070000 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 12 (0x0C000000) |
| label = 15 (0x0F000000) |
| fill = 126 (0x7E000000) |
| leng = 60 (0x3C000000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000013 |
| occu = 126 (0x7E000000) |
| 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 = 0x507C1757FE070000 |
| pgHook = 0x0000000000000000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 11 (0x0B000000) |
| refCount = 1 (0x01000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 126 (0x7E000000) |
| lineAlloc = 126 (0x7E000000) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 2 (0x02000000) |
| >>>>> 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 |
|L_T_MESSAGES |
| Table[initial] |
|SY-SUBRC |
| 0 |
| 0000 |
| 0000 |
|%_VIASELSCR |
| # |
| 0 |
| 4 |
|SY-MSGID |
| SF |
| 54222222222222222222 |
| 36000000000000000000 |
| 00000000000000000000 |
| 00000000000000000000 |
|SPACE |
| |
| 2 |
| 0 |
| 0 |
| 0 |
|SY-MSGNO |
| 616 |
| 333 |
| 616 |
| 000 |
| 000 |
|SY-MSGV1 |
| RSFHGEN2 |
| 55444443222222222222222222222222222222222222222222 |
| 236875E2000000000000000000000000000000000000000000 |
| 00000000000000000000000000000000000000000000000000 |
| 00000000000000000000000000000000000000000000000000 |
----------------------------------------------------------------------------------------------------
|No. 4 Ty. FORM |
|Name CALL_DATA_CUSTOMER_FUNCTION |
----------------------------------------------------------------------------------------------------
|L_DATASOURCE |
| 2LIS_11_VAITM |
| 344553355445422222222222222222 |
| 2C93F11F6194D00000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|L_12B_SOURCE |
| |
| 222222222222222222222222222222 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|L_SUBRC |
| 0 |
| 0000 |
| 0000 |
|G_BWBCRL |
| 20A |
| 3342 |
| 2010 |
| 0000 |
| 0000 |
|SRSC_BWBCRL_12B |
| 12B |
| 3342 |
| 1220 |
| 0000 |
| 0000 |
|%_SPACE |
| |
| 2 |
| 0 |
| 0 |
| 0 |
|SYST |
| ######################################L#######################################Â######### ####|
| 000000000000000000000000000000000000004000000000000000000000000000000000000010C000000050220000|
| 10000040000000000000101010001000000000C0000000000000000000000000000000000000B02000000080000200|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000|
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000D000000C|
|P_T_DATA[] |
| Table IT_86[99x1428] |
|P_T_SELECT[] |
| Table IT_16[0x246] |
|P_T_FIELDS[] |
| Table IT_15[126x60] |
|P_UPDMODE |
| F |
| 42 |
| 60 |
| 00 |
| 00 |
|P_SUBRC |
| 0 |
| 0000 |
| 0000 |
|SRSC_BWBCRL_20A |
| 20A |
| 3342 |
| 2010 |
| 0000 |
| 0000 |
|SRSC_C_PROGCLASS_MDATA_20A |
| RSAPTM2 |
| 55455432222222222222 |
| 23104D20000000000000 |
| 00000000000000000000 |
| 00000000000000000000 |
|<%_TABLE_ROOSGEN> |
| ??? |
| ?????? |
| ?????? |
|<%_TABLE_TFDIR> |
| ??? |
| ?????? |
| ?????? |
|SYST-REPID |
| SAPLRSAP |
| 5454554522222222222222222222222222222222 |
| 310C231000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|SY-REPID |
| SAPLRSAP |
| 5454554522222222222222222222222222222222 |
| 310C231000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|G_C_STANDARD_TRFC_ON |
| 1 |
| 3 |
| 1 |
| 0 |
| 0 |
----------------------------------------------------------------------------------------------------
|No. 3 Ty. FORM |
|Name PROCESS_DATA_PACKAGE |
----------------------------------------------------------------------------------------------------
|P_T_DATA[] |
| Table IT_86[99x1428] |
|SCREEN |
| %_17NNS0000630220_%_%_%_%_%_%_ |
| 2533445333333333352525252525252222222222222222222222222222222222222222222222222222222222222222|
| 5F17EE30000630220F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|SYST |
| ######################################L#######################################Â######### ####|
| 000000000000000000000000000000000000004000000000000000000000000000000000000010C000000050220000|
| 10000040000000000000101010001000000000C0000000000000000000000000000000000000B02000000080000200|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000|
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000D000000C|
|P_T_DATA |
| 000000 00000000 00000000 |
| 2222222222223333332222333333332222222333333332222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|P_T_SELECT[] |
| Table IT_16[0x246] |
|P_T_SELECT |
| |
| 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|P_T_FIELDS[] |
| Table IT_15[126x60] |
|P_T_FIELDS |
| |
| 222222222222222222222222222222 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|P_ISOURCE |
| 2LIS_11_VAITM |
| 344553355445422222222222222222 |
| 2C93F11F6194D00000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|P_S_REQUEST-UPDMODE |
| F |
| 42 |
| 60 |
| 00 |
| 00 |
|P_SUBRC |
| 0 |
| 0000 |
| 0000 |
|SYST-REPID |
| GP0AB1I8G8ST6DA31XWZBM0JFU3 |
| 4534434343553443355544344532222222222222 |
| 7001219878346413187A2D0A6530000000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|RODIOBJCMP |
| 0000 |
| 2222222222222222222222222222223333222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
----------------------------------------------------------------------------------------------------
|No. 2 Ty. FORM |
|Name DATA_TRANSFER |
----------------------------------------------------------------------------------------------------
|L_SUBRC |
| 0 |
| 0000 |
| 0000 |
|SY |
| ######################################L#######################################Â######### ####|
| 000000000000000000000000000000000000004000000000000000000000000000000000000010C000000050220000|
| 10000040000000000000101010001000000000C0000000000000000000000000000000000000B02000000080000200|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000|
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000D000000C|
|SY-REPID |
| GP0AB1I8G8ST6DA31XWZBM0JFU3 |
| 4534434343553443355544344532222222222222 |
| 7001219878346413187A2D0A6530000000000000 |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
|L_T_EXT |
| Table IT_86[99x1428] |
|SYST |
| ######################################L#######################################Â######### ####|
| 000000000000000000000000000000000000004000000000000000000000000000000000000010C000000050220000|
| 10000040000000000000101010001000000000C0000000000000000000000000000000000000B02000000080000200|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000|
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000D000000C|
|P_T_SELECT[] |
| Table IT_16[0x246] |
|P_T_SELECT |
| |
| 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|P_T_FIELDS[] |
| Table IT_15[126x60] |
|P_T_FIELDS |
| |
| 222222222222222222222222222222 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
|P_S_REQUEST |
| TEST D2LIS_11_VAITM 00000000000000 |
| 5455222222222222222222222222224344553355445422222222222222222333333333333332222222222222222222|
| 45340000000000000000000000000042C93F11F6194D00000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|P_S_IDOC_PARAMETERS |
| 00010000 |
| 33333333 |
| 00010000 |
| 00000000 |
| 00000000 |
|L_DATAPAKID |
| 000000 |
| 333333 |
| 000000 |
| 000000 |
| 000000 |
|P_SUBRC |
| 0 |
| 0000 |
| 0000 |
|SPACE |
| |
| 2 |
| 0 |
| 0 |
| 0 |
|P_S_REQUEST-DATAPAKID |
| 000010 |
| 333333 |
| 000010 |
| 000000 |
| 000000 |
|%_DUMMY$$ |
| |
| 2222 |
| 0000 |
| 0000 |
| 0000 |
----------------------------------------------------------------------------------------------------
|No. 1 Ty. EVENT |
|Name START-OF-SELECTION |
----------------------------------------------------------------------------------------------------
|| 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 = 0x80FA2057FE070000 |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = 0x60BA1D57FE070000 |
| delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000|
| pb_func = 0x0000000000000000 |
| pb_handle = 0x0000000000000000 |
|I_T_FIELD |
| Table IT_15[126x60] |
|L_T_FIELD_PASS |
| Table IT_40[126x60] |
| \PROGRAM=RSFHGEN2\DATA=L_T_FIELD_PASS |
| Table reference: 23 |
| TABH+ 0(20) = C0F92057FE07000030F91B57FE07000000000000 |
| TABH+ 20(20) = 17000000280000007E0000003C000000FFFFFFFF |
| TABH+ 40(16) = 04480000300E000010000000C1248001 |
| store = 0xC0F92057FE070000 |
| ext1 = 0x30F91B57FE070000 |
| shmId = 0 (0x00000000) |
| id = 23 (0x17000000) |
| label = 40 (0x28000000) |
| fill = 126 (0x7E000000) |
| leng = 60 (0x3C000000) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000061 |
| occu = 16 (0x10000000) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 2 (cmpSingleMcmpR) |
| occu0 = 1 |
| groupCntl = 0 |
| rfc = 0 |
| unShareable = 0 |
| mightBeShared = 0 |
| sharedWithShmTab = 0 |
| isShmLockId = 0 |
| gcKind = 0 |
| isUsed = 1 |
| isCtfyAble = 1 |
| >>>>> Shareable Table Header Data <<<<< |
| tabi = 0x60571757FE070000 |
| pgHook = 0x303C1757FE070000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 30 (0x1E000000) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 304 (0x30010000) |
| lineAlloc = 304 (0x30010000) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x01000000) |
| >>>>> 1st level extension part <<<<< |
| regHook = 0x0000000000000000 |
| collHook = 0x0000000000000000 |
| ext2 = 0x605C1457FE070000 |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = 0xD03B1757FE070000 |
| delta_head = 0000000000000000000000000000000000000000000000000000000000000000000000000000000|
| pb_func = 0x0000000000000000 |
| pb_handle = 0x0000000000000000 |
|P_S_REQ |
| TEST D2LIS_11_VAITM 00000000000000 |
| 5455222222222222222222222222224344553355445422222222222222222333333333333332222222222222222222|
| 45340000000000000000000000000042C93F11F6194D00000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|L_SUBRC |
| 0 |
| 0000 |
| 0000 |
|SBIWI_C_REQOBJTYPE-MSD |
| M |
| 4 |
| D |
| 0 |
| 0 |
|SY-XFORM |
| CONVERSION_EXIT |
| 444545544454545222222222222222 |
| 3FE65239FEF5894000000000000000 |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Internal notes |
| The termination was triggered in function "ab_genprog" |
| of the SAP kernel, in line 1554 of the module |
| "//bas/700_REL/src/krn/runt/abgen.c#11". |
| The internal operation just processed is "ABOO". |
| Internal mode was started at 20111011125411. |
| Program name.........: "CL_IM_WRF_BWEXT_STRUKTART=====CP ". |
| Error message........: "The data object "<2LIS_02_SCL_REC>" does not have a |
| component called "". |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Active Calls in SAP Kernel |
----------------------------------------------------------------------------------------------------
|Lines of C Stack in Kernel (Structure Differs on Each Platform) |
----------------------------------------------------------------------------------------------------
|SAP (R) - R/3(TM) Callstack, Version 1.0 |
|Copyright (C) SAP AG. All rights reserved. |
|Callstack without Exception: |
|App : disp+work.EXE (pid=3156) |
|When : 10/11/2011 12:54:12.0 |
|Threads : 2 |
|Computer Name : KML-QTY |
|User Name : SAPServiceQT1 |
|Number of Processors: 8 |
|Processor Type: EM64T Family 6 Model 44 Stepping 2 |
|Windows Version : 5.2 Current Build: 3790 |
|State Dump for Thread Id c58 |
|FramePtr ReturnAd Param#1 Function Name |
|0000000007fc89d0 0000000077d704ff 0000000000313fd0 ntdll!ZwWaitForSingleObject
***********************************************************************************************
*************************************************************************************
Solution:
ReplyDelete1. start the BAdI builder (transaction SE18)
2. select the option "BAdI Name" and enter 'RSU5_SAPI_BADI'
3. press the Display button
The implementation WRF_BWEXT_STRUKTART should be deactiveated. This
implementation is only required for the Fashion component and should
probably not be relevant for you. If it is nevertheless relevant for
your environment then further settings must be carried out in your
system. If you want to deactivate the above implementation, do the
following:
4. go to Implemetation -> Overview in the top menu
5. In the overview popup, double click on WRF_BWEXT_STRUKTART
6. choose the button 'Display <-> Change'
7. choose to DEACTIVATE the item In the top menu under Implementation
-> Deactivate
8. save your changes
After that, the problem should be solved.