Hi,
We are getting the dump “DBIF_RSQL_INVALID_RSQL” In production system for transaction code “FAGLL03”.We try to see the G/L account from
30000000 to 49999999.Please find the attachment below. Can you give thereason for this dump?
Regards,
Runtime Errors DBIF_RSQL_INVALID_RSQL
Exception CX_SY_OPEN_SQL_DB
Date and Time 11.03.2009 12:05:54
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Short text |
| Error in module RSQL of the database interface. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|What happened? |
| Error in the ABAP Application Program |
| |
| The current ABAP program "SAPLFAGL_ITEMS_SELECT" had to be terminated because |
| it has |
| come across a statement that unfortunately cannot be executed. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|What can you do? |
| Note down which actions and inputs caused the error. |
| |
| |
| To process the problem further, contact you SAP system |
| administrator. |
| |
| Using Transaction ST22 for ABAP Dump Analysis, you can look |
| at and manage termination messages, and you can also |
| keep them for a long time. |
| Note which actions and input led to the error. |
| |
| For further help in handling the problem, contact your SAP administrator |
| . |
| |
| You can use the ABAP dump analysis transaction ST22 to view and manage |
| termination messages, in particular for long term reference. |
| |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Error analysis |
| An exception occurred that is explained in detail below. |
| The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught |
| in |
| procedure "FAGL_GET_ITEMS_BSIS" "(FUNCTION)", nor was it propagated by a |
| RAISING clause. |
| Since the caller of the procedure could not have anticipated that the |
| exception would occur, the current program is terminated. |
| The reason for the exception is: |
| The SQL statement generated from the SAP Open SQL statement violates a |
| restriction imposed by the underlying database system of the ABAP |
| system. |
| |
| Possible error causes: |
| o The maximum size of an SQL statement was exceeded. |
| o The statement contains too many input variables. |
| o The input data requires more space than is available. |
| o ... |
| |
| You can generally find details in the system log (SM21) and in the |
| developer trace of the relevant work process (ST11). |
| In the case of an error, current restrictions are frequently displayed |
| in the developer trace. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|How to correct the error |
| The SAP Open SQL statement concerned must be divided into several |
| smaller units. |
| If the problem occurred due to the use of an excessively large table |
| in an IN itab construct, you can use FOR ALL ENTRIES instead. |
| When you use this addition, the statement is split into smaller units |
| according to the restrictions of the database system used. |
| |
| |
| If the error occures in a non-modified SAP program, you may be able to |
| find an interim solution in an SAP Note. |
| If you have access to SAP Notes, carry out a search with the following |
| keywords: |
| |
| "DBIF_RSQL_INVALID_RSQL" "CX_SY_OPEN_SQL_DB" |
| "SAPLFAGL_ITEMS_SELECT" or "LFAGL_ITEMS_SELECTU01" |
| "FAGL_GET_ITEMS_BSIS" |
| |
| |
| |
| The exception must either be prevented, caught within proedure |
| "FAGL_GET_ITEMS_BSIS" "(FUNCTION)", or its possible occurrence must be declared |
| in the |
| RAISING clause of the procedure. |
| To prevent the exception, note the following: |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|System environment |
| SAP-Release 700 |
| |
| Application server... "" |
| Network address...... "" |
| Operating system..... "SunOS" |
| Release.............. "5.10" |
| Hardware type........ "sun4v" |
| Character length.... 16 Bits |
| Pointer length....... 64 Bits |
| Work process number.. 1 |
| Shortdump setting.... "full" |
| |
| Database server... "" |
| Database type..... "DB6" |
| Database name..... "IRP" |
| Database user ID.. "" |
| |
| Char.set.... "C" |
| |
| SAP kernel....... 700 |
| created (date)... "Feb 3 2008 21:08:24" |
| create on........ "SunOS 5.9 Generic_117171-13 sun4u" |
| Database version. "DB6_81 " |
| |
| Patch level. 146 |
| Patch text.. " " |
| |
| Database............. "DB6 08.02.*, DB6 09.*" |
| SAP database version. 700 |
| Operating system..... "SunOS 5.9, SunOS 5.10" |
| |
| Memory consumption |
| Roll.... 16192 |
| EM...... 67037568 |
| Heap.... 0 |
| Page.... 6356992 |
| MM Used. 53727896 |
| MM Free. 4924776 |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|User and Transaction |
| |
| Client.............. 400 |
| User................ raja" |
| Language key........ "E" |
| Transaction......... "FAGLL03 " |
| Transactions ID..... "49B6C1FF9CAF36C2E1000000C0A80420" |
| |
| Program............. "SAPLFAGL_ITEMS_SELECT" |
| Screen.............. "SAPMSSY0 1000" |
| Screen line......... 6 |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Information on where terminated |
| Termination occurred in the ABAP program "SAPLFAGL_ITEMS_SELECT" - in |
| "FAGL_GET_ITEMS_BSIS". |
| The main program was "FAGL_ACCOUNT_ITEMS_GL ". |
| |
| In the source code you have the termination point in line 330 |
| of the (Include) program "LFAGL_ITEMS_SELECTU01". |
| The termination is caused because exception "CX_SY_OPEN_SQL_DB" occurred in |
| procedure "FAGL_GET_ITEMS_BSIS" "(FUNCTION)", but it was neither handled |
| locally nor declared |
| in the RAISING clause of its signature. |
| |
| The procedure is in program "SAPLFAGL_ITEMS_SELECT "; its source code begins in |
| line |
| 1 of the (Include program "LFAGL_ITEMS_SELECTU01 ". |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Source Code Extract |
----------------------------------------------------------------------------------------------------
|Line |SourceCde |
----------------------------------------------------------------------------------------------------
| 300| if not i_max_lines is initial. |
| 301| ld_MAXIMUM_LINES = i_max_lines. |
| 302| else. |
| 303| ld_MAXIMUM_LINES = 99999999. |
| 304| endif. |
| 305| ENDIF. |
| 306| |
| 307| if ld_MAXIMUM_LINES GT 0. |
| 308| |
| 309| if gv_relevant_ledger is initial. |
| 310| refresh lT_FAGLPOSE. |
| 311| clear lT_FAGLPOSE. |
| 312| |
| 313| FETCH NEXT CURSOR I_CURSOR |
| 314| APPENDING CORRESPONDING FIELDS OF TABLE lT_FAGLPOSE |
| 315| PACKAGE SIZE ld_MAXIMUM_LINES. |
| 316| DELTA_DBCNT = SY-DBCNT - OLD_DBCNT. |
| 317| OLD_DBCNT = SY-DBCNT. |
| 318| |
| 319| DESCRIBE TABLE lT_FAGLPOSE LINES LD_FAGLPOSE_LINES. |
| 320| if LD_FAGLPOSE_LINES gt 0. |
| 321| perform complete_data changing |
| 322| lT_FAGLPOSE[]. |
| 323| append lines of lT_FAGLPOSE to C_T_FAGLPOSE. |
| 324| endif. |
| 325| else. |
| 326| ASSIGN: lr_tab_data->* TO , |
| 327| lr_struc_data->* TO . |
| 328| refresh . |
| 329| |
|>>>>>| FETCH NEXT CURSOR I_CURSOR |
| 331| APPENDING CORRESPONDING FIELDS OF TABLE |
| 332| PACKAGE SIZE ld_MAXIMUM_LINES. |
| 333| DELTA_DBCNT = SY-DBCNT - OLD_DBCNT. |
| 334| OLD_DBCNT = SY-DBCNT. |
| 335| |
| 336| DESCRIBE TABLE LINES LD_FAGLPOSE_LINES. |
| 337| if LD_FAGLPOSE_LINES gt 0. |
| 338| if i_read_bseg is initial. |
| 339| perform convert_data using |
| 340| |
| 341| lr_struc_flexa |
| 342| lr_struc_bseg |
| 343| lr_struc_table1 |
| 344| lr_struc_data |
| 345| lr_tab_data |
| 346| changing |
| 347| lT_FAGLPOSE[]. |
| 348| refresh . "987950 |
| 349| if not LT_SELtable3[] is initial. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Contents of system fields |
----------------------------------------------------------------------------------------------------
|Name |Val. |
----------------------------------------------------------------------------------------------------
|SY-SUBRC|0 |
|SY-INDEX|1 |
|SY-TABIX|2 |
|SY-DBCNT|0 |
|SY-FDPOS|99 |
|SY-LSIND|0 |
|SY-PAGNO|0 |
|SY-LINNO|1 |
|SY-COLNO|1 |
|SY-PFKEY| |
|SY-UCOMM| |
|SY-TITLE|G/L Account Line Item Display |
|SY-MSGTY|E |
|SY-MSGID|FAGL_DB |
|SY-MSGNO|004 |
|SY-MSGV1|USNAM |
|SY-MSGV2| |
|SY-MSGV3| |
|SY-MSGV4| |
|SY-MODNO|2 |
|SY-DATUM|20090311 |
|SY-UZEIT|120551 |
|SY-XPROG|SAPDBSDF |
|SY-XFORM|%_ROOT |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Active Calls/Events |
----------------------------------------------------------------------------------------------------
|No. Ty. Program Include Line |
| Name |
----------------------------------------------------------------------------------------------------
| 8 FUNCTION SAPLFAGL_ITEMS_SELECT LFAGL_ITEMS_SELECTU01 330 |
| FAGL_GET_ITEMS_BSIS |
| 7 FORM FAGL_ACCOUNT_ITEMS_GL FAGL_ACCOUNT_ITEMS_GL 3824 |
| SELECT_ITEMS |
| 6 FORM FAGL_ACCOUNT_ITEMS_GL FAGL_ACCOUNT_ITEMS_GL 829 |
| %_GET_SKB1 |
| 5 FORM SAPDBSDF SAPDBSDF 1494 |
| PUT_SKB1 |
| 4 FORM SAPDBSDF SAPDBSDF 1437 |
| PROCESS_SKA1 |
| 3 FORM SAPDBSDF SAPDBSDF 1302 |
| PUT_SKA1 |
| 2 FORM SAPDBSDF SAPDBSDF 4557 |
| %_ROOT |
| 1 EVENT FAGL_ACCOUNT_ITEMS_GL 20 |
| SYSTEM-EXIT |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Chosen variables |
----------------------------------------------------------------------------------------------------
|Name |
| Val. |
----------------------------------------------------------------------------------------------------
|No. 8 Ty. FUNCTION |
|Name FAGL_GET_ITEMS_BSIS |
----------------------------------------------------------------------------------------------------
|I_AGGREGATION |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|I_BLOCKSIZE |
| 50000 |
| 00C5 |
| 0030 |
|I_BLOCK_DATA |
| X |
| 0 |
| 0 |
| 5 |
| 8 |
|I_FIELDLIST |
| Table[initial] |
|I_MAX_LINES |
| 0 |
| 0000 |
| 0000 |
|I_READ_BSEG |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|I_SELECTION |
| Table IT_1334[9x72] |
| \PROGRAM=FAGL_ACCOUNT_ITEMS_GL\DATA=GT_SELECTION_FULL |
| Table reference: 272 |
| TABH+ 0(20) = FFFFFFFE97BB9890000000000000000000000000 |
| TABH+ 20(20) = 00000110000005360000000900000048FFFFFFFF |
| TABH+ 40(16) = 0400000000002C000009249001800000 |
| store = 0xFFFFFFFE97BB9890 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 272 (0x00000110) |
| label = 1334 (0x00000536) |
| fill = 9 (0x00000009) |
| leng = 72 (0x00000048) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000220 |
| occu = 9 (0x00000009) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 2 (cmpSingleMcmpR) |
| occu0 = 0 |
| groupCntl = 0 |
| rfc = 0 |
| unShareable = 0 |
| mightBeShared = 0 |
| sharedWithShmTab = 0 |
| isShmLockId = 0 |
| gcKind = 0 |
| isUsed = 1 |
| isCtfyAble = 1 |
| >>>>> Shareable Table Header Data <<<<< |
| tabi = 0xFFFFFFFE97BB95F0 |
| pgHook = 0x0000000000000000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 1090 (0x00000442) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 9 (0x00000009) |
| lineAlloc = 9 (0x00000009) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x00000001) |
| >>>>> 1st level extension part <<<<< |
| regHook = Not allocated |
| collHook = Not allocated |
| ext2 = Not allocated |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = Not allocated |
| delta_head = Not allocated |
| pb_func = Not allocated |
| pb_handle = Not allocated |
|FLAG_CURSOR_OPEN |
| X |
| 0 |
| 0 |
| 5 |
| 8 |
|C_T_FAGLPOSE |
| Table[initial] |
|GC_BSIS |
| BSIS |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
| 454522222222222222222222222222 |
| 239300000000000000000000000000 |
|LT_FAGLPOSE |
| Table[initial] |
|SCREEN |
| %_17SXS0000021570_%_%_%_%_%_%_ |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2533555333333333352525252525252222222222222222222222222222222222222222222222222222222222222222|
| 5F173830000021570F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000|
|DELTA_DBCNT |
| 0 |
| 0000 |
| 0000 |
|LD_FAGLPOSE_LINES |
| 0 |
| 0000 |
| 0000 |
|SPACE |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|GD_TPC_CHECK |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|%_DUMMY$$ |
| |
| 0000 |
| 0000 |
| 2222 |
| 0000 |
|LR_STRUC_TABLE1 |
| ######## |
| C0000000 |
| F0000000 |
|LR_TAB_DATA |
| ######## |
| D0000001 |
| 1000000E |
| |
| Table IT_1550[0x1212] |
| {A:30*\TYPE=%_T00003S00000255O0000013332} |
| Table reference: 307 |
| TABH+ 0(20) = 0000000000000000000000000000000000000000 |
| TABH+ 20(20) = 000001330000060E00000000000004BCFFFFFFFF |
| TABH+ 40(16) = 030000FF00003414000824C001800000 |
| store = 0x0000000000000000 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 307 (0x00000133) |
| label = 1550 (0x0000060E) |
| fill = 0 (0x00000000) |
| leng = 1212 (0x000004BC) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = ROL.255.13332 |
| occu = 8 (0x00000008) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 8 (cmpManyEq) |
| occu0 = 0 |
| 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 |
|LR_STRUC_DATA |
| ######## |
| C0000000 |
| B0000004 |
| |
| 0000 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2223333222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|SY-REPID |
| SAPLFAGL_ITEMS_SELECT |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 5454444454544555444452222222222222222222 |
| 310C617CF945D3F35C5340000000000000000000 |
|I_CURSOR |
| 596 |
| 0005 |
| 0024 |
|DELTA_DBCNT |
| 0 |
| 0000 |
| 0000 |
----------------------------------------------------------------------------------------------------
|No. 7 Ty. FORM |
|Name SELECT_ITEMS |
----------------------------------------------------------------------------------------------------
|SYST-REPID |
| FAGL_ACCOUNT_ITEMS_GL |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 4444544445455454455442222222222222222222 |
| 617CF133F5E4F945D3F7C0000000000000000000 |
|SKB1-XKRES |
| X |
| 0 |
| 0 |
| 5 |
| 8 |
|GT_SEARCHPATTERN |
| ####### |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FF |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FF |
| 22222222222222222222222222222222222222222222222222222222222222222222222222222222200000FF |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FF |
|SY-REPID |
| FAGL_ACCOUNT_ITEMS_GL |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 4444544445455454455442222222222222222222 |
| 617CF133F5E4F945D3F7C0000000000000000000 |
|GT_FIELDCAT |
| ####LONGNUM |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000444445422222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000CFE7E5D00000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|GD_CURSOR_OPEN |
| X |
| 0 |
| 0 |
| 5 |
| 8 |
|X_STOP |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|GT_DYN_TRANGE |
| Table[initial] |
|IT_SEL |
| Table[initial] |
|GD_MAX_PACK_LINES |
| 50000 |
| 00C5 |
| 0030 |
|<%_TABLE_USR05> |
| ??? |
| ?????? |
| ?????? |
|GUSL_C_TRUE |
| X |
| 0 |
| 0 |
| 5 |
| 8 |
|GD_MAX_LINES |
| 0 |
| 0000 |
| 0000 |
|SY-UNAME |
| SRIVATSA |
| 000000000000 |
| 000000000000 |
| 554545542222 |
| 329614310000 |
|LD_READ_BSEG |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|GT_SELECTION_FULL |
| Table IT_1334[9x72] |
|GD_XARCH |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|WA_SEL |
| 00000000 00000000 00000000 000##########|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2222222222222222222222222222222222222233333333222222222222333333332223333333322223330000000000|
| 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000C000C00|
|GS_VARIANT |
| |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|X_MERK |
| |
| 0 |
| 0 |
| 2 |
| 0 |
----------------------------------------------------------------------------------------------------
|No. 6 Ty. FORM |
|Name %_GET_SKB1 |
----------------------------------------------------------------------------------------------------
|GT_SELECTION_PART |
| Table IT_1267[5x72] |
| \PROGRAM=FAGL_ACCOUNT_ITEMS_GL\DATA=GT_SELECTION_PART |
| Table reference: 232 |
| TABH+ 0(20) = FFFFFFFE97B00F08000000000000000000000000 |
| TABH+ 20(20) = 000000E8000004F30000000500000048FFFFFFFF |
| TABH+ 40(16) = 0400000000002C000005249001800000 |
| store = 0xFFFFFFFE97B00F08 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 232 (0x000000E8) |
| label = 1267 (0x000004F3) |
| fill = 5 (0x00000005) |
| leng = 72 (0x00000048) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000220 |
| occu = 5 (0x00000005) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 2 (cmpSingleMcmpR) |
| occu0 = 0 |
| groupCntl = 0 |
| rfc = 0 |
| unShareable = 0 |
| mightBeShared = 0 |
| sharedWithShmTab = 0 |
| isShmLockId = 0 |
| gcKind = 0 |
| isUsed = 1 |
| isCtfyAble = 1 |
| >>>>> Shareable Table Header Data <<<<< |
| tabi = 0xFFFFFFFE97B00D88 |
| pgHook = 0x0000000000000000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 1048 (0x00000418) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 5 (0x00000005) |
| lineAlloc = 5 (0x00000005) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x00000001) |
| >>>>> 1st level extension part <<<<< |
| regHook = Not allocated |
| collHook = Not allocated |
| ext2 = Not allocated |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = Not allocated |
| delta_head = Not allocated |
| pb_func = Not allocated |
| pb_handle = Not allocated |
|SKB1-BEGRU |
| |
| 0000 |
| 0000 |
| 2222 |
| 0000 |
|RSJOBINFO |
| 00000000000000 ## |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
| 2222222222222222222222222222222233333333333333222222222222222222222222222222222200 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
|BSIS |
| 00000000 0000 0000000000000000000 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2222222222222222233333333222222222222222222222222222233332222222222333333333333333333322222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|SY-SUBRC |
| 0 |
| 0000 |
| 0000 |
|IT_TP_AUTH[] |
| Table IT_1275[0x48] |
| \PROGRAM=FAGL_ACCOUNT_ITEMS_GL\DATA=IT_TP_AUTH[] |
| Table reference: 243 |
| TABH+ 0(20) = 0000000000000000000000000000000000000000 |
| TABH+ 20(20) = 000000F3000004FB0000000000000030FFFFFFFF |
| TABH+ 40(16) = 04000000000012B00001249001800000 |
| store = 0x0000000000000000 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 243 (0x000000F3) |
| label = 1275 (0x000004FB) |
| fill = 0 (0x00000000) |
| leng = 48 (0x00000030) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000085 |
| occu = 1 (0x00000001) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 2 (cmpSingleMcmpR) |
| occu0 = 0 |
| 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 |
|%_SPACE |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|SKB1-SAKNR |
| 0010000001 |
| 0000000000 |
| 0000000000 |
| 3333333333 |
| 0010000001 |
|SKB1-BUKRS |
| 1000 |
| 0000 |
| 0000 |
| 3333 |
| 1000 |
|GB_XPLACC |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|C_REPID_AP |
| FAGL_ACCOUNT_ITEMS_AP |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 4444544445455454455452222222222222222222 |
| 617CF133F5E4F945D3F100000000000000000000 |
|GT_SPEC_FIELDS |
| Table[initial] |
|%_SELECTED |
| |
| 0 |
| 0 |
| 2 |
| 0 |
----------------------------------------------------------------------------------------------------
|No. 5 Ty. FORM |
|Name PUT_SKB1 |
----------------------------------------------------------------------------------------------------
|BSIS_WHERE |
| Table[initial] |
|SY-SUBRC |
| 0 |
| 0000 |
| 0000 |
|SY-REPID |
| SAPDBSDF |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 5454454422222222222222222222222222222222 |
| 3104234600000000000000000000000000000000 |
|DD03L |
| 00000000 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2222222222222222222222222222222222222222222222222222222222222333333332222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|GLT0 |
| 0000 000######################################################|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2222222222222333322222222222222222222333000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000C000C000C000C000C000C000C000C000C000C000C000C000C00|
|BKPF+756(602) |
| # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #0#0#0# # # # # # # # # # # # # # # |
| 0202020202020202020202020202020202020202020202020202020202030303020202020202020202020202020202|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|%_SD_BUKRS_%_APP_% |
| |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|SKC1C-RLDNR |
| |
| 00 |
| 00 |
| 22 |
| 00 |
|SYST-REPID |
| SAPDBSDF |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 5454454422222222222222222222222222222222 |
| 3104234600000000000000000000000000000000 |
|%_FREECALL |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|RSJOBINFO |
| 00000000000000 ## |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
| 2222222222222222222222222222222233333333333333222222222222222222222222222222222200 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
|%_CURRTAB |
| SKB1 |
| 00000000000000 |
| 00000000000000 |
| 54432222222222 |
| 3B210000000000 |
|SY-CPROG |
| FAGL_ACCOUNT_ITEMS_GL |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 4444544445455454455442222222222222222222 |
| 617CF133F5E4F945D3F7C0000000000000000000 |
|%_%_SELECTED |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|SKB1 |
| 40010000010000001 0000000020080529ANKAN 000S004 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 3333333333333333322222233333333333333334444422222222222222222223335333222222222222222222222222|
| 4001000001000000100000000000000200805291EB1E00000000000000000000003004000000000000000000000000|
|SPACE |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|%_SPACE |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|%_SD_KTOPL_%_APP_% |
| |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
----------------------------------------------------------------------------------------------------
|No. 4 Ty. FORM |
|Name PROCESS_SKA1 |
----------------------------------------------------------------------------------------------------
|SKA1 |
| 400NILG0010000001 00000000 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 3334444333333333322222222222222222222233333333222222222222222222222222222222222222222222222222|
| 400E9C7001000000100000000000000000000000000000000000000000000000000000000000000000000000000000|
|%B024025_BLOCK_1000 |
| |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
| 22222222222222222222222222222222222222222222222222222222222222222222222222222222222 |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
|SD_GSBER[] |
| Table[initial] |
|%_REJECT |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|%_SSCR |
| %_SC0100##R ## |
| 0000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 255433330A520022222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 5F33010010200000000000000000000000000000000000000000000000000000000000000000000000000000000000|
----------------------------------------------------------------------------------------------------
|No. 3 Ty. FORM |
|Name PUT_SKA1 |
----------------------------------------------------------------------------------------------------
|XX_RLDNR |
| IEQ00 |
| 0000000 |
| 0000000 |
| 4453322 |
| 9510000 |
|LT_SKA1[] |
| Table IT_1308[1000x250] |
| \PROGRAM=SAPDBSDF\FORM=PUT_SKA1\DATA=LT_SKA1[] |
| Table reference: 248 |
| TABH+ 0(20) = FFFFFFFE9B9F7798000000000000000000000000 |
| TABH+ 20(20) = 000000F80000051C000003E8000000FA00000018 |
| TABH+ 40(16) = 040000080000416000102C9401800000 |
| store = 0xFFFFFFFE9B9F7798 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 248 (0x000000F8) |
| label = 1308 (0x0000051C) |
| fill = 1000 (0x000003E8) |
| leng = 250 (0x000000FA) |
| loop = 24 (0x00000018) |
| xtyp = TYPE#000334 |
| occu = 16 (0x00000010) |
| access = 1 (ItAccessStandard) |
| idxKind = 1 (ItIndexLinear) |
| 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 = 0xFFFFFFFE97835938 |
| pgHook = 0xFFFFFFFE979812D0 |
| idxPtr = 0xFFFFFFFE9B834590 |
| shmTabhSet = 0x0000000000000000 |
| id = 1072 (0x00000430) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 1008 (0x000003F0) |
| lineAlloc = 1008 (0x000003F0) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x00000001) |
| >>>>> 1st level extension part <<<<< |
| regHook = Not allocated |
| collHook = Not allocated |
| ext2 = Not allocated |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = Not allocated |
| delta_head = Not allocated |
| pb_func = Not allocated |
| pb_handle = Not allocated |
|GT_SAVE_KEYBKPF |
| Table[initial] |
|GD_SAVE_KEYBKPF |
| 0000 |
| 000000000000000000 |
| 000000000000000000 |
| 222222222222223333 |
| 000000000000000000 |
|GT_SAVE_BKPF |
| Table[initial] |
|LT_SKA1 |
| 400NILG0010305001 00000000 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 3334444333333333322222222222222222222233333333222222222222222222222222222222222222222222222222|
| 400E9C7001030500100000000000000000000000000000000000000000000000000000000000000000000000000000|
|%_SD_BUDAT_%_APP_% |
| |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|XSKA1[] |
| Table IT_1309[25x250] |
| \PROGRAM=SAPDBSDF\DATA=XSKA1[] |
| Table reference: 220 |
| TABH+ 0(20) = FFFFFFFE978368F0000000000000000000000000 |
| TABH+ 20(20) = 000000DC0000051D00000019000000FA000000B0 |
| TABH+ 40(16) = 04000008000026000040249001800000 |
| store = 0xFFFFFFFE978368F0 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 220 (0x000000DC) |
| label = 1309 (0x0000051D) |
| fill = 25 (0x00000019) |
| leng = 250 (0x000000FA) |
| loop = 176 (0x000000B0) |
| xtyp = TYPE#000188 |
| occu = 64 (0x00000040) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 2 (cmpSingleMcmpR) |
| occu0 = 0 |
| groupCntl = 0 |
| rfc = 0 |
| unShareable = 0 |
| mightBeShared = 0 |
| sharedWithShmTab = 0 |
| isShmLockId = 0 |
| gcKind = 0 |
| isUsed = 1 |
| isCtfyAble = 1 |
| >>>>> Shareable Table Header Data <<<<< |
| tabi = 0xFFFFFFFEB2351498 |
| pgHook = 0x0000000000000000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 1073 (0x00000431) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 64 (0x00000040) |
| lineAlloc = 64 (0x00000040) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x00000001) |
| >>>>> 1st level extension part <<<<< |
| regHook = Not allocated |
| collHook = Not allocated |
| ext2 = Not allocated |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = Not allocated |
| delta_head = Not allocated |
| pb_func = Not allocated |
| pb_handle = Not allocated |
|XSKA1 |
| 400NILG0010000001 00000000 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 3334444333333333322222222222222222222233333333222222222222222222222222222222222222222222222222|
| 400E9C7001000000100000000000000000000000000000000000000000000000000000000000000000000000000000|
|K_SAKNR[] |
| Table IT_1310[25x46] |
| \PROGRAM=SAPDBSDF\DATA=K_SAKNR[] |
| Table reference: 249 |
| TABH+ 0(20) = FFFFFFFE97AF6EC8000000000000000000000000 |
| TABH+ 20(20) = 000000F90000051E000000190000002EFFFFFFFF |
| TABH+ 40(16) = 0400000800001F40000A249001800000 |
| store = 0xFFFFFFFE97AF6EC8 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 249 (0x000000F9) |
| label = 1310 (0x0000051E) |
| fill = 25 (0x00000019) |
| leng = 46 (0x0000002E) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000152 |
| occu = 10 (0x0000000A) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 2 (cmpSingleMcmpR) |
| occu0 = 0 |
| groupCntl = 0 |
| rfc = 0 |
| unShareable = 0 |
| mightBeShared = 0 |
| sharedWithShmTab = 0 |
| isShmLockId = 0 |
| gcKind = 0 |
| isUsed = 1 |
| isCtfyAble = 1 |
| >>>>> Shareable Table Header Data <<<<< |
| tabi = 0xFFFFFFFE97981378 |
| pgHook = 0xFFFFFFFE97AF6F20 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 1074 (0x00000432) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 30 (0x0000001E) |
| lineAlloc = 30 (0x0000001E) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x00000001) |
| >>>>> 1st level extension part <<<<< |
| regHook = Not allocated |
| collHook = Not allocated |
| ext2 = Not allocated |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = Not allocated |
| delta_head = Not allocated |
| pb_func = Not allocated |
| pb_handle = Not allocated |
|K_SAKNR |
| IEQ0010305001 |
| 00000000000000000000000 |
| 00000000000000000000000 |
| 44533333333332222222222 |
| 95100103050010000000000 |
|%_DUMMY$$ |
| |
| 0000 |
| 0000 |
| 2222 |
| 0000 |
|COUNT |
| 0 |
| 0000 |
| 0000 |
|MAX_COUNT |
| 25 |
| 0001 |
| 0009 |
|SDF_SP |
| |
| 000000000000000000 |
| 000000000000000000 |
| 222222222222222222 |
| 000000000000000000 |
|SY-LDBPG |
| SAPDBSDF |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 5454454422222222222222222222222222222222 |
| 3104234600000000000000000000000000000000 |
|LT_SKA1_KEY_HELP[] |
| Table IT_1306[1000x34] |
| \PROGRAM=SAPDBSDF\FORM=PUT_SKA1\DATA=LT_SKA1_KEY_HELP[] |
| Table reference: 217 |
| TABH+ 0(20) = FFFFFFFE97AF6E30000000000000000000000000 |
| TABH+ 20(20) = 000000D90000051A000003E800000022FFFFFFFF |
| TABH+ 40(16) = 040000080000422000E8249421800000 |
| store = 0xFFFFFFFE97AF6E30 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 217 (0x000000D9) |
| label = 1306 (0x0000051A) |
| fill = 1000 (0x000003E8) |
| leng = 34 (0x00000022) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000338 |
| occu = 232 (0x000000E8) |
| 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 = 0xFFFFFFFE97851AB0 |
| pgHook = 0xFFFFFFFE97AF6E88 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 1070 (0x0000042E) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 1000 (0x000003E8) |
| lineAlloc = 1000 (0x000003E8) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x00000001) |
| >>>>> 1st level extension part <<<<< |
| regHook = Not allocated |
| collHook = Not allocated |
| ext2 = Not allocated |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = Not allocated |
| delta_head = Not allocated |
| pb_func = Not allocated |
| pb_handle = Not allocated |
|LT_SKA1_KEY_HELP |
| |
| 00000000000000000 |
| 00000000000000000 |
| 22222222222222222 |
| 00000000000000000 |
|%_EXCDT_%_APP_% |
| Translation date |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
| 576676676662667622222222222222 |
| 421E3C149FE0414500000000000000 |
----------------------------------------------------------------------------------------------------
|No. 2 Ty. FORM |
|Name %_ROOT |
----------------------------------------------------------------------------------------------------
|BSIS |
| 00000000 0000 0000000000000000000 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2222222222222222233333333222222222222222222222222222233332222222222333333333333333333322222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|ADMI_FILES |
| 000000 00000000000000######## |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 3333332222222222222222222233333333333333000000002222222222222222222222222222222222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|BSISEXT |
| 00000000 0000 0000000000000000000 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2222222222222222233333333222222222222222222222222222233332222222222333333333333333333322222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|BKPF |
| 0000 00000000000000000000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2222222222222222233332233333333333333333333333333333333333333333333333333333333222222222222222|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|BSEG |
| 0000000 0000000000000000 ############## #####|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000C000000C00000000000C0|
| 2222222222222222233333332333333333333333322222222222222222222222222222000000000000002222200000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000C000000C0000000000|
|GSEG |
| 0000000 0000000000000000 ############## #####|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000C000000C00000000000C0|
| 2222222222222222233333332333333333333333322222222222222222222222222222000000000000002222200000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000C000000C0000000000|
|B0SG-XSTAS |
| |
| 0 |
| 0 |
| 2 |
| 0 |
|SD_INDEX |
| ####### |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FF |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FF |
| 22222222222222222222222222222222222222222222222222222222222222222222222222222222200000FF |
| 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000FF |
|SCREEN |
| %_17SXS0000021570_%_%_%_%_%_%_ |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 2533555333333333352525252525252222222222222222222222222222222222222222222222222222222222222222|
| 5F173830000021570F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000|
|SDF_SP[] |
| Table[initial] |
|SP_FIELDS[] |
| Table IT_215[3x266] |
| \PROGRAM=SAPDBSDF\DATA=SP_FIELDS[] |
| Table reference: 93 |
| TABH+ 0(20) = FFFFFFFE97AF10B0000000000000000000000000 |
| TABH+ 20(20) = 0000005D000000D7000000030000010AFFFFFFFF |
| TABH+ 40(16) = 0400000800000C80000A249001800000 |
| store = 0xFFFFFFFE97AF10B0 |
| ext1 = 0x0000000000000000 |
| shmId = 0 (0x00000000) |
| id = 93 (0x0000005D) |
| label = 215 (0x000000D7) |
| fill = 3 (0x00000003) |
| leng = 266 (0x0000010A) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000052 |
| occu = 10 (0x0000000A) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 2 (cmpSingleMcmpR) |
| occu0 = 0 |
| groupCntl = 0 |
| rfc = 0 |
| unShareable = 0 |
| mightBeShared = 0 |
| sharedWithShmTab = 0 |
| isShmLockId = 0 |
| gcKind = 0 |
| isUsed = 1 |
| isCtfyAble = 1 |
| >>>>> Shareable Table Header Data <<<<< |
| tabi = 0xFFFFFFFE97AFFC98 |
| pgHook = 0x0000000000000000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 135 (0x00000087) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 10 (0x0000000A) |
| lineAlloc = 10 (0x0000000A) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x00000001) |
| >>>>> 1st level extension part <<<<< |
| regHook = Not allocated |
| collHook = Not allocated |
| ext2 = Not allocated |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = Not allocated |
| delta_head = Not allocated |
| pb_func = Not allocated |
| pb_handle = Not allocated |
|SP_FIELDS |
| SKB1-BUKRS |
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
| 5443245455222222222222222222222222222222222222222222222222222222222222222222222222222222222222|
| 3B21D25B23000000000000000000000000000000000000000000000000000000000000000000000000000000000000|
|SP_TABLES[] |
| Table IT_214[2x62] |
| \PROGRAM=SAPDBSDF\DATA=SP_TABLES[] |
| Table reference: 74 |
| TABH+ 0(20) = FFFFFFFE97AF1008FFFFFFFE97AF0FD000000000 |
| TABH+ 20(20) = 0000004A000000D6000000020000003EFFFFFFFF |
| TABH+ 40(16) = 0400000800000D10000A249001800000 |
| store = 0xFFFFFFFE97AF1008 |
| ext1 = 0xFFFFFFFE97AF0FD0 |
| shmId = 0 (0x00000000) |
| id = 74 (0x0000004A) |
| label = 214 (0x000000D6) |
| fill = 2 (0x00000002) |
| leng = 62 (0x0000003E) |
| loop = -1 (0xFFFFFFFF) |
| xtyp = TYPE#000055 |
| occu = 10 (0x0000000A) |
| access = 1 (ItAccessStandard) |
| idxKind = 0 (ItIndexNone) |
| uniKind = 2 (ItUniqueNon) |
| keyKind = 1 (default) |
| cmpMode = 2 (cmpSingleMcmpR) |
| occu0 = 0 |
| groupCntl = 0 |
| rfc = 0 |
| unShareable = 0 |
| mightBeShared = 0 |
| sharedWithShmTab = 0 |
| isShmLockId = 0 |
| gcKind = 0 |
| isUsed = 1 |
| isCtfyAble = 1 |
| >>>>> Shareable Table Header Data <<<<< |
| tabi = 0xFFFFFFFE97AF76F8 |
| pgHook = 0x0000000000000000 |
| idxPtr = 0x0000000000000000 |
| shmTabhSet = 0x0000000000000000 |
| id = 134 (0x00000086) |
| refCount = 0 (0x00000000) |
| tstRefCount = 0 (0x00000000) |
| lineAdmin = 10 (0x0000000A) |
| lineAlloc = 10 (0x0000000A) |
| shmVersId = 0 (0x00000000) |
| shmRefCount = 1 (0x00000001) |
| >>>>> 1st level extension part <<<<< |
| regHook = 0x0000000000000000 |
| collHook = 0xFFFFFFFE97AF0EA0 |
| ext2 = 0x0000000000000000 |
| >>>>> 2nd level extension part <<<<< |
| tabhBack = Not allocated |
| delta_head = Not allocated |
| pb_func = Not allocated |
| pb_handle = Not allocated |
|SP_TABLES |
| SKB1 |
| 0000000000000000000000000000000 |
| 0000000000000000000000000000000 |
| 5443222222222222222222222222222 |
| 3B21000000000000000000000000000 |
----------------------------------------------------------------------------------------------------
|No. 1 Ty. EVENT |
|Name SYSTEM-EXIT |
----------------------------------------------------------------------------------------------------
|SY-XPROG |
| SAPDBSDF |
| 0000000000000000000000000000000000000000 |
| 0000000000000000000000000000000000000000 |
| 5454454422222222222222222222222222222222 |
| 3104234600000000000000000000000000000000 |
|SY-XFORM |
| %_ROOT |
| 000000000000000000000000000000 |
| 000000000000000000000000000000 |
| 255445222222222222222222222222 |
| 5F2FF4000000000000000000000000 |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Internal notes |
| The termination was triggered in function "HandleRsqlErrors" |
| of the SAP kernel, in line 764 of the module |
| "//bas/700_REL/src/krn/runt/absapsql.c#9". |
| The internal operation just processed is "SQLS". |
| Internal mode was started at 20090311120452. |
| Internal call code.........: "[RSQL/101/BSIS ]" |
| Internal call code.........: "[RSQL/101/BSIS ]" |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Active Calls in SAP Kernel |
----------------------------------------------------------------------------------------------------
|Lines of C Stack in Kernel (Structure Differs on Each Platform) |
----------------------------------------------------------------------------------------------------
|[0] DoStack2 ( 0x1061860a0, 0xffffffff7fffa5f0, 0x10054b9a4, 0x0, 0x14, 0x1034d8af0 ), at 0x10054b|
|[1] CTrcStack2 ( 0x1061860a0, 0x0, 0x19c00, 0x103547870, 0x101e1c9a4, 0x1034d8af0 ), at 0x10054b54|
|[2] __1cQrabax_CStackSave6F_v_ ( 0x103775c00, 0x3775c00, 0x103edabe0, 0x1023314de, 0x100000000, 0x|
|[3] ab_rabax ( 0x0, 0x0, 0x2000000, 0x100000000, 0x3ed9800, 0x3547800 ), at 0x100cd53b0 |
|[4] __1cKab_rsqlerr6FpkHip0pnLRS_HEADER94_2pv_v_ ( 0x1022d7b22, 0x2fc, 0x107b42a68, 0xffffffff7fff|
|[5] __1cQHandleRsqlErrors6FnJRsqlError_nJCloseMode__v_ ( 0x394, 0xa64000, 0x0, 0xc, 0x1022d7b16, 0|
|[6] __1cIab_jsqls6F_v_ ( 0x10374ac00, 0x1062caf18, 0x0, 0x2c, 0xfffffffe978fb468, 0x80 ), at 0x100|
|[7] __1cIab_extri6F_i_ ( 0x100000000, 0x62cac00, 0x450, 0x1, 0x0, 0x8a ), at 0x10076ecf8 |
|[8] __1cJab_xevent6FpkH_i_ ( 0xfffffffe29f65d18, 0xfffffffe29f45068, 0x0, 0x0, 0x4c, 0x106186864 )|
|[9] __1cHab_syex6FpkHip0iIIpi_i_ ( 0x1061899c0, 0x1022d649c, 0x6189800, 0x106109a00, 0x0, 0x0 ), a|
|[10] __1cIab_trigg6F_i_ ( 0x106109f20, 0x106189968, 0x100a4f038, 0x4, 0x22d6000, 0xffffffff7fffbd1|
|[11] ab_run ( 0x100000000, 0x0, 0x102335bac, 0x0, 0x1, 0x1 ), at 0x100d3d254 |
|[12] dynpmcal ( 0xfffffffe978cd718, 0x6, 0xc, 0x103a0eec8, 0x100577d80, 0x103547864 ), at 0x100570|
|[13] dynppai0 ( 0xfffffffe978cd718, 0xfffffffe978ced24, 0x0, 0x1035478c8, 0x0, 0x1061a6894 ), at 0|
|[14] dynprctl ( 0xfffffffe978cd718, 0x0, 0x1035317c0, 0x1300, 0x1, 0x128c ), at 0x10056bc4c |
|[15] dynpen00 ( 0x2c, 0x3548000, 0xfffffffe978cd718, 0x102c30000, 0x2c30000, 0x100000000 ), at 0x1|
|[16] TskhLoop ( 0xffffffff6c154a90, 0x103530000, 0xa50d, 0xffffffffffffadc0, 0xffffffff68017798, 0|
|[17] ThStart ( 0x1, 0x2a7400, 0x1002a7400, 0x100000000, 0x1, 0x0 ), at 0x1002a7f0c |
|[18] DpMain ( 0x3c7bc00, 0x3530000, 0x100000000, 0x1, 0x0, 0x0 ), at 0x1001d9698 |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|List of ABAP programs affected |
----------------------------------------------------------------------------------------------------
|Index |Typ|Program |Group |Date |Time |Size |Lang. |
----------------------------------------------------------------------------------------------------
| 0|Prg|FAGL_ACCOUNT_ITEMS_GL | 0|06.10.2008|11:35:40| 488448|E |
| 1|Prg|SAPMSSY0 | 1|20.05.2008|11:07:32| 92160|E |
| 2|Prg|SAPMSSYD | 1|12.09.2006|11:33:31| 23552|E |
| 3|Prg|SAPFSYSCALLS | 1|09.09.2004|14:18:32| 8192|E |
| 4|Prg|RSDBRUNT | 0|20.05.2008|11:38:34| 254976|E |
| 5|Typ|RSSCR | 0|30.03.2005|10:21:45| 5120| |
| 6|Prg|RSDBSPBL | 0|30.03.2005|10:21:58| 72704|E |
| 7|Prg|%_CTPIT | 0|20.11.2001|16:30:21| 26624|E |
| 8|Prg|SAPDBSDF | 0|19.05.2008|20:15:26| 306176|E |
| 9|Typ|VARID | 0|12.05.1997|16:51:30| 5120| |
| 10|Typ|B0SG | 0|11.04.2005|11:46:42| 5120| |
| 11|Prg|SAPLFCUE1 | 11|06.11.2003|21:21:57| 18432|E |
| 12|Typ|TCUR_BUKRS | 0|22.02.2001|10:03:05| 2048| |
| 13|Typ|TPRCD | 0|22.02.2001|10:05:02| 2048| |
| 14|Prg|SAPLFI_CHECK_DATE | 14|18.12.2001|17:17:24| 16384|E |
| 15|Prg|SAPLSUNI | 15|20.05.2008|13:07:32| 153600|E |
| 16|Typ|TFDIR | 0|13.02.2005|17:31:57| 3072| |
| 17|Prg|SAPLCA_CHECK_DATE | 17|19.11.2001|16:15:55| 19456|E |
| 18|Typ|TPCUSERN | 0|17.04.2002|10:34:16| 2048| |
| 19|Prg|SAPLAS_DATASOURCE | 19|06.11.2003|21:17:26| 50176|E |
| 20|Prg|SAPLAADM | 20|07.03.2005|08:51:05| 332800|E |
| 21|Typ|ASDATASRC1 | 0|06.05.2002|10:38:40| 2048| |
| 22|Typ|SSCRFIELDS | 0|13.05.1997|12:54:26| 5120| |
| 23|Prg|SAPLFAGL_ACTIVATION_SERVICES | 23|27.07.2008|00:04:41| 47104|E |
| 24|Prg|SAPLSTR9 | 24|19.10.2006|10:25:27| 39936|E |
| 25|Prg|CONTEXT_X_TR_SYS_PARAMS | 24|19.10.2006|10:25:27| 40960|E |
| 26|Typ|TCONT | 0|09.09.2004|14:18:43| 2048| |
| 27|Typ|CONTEXTB | 0|09.09.2004|14:15:52| 6144| |
| 28|Typ|FAGL_ACTIVEC | 0|19.08.2004|16:55:10| 5120| |
| 29|Typ|FAGL_CHECK_SETUP | 0|11.12.2003|15:01:05| 2048| |
| 30|Prg|%_CSYDB0 | 0|30.03.2005|10:21:45| 36864|E |
| 31|Prg|RSDBSPVA | 0|17.05.2008|10:51:23| 133120|E |
| 32|Typ|SSCRTEXTS | 0|03.09.1997|03:12:33| 3072| |
| 33|Prg|RSDBSPMC | 0|12.09.2006|11:25:01| 79872|E |
| 34|Prg|SAPLICON | 34|20.05.2008|11:38:34| 27648|E |
| 35|Prg|%_CICON | 34|20.05.2008|11:38:32| 107520|E |
| 36|Typ|ICONT | 0|12.09.2006|11:25:01| 2048| |
| 37|Prg|%_CRSFS | 0|18.02.2005|14:15:41| 6144|E |
| 38|Typ|RSFS_STRUC | 0|20.08.1998|10:57:36| 2048| |
| 39|Prg|SAPLSVAR | 39|20.05.2008|13:09:41| 766976|E |
| 40|Typ|RSVAMEMKEY | 0|07.05.1997|13:07:49| 2048| |
| 41|Typ|RSDSFIELDS | 0|20.08.1998|10:57:22| 3072| |
| 42|Prg|%_CRSDS | 0|18.02.2005|14:15:39| 10240|E |
| 43|Typ|RSDSWHERE | 0|04.04.1995|16:11:56| 2048| |
| 44|Typ|RSDSEXPR | 0|20.08.1998|10:57:18| 3072| |
| 45|Typ|RSDSSELOPT | 0|04.04.1995|16:11:56| 2048| |
| 46|Prg|%_CSYLDB | 0|18.02.2005|14:15:48| 8192|E |
| 47|Typ|DDSHDESCR | 0|03.09.1997|03:05:16| 4096| |
| 48|Typ|SPPARAMS | 0|07.05.1997|13:10:38| 2048| |
| 49|Prg|SAPLSABE | 49|09.09.2004|14:18:36| 13312|E |
| 50|Prg|SAPLSECU | 50|20.05.2008|10:35:44| 87040|E |
| 51|Typ|RSSUBINFO | 0|14.10.1999|22:01:03| 3072| |
| 52|Prg|SAPLSLDB | 52|30.03.2005|10:22:02| 82944|E |
| 53|Typ|RSEXFCODE | 0|13.08.1997|12:52:57| 2048| |
| 54|Prg|SAPLDSYA | 54|20.05.2008|11:02:41| 45056|E |
| 55|Prg|SAPFSDS1 | 54|30.03.2005|10:22:01| 53248|E |
| 56|Typ|TDCLD | 0|02.11.1998|09:51:35| 5120| |
| 57|Prg|SAPLSDOD | 57|15.06.2005|11:39:01| 46080|E |
| 58|Typ|DOKIL | 0|12.05.1997|16:46:17| 3072| |
| 59|Prg|SAPLGL_USER_DATA | 59|07.06.2001|18:27:10| 10240|E |
| 60|Typ|FIGL_USER_OWNER | 0|26.03.1999|15:03:43| 2048| |
| 61|Typ|FIGL_USER_DATA | 0|26.03.1999|15:03:43| 2048| |
| 62|Prg|SAPLFAGL_LEDGER | 62|19.05.2008|19:53:50| 120832|E |
| 63|Prg|SAPLFAGL_APPLICATION | 63|29.08.2005|11:31:02| 11264|E |
| 64|Typ|FAGL_S_APPLICATION | 0|14.01.2004|10:04:44| 2048| |
| 65|Prg|SAPLFM00 | 65|19.05.2008|19:34:01| 89088|E |
| 66|Typ|FMISPS | 0|05.05.2004|03:20:50| 5120| |
| 67|Prg|FAGL_APPLICATION==============CP | 67|08.02.2006|16:11:53| 12288|E |
| 68|Prg|CL_BADI_BASE==================CP | 68|08.12.2004|18:54:01| 7168|E |
| 69|Prg|CX_BADI_NOT_IMPLEMENTED=======CP | 69|05.07.2005|13:10:16| 10240|E |
| 70|Typ|SCX_SRCPOS | 0|18.05.2004|14:07:11| 2048| |
| 71|Prg|CX_BADI_NOT_SINGLE_USE========CP | 71|07.02.2006|10:10:22| 10240|E |
| 72|Prg|CX_BADI=======================CP | 72|07.02.2006|10:10:22| 10240|E |
| 73|Prg|CX_NO_CHECK===================CP | 73|05.07.2005|13:10:16| 10240|E |
| 74|Prg|CX_ROOT=======================CP | 74|16.05.2008|19:07:34| 11264|E |
| 75|Prg|CX_BADI_INITIAL_REFERENCE=====CP | 75|05.07.2005|13:10:16| 10240|E |
| 76|Typ|T881 | 0|05.05.2004|03:21:32| 8192| |
| 77|Typ|T800A | 0|05.05.2004|03:21:32| 7168| |
| 78|Prg|SAPLRSTI | 78|20.05.2008|11:38:32| 222208|E |
| 79|Typ|T021S | 0|20.08.1998|11:04:24| 2048| |
| 80|Typ|RFOPT | 0|22.02.2001|10:02:28| 4096| |
| 81|Prg|CL_EXITHANDLER================CP | 81|20.05.2008|13:03:07| 30720|E |
| 82|Prg|SAPLSEXV | 82|20.05.2008|13:03:08| 117760|E |
| 83|Typ|SXS_ATTR | 0|07.02.2006|10:09:24| 5120| |
| 84|Prg|CL_BADI_FLT_DATA_TRANS_AND_DB=CP | 84|20.05.2008|13:03:07| 35840|E |
| 85|Typ|V_EXT_ACT | 0|09.11.2000|14:27:05| 2048| |
| 86|Typ|SXC_EXIT | 0|09.11.2000|14:23:43| 2048| |
| 87|Prg|RSDBSPDS | 0|20.05.2008|11:38:32| 56320|E |
| 88|Typ|RSVARIDYN | 0|20.08.1998|11:23:44| 5120| |
| 89|Prg|SAPLSSEL | 89|20.05.2008|11:38:33| 1155072|E |
| 90|Typ|RSCONVERT | 0|09.11.2000|14:11:21| 4096| |
| 91|Prg|%_CSSCR | 89|30.03.2005|10:21:45| 11264|E |
| 92|Typ|RSDSQCAT | 0|07.05.1997|13:45:01| 2048| |
| 93|Typ|LDBD | 0|14.02.1998|08:13:18| 4096| |
| 94|Typ|LDBN | 0|20.08.1998|11:19:50| 3072| |
| 95|Typ|LDBNT | 0|14.02.1998|08:13:31| 2048| |
| 96|Prg|CONTEXT_X_FREE_SEL_DD_INFO | 89|19.10.2006|10:25:11| 62464|E |
| 97|Prg|%_CSYFRS | 89|30.03.2005|10:21:45| 9216|E |
| 98|Prg|SAPLSSELSERVICE | 98|05.07.2005|13:10:18| 22528|E |
| 99|Prg|SAPLSDNT | 99|17.05.2008|10:48:12| 219136|E |
| 100|Prg|SAPLSUGS | 100|31.03.2006|11:23:11| 47104|E |
| 101|Typ|DD02T | 0|05.11.1997|02:52:47| 3072| |
| 102|Prg|SAPLSDIFRUNTIME | 102|05.07.2005|13:11:53| 96256|E |
| 103|Typ|DDFIXVALUE | 0|27.08.1999|18:04:56| 3072| |
| 104|Typ|X031L | 0|05.07.2005|13:10:15| 6144| |
| 105|Typ|DFIES | 0|28.12.2004|17:06:45| 10240| |
| 106|Typ|LVC_S_ROID | 0|14.10.1999|21:58:04| 2048| |
| 107|Typ|DDFTX | 0|05.11.1997|02:52:59| 5120| |
| 108|Prg|CL_ABAP_CHAR_UTILITIES========CP | 108|05.07.2005|13:10:15| 13312|E |
| 109|Typ|DD01L | 0|28.12.2004|17:07:19| 6144| |
| 110|Prg|SAPLLDBS | 110|05.07.2005|13:10:18| 90112|E |
| 111|Typ|RSDSQOBJ | 0|29.07.1998|19:06:59| 7168| |
| 112|Typ|RSDSQGN | 0|04.04.1995|16:11:55| 2048| |
| 113|Typ|RSDSQTN | 0|20.08.1998|10:57:24| 2048| |
| 114|Typ|RSDSQFN | 0|20.08.1998|10:57:24| 3072| |
| 115|Typ|RSDSQGT | 0|12.05.1997|16:47:57| 3072| |
| 116|Typ|RSDSQGX | 0|04.04.1995|16:11:55| 2048| |
| 117|Prg|SAPLFAUT | 117|25.08.2005|22:03:16| 13312|E |
| 118|Typ|T000F | 0|28.08.1997|09:30:02| 2048| |
| 119|Prg|SAPLFEUO | 119|09.09.2004|14:18:34| 10240|E |
| 120|Prg|SAPFSPOR | 1|17.05.2008|15:50:49| 15360|E |
| 121|Prg|SAPLSCNT | 121|18.02.2005|14:16:06| 30720|E |
| 122|Typ|DYCBOX | 0|20.08.1998|11:16:53| 3072| |
| 123|Prg|SAPLSTUP | 123|20.05.2008|10:27:51| 74752|E |
| 124|Prg|SAPLCNDP | 124|17.05.2008|10:48:13| 195584|E |
| 125|Prg|SAPSHDTV | 121|05.01.2005|16:26:16| 33792|E |
| 126|Typ|SHDSTU | 0|14.12.1998|23:15:34| 2048| |
| 127|Typ|SHDSTCIU | 0|14.12.1998|23:15:34| 2048| |
| 128|Typ|DD30L | 0|20.08.1998|11:36:00| 4096| |
| 129|Typ|RSSELINT | 0|04.04.1995|16:12:37| 3072| |
| 130|Typ|RSPARINT | 0|10.04.1995|09:58:38| 2048| |
| 131|Prg|SAPLSVSM | 131|18.02.2005|14:16:06| 31744|E |
| 132|Prg|SAPLSGUI | 132|20.05.2008|11:07:32| 84992|E |
| 133|Prg|SAPLSTTM | 133|05.07.2005|13:10:18| 69632|E |
| 134|Prg|SAPLSBDC | 134|20.05.2008|10:31:59| 44032|E |
| 135|Prg|CL_DATAPROVIDER===============CP | 135|28.02.2005|21:00:46| 50176|E |
| 136|Prg|%_CCNTL | 135|18.02.2005|14:15:08| 15360|E |
| 137|Typ|OBJ_RECORD | 0|14.02.1998|08:30:43| 2048| |
| 138|Prg|SAPFGUICNTL | 1|18.02.2005|14:15:08| 24576|E |
| 139|Prg|SAPLOLEA | 139|16.05.2008|16:07:35| 96256|E |
| 140|Prg|SAPLSFES | 140|20.05.2008|13:09:32| 261120|E |
| 141|Prg|SAPLSPLUGIN | 141|09.09.2004|14:18:36| 8192|E |
| 142|Typ|ARFCRDATA | 0|13.02.2005|18:20:24| 7168| |
| 143|Prg|SAPLGRFC | 143|13.02.2005|18:20:25| 16384|E |
| 144|Typ|SWCBCONT | 0|15.11.2000|17:55:11| 4096| |
| 145|Typ|OLE_VERBS | 0|04.04.1995|16:02:20| 2048| |
| 146|Typ|OLE_PA | 0|04.04.1995|16:02:19| 2048| |
| 147|Prg|CL_GUI_PROPS_CONSUMER=========CP | 147|20.05.2008|13:08:35| 30720|E |
| 148|Prg|SAPLTHFB | 148|20.05.2008|13:08:14| 394240|E |
| 149|Typ|EUDB | 0|06.11.2003|20:28:08| 8192| |
| 150|Prg|CL_DYNAMIC_GUI_EXTENSIONS=====CP | 150|18.02.2005|14:15:28| 37888|E |
| 151|Prg|CL_GUI_DATAMANAGER============CP | 151|05.07.2005|13:10:15| 75776|E |
| 152|Typ|T001 | 0|19.05.2008|19:24:42| 13312| |
| 153|Typ|RSVUVINT | 0|15.01.1996|16:09:23| 2048| |
| 154|Prg|SAPLFAGL_MIGRATION | 154|09.04.2005|14:52:17| 50176|E |
| 155|Typ|FAGL_MIG_001 | 0|09.01.2005|17:47:49| 2048| |
| 156|Typ|FAGL_S_MIG_001 | 0|09.12.2004|14:12:17| 2048| |
| 157|Typ|LVC_S_QINF | 0|14.02.2002|14:03:56| 3072| |
| 158|Typ|RSDSEVENTS | 0|13.08.1997|12:52:49| 2048| |
| 159|Typ|RSDSEVFLDS | 0|20.08.1998|11:23:14| 3072| |
| 160|Typ|FLDCONVERT | 0|09.11.2000|14:07:44| 4096| |
| 161|Typ|RSDSTEXTS | 0|20.08.1998|10:57:32| 2048| |
| 162|Typ|RSDSTABS | 0|20.08.1998|10:57:25| 2048| |
| 163|Typ|RSDSFCODE | 0|02.11.1998|09:48:07| 2048| |
| 164|Typ|RSDSPFKEY | 0|02.11.1998|09:48:07| 2048| |
| 165|Typ|RSTNODE | 0|14.02.2002|14:04:46| 5120| |
| 166|Prg|CL_TREE_CONTROL_BASE==========CP | 166|17.05.2008|10:46:19| 120832|E |
| 167|Prg|CL_GUI_CONTROL================CP | 167|28.02.2005|21:03:09| 112640|E |
| 168|Prg|CL_GUI_OBJECT=================CP | 168|17.05.2008|10:49:49| 376832|E |
| 169|Prg|CL_GUI_CFW====================CP | 169|28.02.2005|21:03:09| 168960|E |
| 170|Typ|TOLE | 0|29.07.1998|19:56:01| 3072| |
| 171|Prg|%_COLE2 | 139|18.02.2005|14:15:28| 11264|E |
| 172|Prg|SAPLSCP2 | 172|20.05.2008|13:09:26| 136192|E |
| 173|Typ|SWCONT | 0|04.04.1995|16:18:01| 3072| |
| 174|Prg|SAPCNVE | 174|09.09.2004|14:36:10| 8192|E |
| 175|Prg|SAPLLANG | 175|13.05.2008|16:16:37| 10240|E |
| 176|Typ|T002 | 0|13.05.2008|16:16:36| 2048| |
| 177|Prg|CL_GUI_CONTAINER==============CP | 177|28.02.2005|21:00:46| 57344|E |
| 178|Typ|CFW_LINK | 0|01.12.1999|12:16:48| 3072| |
| 179|Prg|CL_GUI_DOCKING_CONTAINER======CP | 179|28.02.2005|21:00:47| 49152|E |
| 180|Prg|CL_GUI_EASY_SPLITTER_CONTAINERCP | 180|28.02.2005|21:00:47| 40960|E |
| 181|Prg|SAPLCNTH | 181|18.02.2005|14:15:08| 29696|E |
| 182|Prg|CL_GUI_DYNPRO_COMPANION=======CP | 182|18.02.2005|14:15:08| 16384|E |
| 183|Prg|CL_GUI_SPLITTER_CONTAINER=====CP | 183|28.02.2005|21:00:47| 66560|E |
| 184|Prg|CL_GUI_SIMPLE_CONTAINER=======CP | 184|28.02.2005|21:00:47| 43008|E |
| 185|Prg|CL_GUI_TOOLBAR================CP | 185|28.02.2005|21:00:47| 57344|E |
| 186|Prg|CL_GUI_SIMPLE_TREE============CP | 186|05.07.2005|13:10:15| 75776|E |
| 187|Prg|CL_ABAP_TYPEDESCR=============CP | 187|05.07.2005|13:10:15| 30720|E |
| 188|Prg|CL_ABAP_ELEMDESCR=============CP | 188|03.07.2006|10:50:51| 36864|E |
| 189|Prg|CL_ABAP_DATADESCR=============CP | 189|05.07.2005|13:10:15| 19456|E |
| 190|Prg|CL_ABAP_REFDESCR==============CP | 190|05.07.2005|13:10:15| 24576|E |
| 191|Prg|CL_ABAP_STRUCTDESCR===========CP | 191|17.05.2008|10:49:37| 40960|E |
| 192|Prg|CL_ABAP_COMPLEXDESCR==========CP | 192|05.07.2005|13:10:15| 17408|E |
| 193|Prg|CL_ABAP_TABLEDESCR============CP | 193|05.07.2005|13:10:15| 25600|E |
| 194|Prg|CL_ABAP_CLASSDESCR============CP | 194|05.07.2005|13:10:15| 30720|E |
| 195|Prg|CL_ABAP_OBJECTDESCR===========CP | 195|05.07.2005|13:10:15| 34816|E |
| 196|Prg|CL_ABAP_INTFDESCR=============CP | 196|05.07.2005|13:10:15| 25600|E |
| 197|Prg|CL_ABAP_SOFT_REFERENCE========CP | 197|05.07.2005|13:10:15| 10240|E |
| 198|Prg|CL_ABAP_REFERENCE=============CP | 198|09.09.2004|14:18:16| 8192|E |
| 199|Typ|RFC_FIELDS | 0|20.08.1998|10:56:34| 3072| |
| 200|Prg|SAPLCNTL | 200|17.05.2008|10:50:29| 304128|E |
| 201|Typ|X030L | 0|05.07.2005|13:10:10| 6144| |
| 202|Typ|DD03P | 0|18.02.2005|13:53:33| 13312| |
| 203|Typ|DD05M | 0|09.11.2000|14:06:49| 4096| |
| 204|Typ|DD08V | 0|20.08.1998|11:35:49| 4096| |
| 205|Typ|DD12V | 0|19.07.2004|10:44:55| 5120| |
| 206|Typ|DD17V | 0|20.08.1998|10:50:57| 3072| |
| 207|Typ|DD35V | 0|01.03.2001|12:21:53| 2048| |
| 208|Typ|DD36M | 0|01.03.2001|12:38:06| 5120| |
| 209|Prg|SAPLSDTB | 209|05.07.2005|13:11:53| 405504|E |
| 210|Typ|DDCACHE | 0|30.03.1995|13:12:06| 2048| |
| 211|Typ|DCTABDGET | 0|13.05.1997|12:49:28| 2048| |
| 212|Typ|DD02V | 0|19.11.2001|15:50:56| 7168| |
| 213|Prg|SAPLSDSG | 213|05.07.2005|13:11:53| 123904|E |
| 214|Prg|RADBTDDO | 213|05.07.2005|13:10:16| 39936|E |
| 215|Prg|RADBTDDF | 213|05.07.2005|13:05:04| 256000|E |
| 216|Typ|DD02L | 0|19.11.2001|15:49:25| 7168| |
| 217|Typ|DDSTATE | 0|07.05.1997|12:49:07| 2048| |
| 218|Typ|DD03L | 0|28.12.2004|17:10:07| 6144| |
| 219|Typ|DD04L | 0|19.07.2004|10:44:26| 8192| |
| 220|Typ|DD04T | 0|12.05.1997|16:45:50| 3072| |
| 221|Prg|SAPLSDDO | 221|17.05.2008|10:50:44| 236544|E |
| 222|Typ|DDSETSTATE | 0|07.05.1997|12:49:06| 3072| |
| 223|Typ|TPARA | 0|10.07.1997|00:45:24| 4096| |
| 224|Typ|DCDTELGET | 0|30.03.1995|13:13:18| 2048| |
| 225|Prg|SAPLSDDM | 225|03.07.2006|10:49:21| 58368|E |
| 226|Typ|DD08L | 0|05.11.1997|02:52:51| 6144| |
| 227|Prg|SAPLSDFK | 227|05.07.2005|13:10:14| 26624|E |
| 228|Typ|DD35L | 0|20.08.1998|11:16:26| 2048| |
| 229|Typ|DD12L | 0|19.07.2004|10:44:27| 4096| |
| 230|Typ|DD09V | 0|28.12.2004|18:22:11| 5120| |
| 231|Typ|DD09L | 0|28.12.2004|18:22:43| 4096| |
| 232|Typ|DCTABLGET | 0|04.06.1997|19:16:24| 3072| |
| 233|Typ|DDXTT | 0|05.07.2005|13:05:24| 9216| |
| 234|Prg|RATTBUTL | 102|17.05.2008|10:51:16| 206848|E |
| 235|Typ|V_21S23L | 0|20.08.1998|11:32:35| 3072| |
| 236|Typ|DD092526V | 0|20.08.1998|11:15:55| 2048| |
| 237|Typ|DPPROPS | 0|09.07.1997|23:53:23| 2048| |
| 238|Prg|SAPLURFC | 238|20.05.2008|11:03:07| 22528|E |
| 239|Prg|SAPLSRFC | 239|07.02.2006|10:16:57| 37888|E |
| 240|Prg|SAPLSYST | 240|13.02.2005|17:31:56| 35840|E |
| 241|Prg|%_CABAP | 193|05.07.2005|13:10:15| 29696|E |
| 242|Typ|TREEV_NODE | 0|14.02.2002|14:05:11| 4096| |
| 243|Typ|TREEMBNODE | 0|14.02.2002|14:05:09| 3072| |
| 244|Typ|TREEVBNODE | 0|14.02.1998|14:16:44| 2048| |
| 245|Prg|CX_SY_MOVE_CAST_ERROR=========CP | 245|05.07.2005|13:10:16| 11264|E |
| 246|Prg|CX_DYNAMIC_CHECK==============CP | 246|05.07.2005|13:10:16| 10240|E |
| 247|Prg|CX_SY_STRUCT_COMP_NAME========CP | 247|05.07.2005|13:10:16| 12288|E |
| 248|Prg|CX_SY_STRUCT_CREATION=========CP | 248|05.07.2005|13:10:16| 11264|E |
| 249|Prg|CX_SY_TYPE_CREATION===========CP | 249|05.07.2005|13:10:16| 10240|E |
| 250|Prg|CX_SY_STRUCT_ATTRIBUTES=======CP | 250|16.05.2008|19:11:46| 12288|E |
| 251|Prg|CX_SY_STRUCT_SUFFIX_NAME======CP | 251|07.02.2006|10:32:56| 12288|E |
| 252|Prg|CX_SY_STRUCT_COMP_TYPE========CP | 252|05.07.2005|13:10:16| 11264|E |
| 253|Rty|type000000000000 | 0|11.03.2009|12:05:02| 0| |
| 254|Prg|CX_SY_TABLE_LINE_TYPE=========CP | 254|05.07.2005|13:10:16| 12288|E |
| 255|Prg|CX_SY_TABLE_CREATION==========CP | 255|05.07.2005|13:10:16| 10240|E |
| 256|Prg|SAPMSSY1 | 124|11.04.2005|09:27:15| 22528|E |
| 257|Typ|ARFCDATA | 0|04.04.1995|15:40:32| 5120| |
| 258|Prg|SAPLCNT0 | 258|18.02.2005|14:15:08| 40960|E |
| 259|Prg|RSDBSPRE | 0|30.03.2005|10:21:58| 73728|E |
| 260|Typ|RSLDBSELOP | 0|14.02.1998|09:38:36| 2048| |
| 261|Prg|SAPFGUICNTL_CFW | 1|28.02.2005|21:00:47| 15360|E |
| 262|Typ|ARFCSDATA | 0|13.02.2005|18:20:25| 6144| |
| 263|Prg|IF_CACHED_PROP================IP | 151|18.02.2005|14:12:55| 5120|E |
| 264|Prg|CL_GUI_EVENT==================CP | 264|28.02.2005|21:00:47| 11264|E |
| 265|Prg|SAPDB__S | 89|30.03.2005|10:22:01| 19456|E |
| 266|Prg|RSDYNSS0 | 89|16.05.2008|19:12:49| 47104|E |
| 267|Prg|SAPLALFA | 267|05.01.2005|16:24:57| 8192|E |
| 268|Prg|SAPLALDB | 268|20.05.2008|11:38:32| 306176|E |
| 269|Typ|RALDB | 0|07.05.1997|13:03:21| 13312| |
| 270|Typ|RSCSEL | 0|13.08.1997|12:52:49| 4096| |
| 271|Prg|%_CCXTAB | 268|18.02.2005|14:15:08| 7168|E |
| 272|Typ|SCXTAB_CONTROL | 0|18.05.2004|14:07:29| 6144| |
| 273|Prg|CL_I18N_BIDI==================CP | 273|20.05.2008|13:05:51| 26624|E |
| 274|Prg|CL_ABAP_CONV_IN_CE============CP | 274|05.07.2005|13:10:15| 22528|E |
| 275|Prg|CL_I18N_SYSTEM_SETTINGS=======CP | 275|20.05.2008|13:08:36| 20480|E |
| 276|Typ|TCP0I | 0|08.12.2004|18:00:37| 3072| |
| 277|Prg|CL_GUI_FRONTEND_SERVICES======CP | 277|20.05.2008|13:08:35| 119808|E |
| 278|Typ|FILE_TABLE | 0|05.01.1999|10:23:11| 4096| |
| 279|Prg|SAPLFAGL_GLFLEX_FIELDS | 279|27.07.2008|00:04:41| 29696|E |
| 280|Typ|FAGL_LEDGER_SCEN | 0|11.12.2003|15:01:05| 3072| |
| 281|Typ|FAGL_SCEN_FIELDS | 0|11.12.2003|15:01:06| 2048| |
| 282|Typ|FAGL_CUST_FIELDS | 0|16.01.2004|14:24:59| 3072| |
| 283|Typ|FAGL_REPFIELDS | 0|11.12.2003|15:01:05| 2048| |
| 284|Prg|SAPLGDIF | 284|13.02.2005|17:32:00| 28672|E |
| 285|Prg|SAPLGBDD | 285|11.04.2005|11:54:08| 78848|E |
| 286|Typ|T883 | 0|20.08.1998|11:05:33| 2048| |
| 287|Prg|SAPLGORG | 287|19.05.2008|19:45:27| 91136|E |
| 288|Typ|T881T | 0|14.02.1998|12:25:02| 2048| |
| 289|Typ|T881_KEYFIG | 0|14.10.1999|22:10:27| 2048| |
| 290|Prg|SAPLFAGL_AUTHORITY_CHECKS | 290|11.12.2003|15:07:00| 20480|E |
| 291|Prg|FAGL_AUTHORITY_CHECK==========CP | 291|25.08.2005|23:17:03| 12288|E |
| 292|Prg|CL_BADI_CACHE_HANDLER=========CP | 292|05.07.2005|13:21:02| 15360|E |
| 293|Prg|SAPLF018 | 293|25.08.2005|22:03:16| 11264|E |
| 294|Typ|T004 | 0|15.11.2000|17:56:07| 4096| |
| 295|Typ|SKB1 | 0|20.07.2001|19:19:38| 8192| |
| 296|Prg|RSDBSPVD | 0|13.05.2008|16:38:12| 88064|E |
| 297|Typ|RVARI | 0|30.03.1998|09:40:50| 4096| |
| 298|Typ|RSVARIVDAT | 0|04.04.1995|16:12:54| 2048| |
| 299|Typ|RSDFSNODES | 0|28.08.1997|09:01:19| 5120| |
| 300|Typ|RSOPTIONS | 0|15.11.1995|02:45:08| 3072| |
| 301|Typ|RSVDATDYN | 0|15.11.2000|17:52:04| 6144| |
| 302|Prg|SAPLLDB_LOG | 302|09.09.2004|16:18:01| 15360|E |
| 303|Typ|USR05 | 0|18.12.2001|16:51:43| 2048| |
| 304|Prg|SAPLSPIAGENTCW | 304|16.05.2008|19:31:18| 13312|E |
| 305|Prg|SAPLSPILS | 305|20.05.2008|11:07:32| 64512|E |
| 306|Prg|CL_OS_TRANSACTION_END_NOTIFIERCP | 306|05.07.2005|13:05:25| 12288|E |
| 307|Prg|CL_SYSTEM_TRANSACTION_STATE===CP | 307|20.05.2008|11:07:32| 106496|E |
| 308|Prg|%_CGUSL | 0|29.05.2008|04:19:51| 14336|E |
| 309|Prg|%_CSLIS | 0|07.02.2006|10:40:01| 89088|E |
| 310|Prg|/SAPPSPRO/CL_NUMBERS==========CP | 310|06.10.2008|11:35:38| 23552|E |
| 311|Typ|/SAPPSPRO/EADD_DATA | 0|01.03.2005|10:53:32| 2048| |
| 312|Typ|/SAPPSPRO/C_GPF | 0|11.04.2005|11:52:07| 2048| |
| 313|Prg|SAPLSEXE | 313|20.05.2008|13:03:08| 92160|E |
| 314|Prg|CL_EX_FAGL_ITEMS_CH_DATA======CP | 314|11.04.2005|16:39:03| 17408|E |
| 315|Prg|IF_EX_FAGL_ITEMS_CH_DATA======IP | 81|11.04.2005|16:42:49| 8192|E |
| 316|Typ|T001A | 0|03.09.1997|03:13:22| 3072| |
| 317|Prg|SAPLF300 | 317|27.07.2008|00:04:41| 743424|E |
| 318|Typ|BAPIRET2 | 0|20.08.1998|11:11:35| 5120| |
| 319|Typ|ACCT_DET_C_C_BF | 0|20.02.1998|08:46:10| 3072| |
| 320|Prg|CL_FAGL_SPLIT_SERVICES========CP | 320|27.07.2008|00:04:41| 82944|E |
| 321|Typ|FAGL_SPLIT_DEVSY | 0|11.12.2003|15:01:06| 2048| |
| 322|Typ|FAGL_SPLIT_ACTC | 0|11.12.2003|15:01:06| 2048| |
| 323|Prg|SAPLGLT2 | 323|27.07.2008|00:04:42| 131072|E |
| 324|Prg|SAPLFACSCORE | 324|07.06.2001|18:27:03| 13312|E |
| 325|Typ|T8G30A | 0|20.02.1998|09:19:11| 2048| |
| 326|Typ|T8G30B | 0|20.02.1998|09:19:12| 3072| |
| 327|Prg|SAPLFACS | 327|25.08.2005|22:07:28| 288768|E |
| 328|Typ|SKA1 | 0|26.02.2002|09:52:23| 6144| |
| 329|Prg|SAPLSBAL | 329|20.05.2008|11:02:22| 324608|E |
| 330|Typ|BAL_S_LOG | 0|04.12.2000|13:04:00| 7168| |
| 331|Typ|BAL_S_CONT | 0|02.11.1998|09:43:07| 2048| |
| 332|Typ|BAL_S_PARM | 0|04.12.2000|12:45:14| 3072| |
| 333|Typ|BAL_S_CLBK | 0|02.11.1998|09:43:07| 2048| |
| 334|Typ|BAL_S_SCNT | 0|30.11.1998|15:52:33| 6144| |
| 335|Typ|BAL_S_SDEF | 0|04.12.2000|12:45:15| 2048| |
| 336|Prg|SAPLSBAL_SERVICE | 336|13.05.2008|16:38:42| 173056|E |
| 337|Prg|SAPLSYGU | 337|09.09.2004|14:18:36| 29696|E |
| 338|Prg|SAPLF023 | 338|25.08.2005|22:03:16| 11264|E |
| 339|Typ|RSDYNBREPI | 0|20.08.1998|10:57:33| 2048| |
| 340|Typ|RSSELDYN | 0|20.08.1998|10:57:50| 3072| |
| 341|Typ|RSVAR | 0|02.11.1998|09:48:19| 8192| |
| 342|Typ|TRDIR | 0|02.11.1998|09:59:17| 6144| |
| 343|Typ|NODE2STRUC | 0|02.11.1998|09:46:02| 2048| |
| 344|Prg|FI_LDB_UTIL | 0|02.06.2003|15:40:31| 20480|E |
| 345|Typ|BSIS | 0|25.08.2005|22:00:55| 15360| |
| 346|Typ|BSEG | 0|19.05.2008|19:13:19| 52224| |
| 347|Typ|GSEG | 0|19.05.2008|19:14:59| 52224| |
| 348|Typ|SKAT | 0|28.08.1997|09:02:58| 5120| |
| 349|Typ|RFEPB | 0|13.08.1997|12:50:00| 2048| |
| 350|Typ|BOOLE | 0|04.04.1995|15:41:35| 2048| |
| 351|Typ|T009 | 0|01.06.1992|11:17:16| 4096| |
| 352|Typ|T009B | 0|20.02.1998|09:01:22| 4096| |
| 353|Typ|X001 | 0|11.09.1997|10:20:14| 3072| |
| 354|Typ|RFEPK | 0|13.08.1997|12:50:00| 3072| |
| 355|Prg|SAPLFAGL_ITEMS_SELECT | 355|29.05.2008|04:20:05| 140288|E |
| 356|Prg|SAPLFAGL_ITEMS_SERVICES | 356|29.05.2008|04:19:53| 51200|E |
| 357|Prg|SAPLFAGL_TRANSFORM_FIELDNAMES | 357|05.07.2005|13:10:17| 25600|E |
| 358|Typ|FAGL_FIELD_MOVE | 0|14.01.2004|10:04:06| 3072| |
| 359|Typ|FAGL_FIELD_MOVEC | 0|27.01.2004|13:51:55| 3072| |
| 360|Typ|T800M | 0|20.08.1998|11:05:15| 3072| |
| 361|Prg|SAPLFUTIL01 | 361|07.06.2001|18:27:05| 15360|E |
| 362|Typ|TCOBD | 0|20.08.1998|11:06:06| 2048| |
| 363|Typ|FAGLFLEXA | 0|25.08.2005|22:01:40| 11264| |
| 364|Rty|type000000000001 | 0|11.03.2009|12:05:51| 0| |
| 365|Rty|type000000000002 | 0|11.03.2009|12:05:51| 0| |
| 366|Rty|type000000000003 | 0|11.03.2009|12:05:51| 0| |
| 367|Rty|type000000000004 | 0|11.03.2009|12:05:51| 0| |
| 368|Prg|SAPLSYDB | 368|17.05.2008|10:51:03| 63488|E |
| 369|Prg|%_CDBTYP | 368|18.02.2005|14:15:11| 6144|E |
| 370|Prg|CX_SY_OPEN_SQL_DB=============CP | 370|05.07.2005|13:10:16| 12288|E |
| 371|Prg|CX_SY_OPEN_SQL_ERROR==========CP | 371|05.07.2005|13:10:16| 10240|E |
| 372|Prg|CX_SY_SQL_ERROR===============CP | 372|05.07.2005|13:10:16| 10240|E |
| 373|Prg|CX_SY_NO_HANDLER==============CP | 373|05.07.2005|13:10:16| 10240|E |
| 374|Typ|DTC_S_LAYO | 0|04.12.2000|12:46:23| 6144| |
| 375|Typ|RSVARKEY | 0|07.05.1997|13:07:54| 2048| |
| 376|Typ|CAT_SVARS | 0|18.05.2004|10:32:36| 3072| |
| 377|Prg|%_CVIMTY | 317|13.05.2008|16:16:36| 33792|E |
| 378|Typ|BAL_S_MDEF | 0|04.12.2000|13:04:00| 5120| |
| 379|Typ|BAL_S_CONF | 0|06.11.2003|20:26:08| 19456| |
| 380|Typ|BAL_S_COLL | 0|06.11.2003|20:26:08| 10240| |
| 381|Typ|BAL_S_MSGN | 0|18.11.1998|16:20:52| 2048| |
| 382|Typ|BAL_S_MSID | 0|18.11.1998|16:20:52| 2048| |
| 383|Typ|BAL_S_MSNO | 0|18.11.1998|16:20:52| 5120| |
| 384|Typ|BALMSGIDNO | 0|18.11.1998|16:20:51| 2048| |
| 385|Typ|BAL_S_IDNO | 0|04.12.2000|12:45:12| 3072| |
| 386|Typ|BAL_S_MSTY | 0|18.11.1998|16:20:52| 2048| |
| 387|Typ|BAL_S_DLEV | 0|18.11.1998|16:20:52| 2048| |
| 388|Typ|BAL_S_PRCL | 0|18.11.1998|16:20:52| 2048| |
| 389|Typ|BAL_S_EXCLS | 0|06.11.2003|20:26:08| 2048| |
| 390|Typ|BAL_S_EXTXT | 0|06.11.2003|20:26:08| 2048| |
| 391|Typ|BAL_S_MFIL | 0|06.11.2003|20:26:08| 9216| |
| 392|Typ|BAL_S_DISP | 0|06.11.2003|20:26:08| 11264| |
| 393|Typ|BALMSGHNDL | 0|02.11.1998|09:43:06| 2048| |
| 394|Typ|BAL_S_MSG | 0|04.12.2000|13:04:01| 7168| |
| 395|Typ|BAL_S_NTAB | 0|18.05.2004|14:07:04| 4096| |
| 396|Typ|SYST | 0|09.09.2004|14:18:12| 31744| |
| 397|Typ|RSJOBINFO | 0|29.04.1992|14:52:25| 3072| |
| 398|Typ|GLT0 | 0|11.09.1997|10:13:06| 11264| |
| 399|Typ|BKPF | 0|19.05.2008|19:21:30| 19456| |
| 400|Typ|SKC1C | 0|14.10.1999|22:01:35| 23552| |
| 401|Typ|ADMI_FILES | 0|23.02.2001|09:12:43| 5120| |
| 402|Typ|BSISEXT | 0|09.04.2005|14:26:22| 18432| |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Directory of Application Tables |
----------------------------------------------------------------------------------------------------
|Name Date Time Lngth |
| Val. |
----------------------------------------------------------------------------------------------------
|Program FAGL_ACCOUNT_ITEMS_GL |
----------------------------------------------------------------------------------------------------
|SYST 09.09.2004 14:18:12 00004612 |
| \0\x0001\0\0\0\x0019\0#\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0c\0 |
|RSJOBINFO . . : : 00000164 |
| 00000000000000 |
|B0SG . . : : 00000050 |
| X X | |
|SSCRFIELDS 09.09.2004 14:18:02 00001708 |
| |
|SKAT . . : : 00000226 |
| 400ENILG0010000001Equity Shares Equity Shares |
|SKB1 . . : : 00000434 |
| 40010000010000001 0000000020080529ANKAN |
|BSIS . . : : 00001102 |
| 00000000 0000 |
|ADMI_FILES . . : : 00001000 |
| 000000 00000000000000\0\0\0\0\0\0\0\0 |
|T001 . . : : 00000492 |
| 4001000NDF Bangalore I |
|SSCRTEXTS 23.03.2000 22:41:19 00000742 |
| Selection using search help |
----------------------------------------------------------------------------------------------------
|Program RSDBRUNT |
----------------------------------------------------------------------------------------------------
|RSVUVINT . . : : 00000094 |
| | |
|VARID . . : : 00000252 |
| FAGL_ACCOUNT_ITEMS_GL |
----------------------------------------------------------------------------------------------------
|Program SAPDBSDF |
----------------------------------------------------------------------------------------------------
|SKA1 . . : : 00000250 |
| 400NILG0010000001 00000000 |
|GLT0 . . : : 00000496 |
| 0000 000\0\0\0\x000C\0\0\0 |
|SKC1C . . : : 00001126 |
| 0000 \0\0\0\x000C\0 |
|BSISEXT . . : : 00001250 |
| 00000000 0000 |
|BKPF . . : : 00001358 |
| 0000 00000000000000000000000000000000000 |
|BSEG . . : : 00003264 |
| 0000000 0000000000000000 |
|GSEG . . : : 00003264 |
| 0000000 0000000000000000 |
|T004 . . : : 00000078 |
| 00 | |
|DD03L . . : : 00000594 |
| |
----------------------------------------------------------------------------------------------------
|Program SAPLSUNI |
----------------------------------------------------------------------------------------------------
|TFDIR . . : : 00000268 |
| CA_CHECK_DATE SAPLCA_CHECK_DATE |
----------------------------------------------------------------------------------------------------
|Program CONTEXT_X_TR_SYS_PARAMS |
----------------------------------------------------------------------------------------------------
|CONTEXTB . . : : 00002992 |
| 400EBTR_SYS_PARAMS 000006000120090311120000\0\0\0\0 |
|TCONT . . : : 00000068 |
| TR_SYS_PARAMS 20090311105423| |
----------------------------------------------------------------------------------------------------
|Program SAPLICON |
----------------------------------------------------------------------------------------------------
|ICONT . . : : 00000130 |
| |
----------------------------------------------------------------------------------------------------
|Program SAPLSVAR |
----------------------------------------------------------------------------------------------------
|TRDIR . . : : 00000340 |
| FAGL_ACCOUNT_ITEMS_GL XFSD 908 1F |
|RSVAR . . : : 00000772 |
| FAGL_ACCOUNT_ITEMS_GL |
----------------------------------------------------------------------------------------------------
|Program SAPLSLDB |
----------------------------------------------------------------------------------------------------
|LDBD . . : : 00000264 |
| SDF 0000000000000000000000000000 |
----------------------------------------------------------------------------------------------------
|Program SAPFSDS1 |
----------------------------------------------------------------------------------------------------
|TDCLD . . : : 00000098 |
| RE DOKU 8R XX XXLIMUDOKUX #XR3TRPROGX | |
----------------------------------------------------------------------------------------------------
|Program SAPLSDOD |
----------------------------------------------------------------------------------------------------
|DOKIL . . : : 00000152 |
| REFAGL_ACCOUNT_ITEMS_GL |
----------------------------------------------------------------------------------------------------
|Program SAPLSSEL |
----------------------------------------------------------------------------------------------------
|SSCRFIELDS 09.09.2004 14:18:02 00001708 |
| |
|SSCRTEXTS . . : : 00000742 |
| |
----------------------------------------------------------------------------------------------------
|Program CONTEXT_X_FREE_SEL_DD_INFO |
----------------------------------------------------------------------------------------------------
|CONTEXTB . . : : 00002992 |
| 400EBFREE_SEL_DD_INFO 000005000220090311120000\0\0\0\0 |
|TCONT . . : : 00000068 |
| FREE_SEL_DD_INFO 00000000000000| |
----------------------------------------------------------------------------------------------------
|Program SAPLSSELSERVICE |
----------------------------------------------------------------------------------------------------
|DFIES 28.12.2004 17:06:45 00001342 |
| FAGLFREESEL SEGMENT |
----------------------------------------------------------------------------------------------------
|Program SAPLSDNT |
----------------------------------------------------------------------------------------------------
|DDXTT . . : : 00000272 |
| \0\0\0\0\0\0\0\0 |
|V_21S23L . . : : 00000102 |
| 00000000 | |
|DD092526V . . : : 00000124 |
| |
----------------------------------------------------------------------------------------------------
|Program SAPLLDBS |
----------------------------------------------------------------------------------------------------
|RSDSQCAT . . : : 00000086 |
| SAPSDF STANDARD | |
|RSDSQOBJ . . : : 00003268 |
| SVSAPSDF STANDARD \0\0 |
----------------------------------------------------------------------------------------------------
|Program SAPLFAUT |
----------------------------------------------------------------------------------------------------
|T000F . . : : 00000014 |
| | |
----------------------------------------------------------------------------------------------------
|Program SAPLFEUO |
----------------------------------------------------------------------------------------------------
|T000F . . : : 00000014 |
| | |
----------------------------------------------------------------------------------------------------
|Program SAPSHDTV |
----------------------------------------------------------------------------------------------------
|SHDSTU . . : : 00000106 |
| | |
|SHDSTCIU . . : : 00000100 |
| | |
----------------------------------------------------------------------------------------------------
|Program SAPLOLEA |
----------------------------------------------------------------------------------------------------
|TOLE . . : : 00000394 |
| SAP.DATAPROVIDER.1 {799104C5-04C5-11D0- |
----------------------------------------------------------------------------------------------------
|Program CL_GUI_PROPS_CONSUMER=========CP |
----------------------------------------------------------------------------------------------------
|EUDB . . : : 00004068 |
| %C49B74692452F2417E1000000C0A80420 \0\0\0 |
----------------------------------------------------------------------------------------------------
|Program SAPLLANG |
----------------------------------------------------------------------------------------------------
|T002 . . : : 00000010 |
| ES1EN| |
----------------------------------------------------------------------------------------------------
|Program SAPLALDB |
----------------------------------------------------------------------------------------------------
|RSCSEL 23.03.2000 22:41:19 00000886 |
| 2400481233 @\QSelect: Eq |
|RALDB . . : : 00001408 |
| |
----------------------------------------------------------------------------------------------------
|Program SAPLGBDD |
----------------------------------------------------------------------------------------------------
|T883 . . : : 00000132 |
| |
----------------------------------------------------------------------------------------------------
|Program SAPLF018 |
----------------------------------------------------------------------------------------------------
|T001 . . : : 00000492 |
| 4005000APPU Bangalore I |
----------------------------------------------------------------------------------------------------
|Program SAPLGLT2 |
----------------------------------------------------------------------------------------------------
|T8G30A . . : : 00000032 |
| 40001001000 4050| |
----------------------------------------------------------------------------------------------------
|Program SAPLFACSCORE |
----------------------------------------------------------------------------------------------------
|T001 . . : : 00000492 |
| 4001000NDF Bangalore I |
----------------------------------------------------------------------------------------------------
|Program SAPLFACS |
----------------------------------------------------------------------------------------------------
|T001 . . : : 00000492 |
| 4001000NDF Bangalore I |
|T001A . . : : 00000046 |
| | |
|T009 . . : : 00000024 |
| 400V3 01204| |
|T009B . . : : 00000036 |
| 400V300000331012-1| |
|SKA1 . . : : 00000250 |
| 400NILG0060000000X60000000 20080529ANKAN |
|SKB1 . . : : 00000434 |
| 40050000060000000 0000000020080531ANKAN |
|X001 . . : : 00000060 |
| 1000 | |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|ABAP Control Blocks (CONT) |
----------------------------------------------------------------------------------------------------
|Index|Name|Fl|PAR0|PAR1|PAR2|PAR3|PAR4|PAR5|PAR6|Source Code |Line |
----------------------------------------------------------------------------------------------------
| 426|perf|00|001D| | | | | | |LFAGL_ITEMS_SELECTU01 | 321|
| 427|PERP|80|0001| | | | | | |LFAGL_ITEMS_SELECTU01 | 321|
| 428|PERP|80|C010| | | | | | |LFAGL_ITEMS_SELECTU01 | 321|
| 429|TAPP|04|0244|8008|C010| | | | |LFAGL_ITEMS_SELECTU01 | 323|
| 431|PAR2|80|0000|0000|0000| | | | |LFAGL_ITEMS_SELECTU01 | 323|
| 433|BRAX|00|008C| | | | | | |LFAGL_ITEMS_SELECTU01 | 325|
| 434|ASSI|03|0300|003C|8009|0000|0000|0000|0000|LFAGL_ITEMS_SELECTU01 | 326|
| 438|ASSI|03|0000|003B|800A|0000|0000|0000|0000|LFAGL_ITEMS_SELECTU01 | 327|
| 442|REFR|00|0000|8009|0000| | | | |LFAGL_ITEMS_SELECTU01 | 328|
| 444|lreg|03|0002|0000|1024| | | | |LFAGL_ITEMS_SELECTU01 | 330|
| 446|SQLS|2C|003D| | | | | | |LFAGL_ITEMS_SELECTU01 | 330|
| 447|SQLS|83|0002| | | | | | |LFAGL_ITEMS_SELECTU01 | 330|
|>>>>>|SQLS|2C|8009| | | | | | |LFAGL_ITEMS_SELECTU01 | 330|
| 449|ccqi|0C|0000|0005|0028|0000|01C8|0000|01C4|LFAGL_ITEMS_SELECTU01 | 333|
| 453|mvqw|04|0005|01C8|0028| | | | |LFAGL_ITEMS_SELECTU01 | 334|
| 455|DESC|01|0000|8009|0000|0000|0000|0000|0000|LFAGL_ITEMS_SELECTU01 | 336|
| 459|CATC|08|0000| | | | | | |LFAGL_ITEMS_SELECTU01 | 336|
| 460|mvqw|04|0005|01D8|000C| | | | |LFAGL_ITEMS_SELECTU01 | 336|
| 462|CATC|48|0000| | | | | | |LFAGL_ITEMS_SELECTU01 | 336|
| 463|cmpr|00|00CA|0044|0000| | | | |LFAGL_ITEMS_SELECTU01 | 337|
----------------------------------------------------------------------------------------------------