cancel
Showing results for 
Search instead for 
Did you mean: 

Dump in Customs Declaration due to duplicate partner function

Former Member
0 Kudos

Hello GURUs,

When we are creating a Customs Import Declarations in GTS with reference to a Purchase Order from ECC, somehow somewhere multiple values are getting added to the same partner function 'Carrier'. As a result customs declarations is created but system is dumping. when we are trying to display it system is dumping while trying to display it. We can see from the table that duplicate value has been added to the partner function.

Does anybody have any idea where to start the investigating? Any possible BADI or Customer-Exit where this can happen?

Looking forward to your suggestions!

Thanks,

Sarif

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member215181
Active Contributor
0 Kudos

Hi Sarif,

Yes, you could check in ERP BAdI /SAPSLL/IFEX_MM0A_R3, or User-Exit Function Module EXIT_SAPLSLL_LEG_CDPIR3_002.

Regards,

Dave

Former Member
0 Kudos

Hi Dave,

Thanks for the response.

Problem is the whole creating of import declaration is happening in GTS. We're not giving any input from ECC other then the Purchase Order. So the partner function value is also getting assigned in GTS.

At least that's what my functional consultant told me. I'm an ABAPer and totally new to GTS.

If that is true, should we not investigate in GTS itself? The BADI and User-Exit you mentioned are from ECC.

Please correct me if I'm wrong.

Thanks,

Sarif

Former Member
0 Kudos

Hi,

Turns out I did understand the issue incorrectly.

During creation om import declaration, it's getting created successfully. But after that user is manually adding the partner function 'Carrier' since it doesn't come from ECC.

When user clicks 'Save', somehow another value for the same partner function 'Carrier' is getting updated in the database table. So now for the import declaration, for the same partner function 'Carrier', there are 2 different values in database table.


As a result, system is dumping when user is trying to open the declaration in display mode.

Can you please let me know where i should look into?

Thanks,

Sarif

former_member215181
Active Contributor
0 Kudos

Hi Sarif,

As a test, I suggest you create a new Import Declaration, and do NOT let your user add a partner.  Then check (or get your GTS Consultant) to check the Partners that are actually assigned to the Declaration in the database - perhaps there IS actually a Carrier partner already existing?

Otherwise, add the Carrier partner as the user is already doing, and debug the code during the Save to see where the duplicate partner is being added.  I really can't imagine where that could be happening, unless some very non-standard code has been added somehow.

Regards,

Dave

kul_vaibhav
Active Participant
0 Kudos

Hi Sarif,

Did you tried Dave's suggestion? It would be worth checking table /SAPSLL/CORPAR entries before and after editing customs declaration manually. This should give you a hint where the problem is.

regards,

Kul Vaibhav

kul_vaibhav
Active Participant
0 Kudos

Hi Sarif,

Did you mapped two partner functions from feeder system to the same partner function in GTS? or you may want to check default data for partners.

If you don't find anything significant, please give us more information of the dump from ST22. Function Module or program name will help in further analysis.

P.S. - If it is Function Module /SAPSLL/CUHD_LOAD_SELECTION, it would be worth check following KBA and SAP note respectively - 1788630 & 1788329.

regards,

Kul Vaibhav

Former Member
0 Kudos

Hi Kul,

Thanks for the reply. Will you please check the reply I gave to Dave below? Didn't feel like writing the same thing twice

Anyway, thanks,

Sarif

kul_vaibhav
Active Participant
0 Kudos

Hi Sarif,

Did you check my suggestions above. what are your findings? I did not find any mention of that in your reply to Dave.

regards,

Kul Vaibhav

Former Member
0 Kudos

Hi Kul,

I am not very familiar with the system. Still I tried to find out using BP transaction. I didn't find any duplicate entry in the below screenshot under the 'Partner' tab. Does that mean no duplicate mapping?

As for dump, I've to request that from my functional since issue is in production system and he's in a different time zone.

Thanks,

Sarif

Former Member
0 Kudos

I'm posting the dump, it's not giving me any option to attach----

------------------------------------------

Category               ABAP Programming Error

Runtime Errors         ITAB_DUPLICATE_KEY

ABAP Program           /SAPSLL/SAPLCUHD_SELECTION

Application Component  SLL-LEG

Date and Time          05/18/2016 10:22:26

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|Short text                                                                                        |

|    There is already a line with the same key.                                                    |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|What happened?                                                                                    |

|    Error in the ABAP Application Program                                                         |

|                                                                                                  |

|    The current ABAP program "/SAPSLL/SAPLCUHD_SELECTION" 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.                                                                    |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|Error analysis                                                                                    |

|    You tried to insert an entry into table                                                       |

|     "\FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_CORPAR_HT". However, updating                 |

|    the unique table key "PRIMARY_KEY" resulted in a duplicate entry. The key                     |

|    concerned may be either the primary key or a secondary key.                                   |

|                                                                                                  |

|    The key components of the duplicate entry have the values                                     |

|     "{005056AC113D1EE682FAD3D9EBD1C41A;CUSFRW}"                                                  |

|    " " " " " ".                                                                                  |

|                                                                                                  |

|    With primary keys, the system may terminate while processing                                  |

|    block insert operations. The statements concerned are                                         |

|                                                                                                  |

|    (1) MOVE                                                                                      |

|                                                                                                  |

|    (2) INSERT/APPEND ... LINES OF ... INTO/TO                                                    |

|                                                                                                  |

|    (3) SELECT ... INTO/APPENDING ...                                                             |

|                                                                                                  |

|    With secondary keys, the system may also terminate while processing                           |

|    a single record insert operation. In particular, the following                                |

|    modifying statements may cause the system to terminate due to                                 |

|    duplicate key values:                                                                         |

|                                                                                                  |

|    (1) "<fs> = ..." or "<fs>-comp = ...", if the assignment to                                   |

|    a field symbol or to a component of a field symbol modifies a                                 |

|    component of a unique secondary key.                                                          |

|                                                                                                  |

|    (2) "ref->* = ..." or "ref->comp = ...", if the assignment to a field                         |

|    symbol or to a component of a field symbol modifies a component of                            |

|    a unique secondary key.                                                                       |

|                                                                                                  |

|    (3) "MODIFY ... [TRANSPORTING comp_1 ... comp_n] ...", if transporting                        |

|    the components to be changed modifies a component of a unique secondary                       |

|    key.                                                                                          |

|                                                                                                  |

|    (4) "COLLECT ... INTO ...", if adding up the columns of a numeric type                        |

|    modifies a component of a unique secondary key.                                               |

|                                                                                                  |

|    (5) "READ TABLE ... INTO <fs> ...[TRANSPORTING comp_1 ... comp_n] ...",                       |

|    if the field symbol points to a row of a table with unique secondary                          |

|    keys and transporting the values read modifies a component of a unique                        |

|    secondary key.                                                                                |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|How to correct the error                                                                          |

|    Probably the only way to eliminate the error is to correct the program.                       |

|    -                                                                                             |

|                                                                                                  |

|    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:                                                                                     |

|                                                                                                  |

|    "ITAB_DUPLICATE_KEY" " "                                                                      |

|    "/SAPSLL/SAPLCUHD_SELECTION" or "/SAPSLL/LCUHD_SELECTIONU01"                                  |

|    "/SAPSLL/CUHD_LOAD_SELECTION"                                                                 |

|                                                                                                  |

|    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..... 731                                                                          |

|    SAP Basis Level. 0004                                                                         |

|                                                                                                  |

|    Application server... "gtpci01"                                                               |

|    Network address...... "10.190.9.181"                                                          |

|    Operating system..... "Linux"                                                                 |

|    Release.............. "2.6.32-504.12.2.el6."                                                  |

|    Hardware type........ "x86_64"                                                                |

|    Character length.... 16 Bits                                                                  |

|    Pointer length....... 64 Bits                                                                 |

|    Work process number.. 5                                                                       |

|    Shortdump setting.... "full"                                                                  |

|                                                                                                  |

|    Database server... "gtpci01"                                                                  |

|    Database type..... "DB6"                                                                      |

|    Database name..... "GTP"                                                                      |

|    Database user ID.. "SAPGTP"                                                                   |

|                                                                                                  |

|    Terminal.......... "LCA0026X2QSY1"                                                            |

|                                                                                                  |

|    Char.set.... "C"                                                                              |

|                                                                                                  |

|    SAP kernel....... 720                                                                         |

|    created (date)... "Jul 8 2012 19:33:31"                                                       |

|    create on........ "Linux GNU SLES-11 x86_64 cc4.3.4 use-pr120614"                             |

|    Database version. "DB6_81 "                                                                   |

|                                                                                                  |

|    Patch level. 300                                                                              |

|    Patch text.. " "                                                                              |

|                                                                                                  |

|    Database............. "DB6 09.07.*, DB6 09.08.*, DB6 10.*"                                    |

|    SAP database version. 720                                                                     |

|    Operating system..... "Linux 2.6, Linux 3"                                                    |

|                                                                                                  |

|    Memory consumption                                                                            |

|    Roll.... 0                                                                                    |

|    EM...... 12569424                                                                             |

|    Heap.... 0                                                                                    |

|    Page.... 49152                                                                                |

|    MM Used. 1957472                                                                              |

|    MM Free. 2229696                                                                              |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|User and Transaction                                                                              |

|    Client.............. 200                                                                      |

|    User................ "RENAIR"                                                                 |

|    Language key........ "E"                                                                      |

|    Transaction......... "/SAPSLL/CULO_CUS_IMP"                                                   |

|    Transaction ID...... "5739949031C21958E10000000ABE09B5"                                       |

|                                                                                                  |

|    EPP Whole Context ID.... "005056AC113D1EE687A3A195CCF098FC"                                   |

|    EPP Connection ID....... 00000000000000000000000000000000                                     |

|    EPP Caller Counter...... 0                                                                    |

|                                                                                                  |

|    Program............. "/SAPSLL/SAPLCUHD_SELECTION"                                             |

|    Screen.............. "SAPMSSY0 1000"                                                          |

|    Screen Line......... 6                                                                        |

|    Debugger Active..... "none"                                                                   |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|Information on where terminated                                                                   |

|    Termination occurred in the ABAP program "/SAPSLL/SAPLCUHD_SELECTION" - in                    |

|     "/SAPSLL/CUHD_LOAD_SELECTION".                                                               |

|    The main program was "/SAPSLL/CULO_DISPLAY_CUS_IMP ".                                         |

|                                                                                                  |

|    In the source code you have the termination point in line 164                                 |

|    of the (Include) program "/SAPSLL/LCUHD_SELECTIONU01".                                        |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|Source Code Extract                                                                               |

----------------------------------------------------------------------------------------------------

|Line |SourceCde                                                                                   |

----------------------------------------------------------------------------------------------------

|  134|                                       iv_select_items                                      |

|  135|                                       gc_true                                              |

|  136|                                       gc_true                                              |

|  137|                                       gc_true                                              |

|  138|                                       gc_true                                              |

|  139|                                       gc_false                                             |

|  140|                                       gc_true                                              |

|  141|                                       gc_false                                             |

|  142|                              changing lt_cuit                                              |

|  143|                                       lt_corpar                                            |

|  144|                                       lt_corref                                            |

|  145|                                       lt_cuhdsta                                           |

|  146|                                       lt_legact                                            |

|  147|                                       lt_legcom                                            |

|  148|                                       lt_legtpr                                            |

|  149|                                       lt_legmes                                            |

|  150|                                       lt_legculc_ht                                        |

|  151|                                       lt_legcus_ht                                         |

|  152|                                       lt_legcon                                            |

|  153|                                       lt_legdoc.                                           |

|  154|                                                                                            |

|  155|*--- remove customs offices of transit as they would lead                                   |

|  156|*--- to non-unique CORPAR-lines. Application does not                                       |

|  157|*--- require those offices. Data reduction in select-statement                              |

|  158|*--- will be postponed to a later point of time.                                            |

|  159|  delete lt_corpar where patyp = gc_partner_fct_type-cust_off_pas.                          |

|  160|                                                                                            |

|  161|*--- Hashed und Sorted Tabellen aufbauen                                                    |

|  162|  insert lines of lt_legact  into table lt_legact_st.                                       |

|  163|  insert lines of lt_legtpr  into table lt_legtpr_ht.                                       |

|>>>>>|  insert lines of lt_corpar  into table lt_corpar_ht.                                       |

|  165|  insert lines of lt_legcom  into table lt_legcom_st.                                       |

|  166|  insert lines of lt_cuit    into table lt_cuit_st.                                         |

|  167|  insert lines of lt_legmes  into table lt_legmes_st.                                       |

|  168|  insert lines of lt_cuhdsta into table lt_cuhdsta_ht.                                      |

|  169|  insert lines of lt_corref  into table lt_corref_st.                                       |

|  170|                                                                                            |

|  171|  loop at lt_cuhd assigning <ls_cuhd>.                                                      |

|  172|                                                                                            |

|  173|    clear: ls_header,                                                                       |

|  174|           ls_legact.                                                                       |

|  175|                                                                                            |

|  176|    if not ct_cockpit is initial.                                                           |

|  177|                                                                                            |

|  178|      perform relevant_activity_determine using    lt_legact_st                             |

|  179|                                                   <ls_cuhd>-guid_cuhd                      |

|  180|                                          changing ls_legact                                |

|  181|                                                   lv_proaf_org.                            |

|  182|                                                                                            |

|  183|      read table ct_cockpit into ls_cockpit                                                 |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|Contents of system fields                                                                         |

----------------------------------------------------------------------------------------------------

|Name    |Val.                                                                                     |

----------------------------------------------------------------------------------------------------

|SY-SUBRC|0                                                                                        |

|SY-INDEX|0                                                                                        |

|SY-TABIX|1                                                                                        |

|SY-DBCNT|0                                                                                        |

|SY-FDPOS|6                                                                                        |

|SY-LSIND|0                                                                                        |

|SY-PAGNO|0                                                                                        |

|SY-LINNO|1                                                                                        |

|SY-COLNO|1                                                                                        |

|SY-PFKEY|                                                                                         |

|SY-UCOMM|                                                                                         |

|SY-TITLE|Display Existing Customs Import Declarations                                             |

|SY-MSGTY|E                                                                                        |

|SY-MSGID|/SAPSLL/CORE_BASIS                                                                       |

|SY-MSGNO|202                                                                                      |

|SY-MSGV1|/SAPSLL/T606RA                                                                           |

|SY-MSGV2|                                                                                         |

|SY-MSGV3|                                                                                         |

|SY-MSGV4|                                                                                         |

|SY-MODNO|0                                                                                        |

|SY-DATUM|20160518                                                                                 |

|SY-UZEIT|102225                                                                                   |

|SY-XPROG|SAPCNVE                                                                                  |

|SY-XFORM|CONVERSION_EXIT                                                                          |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|Active Calls/Events                                                                               |

----------------------------------------------------------------------------------------------------

|No.   Ty.          Program                             Include                             Line   |

|      Name                                                                                        |

----------------------------------------------------------------------------------------------------

|    3 FUNCTION     /SAPSLL/SAPLCUHD_SELECTION          /SAPSLL/LCUHD_SELECTIONU01            164  |

|      /SAPSLL/CUHD_LOAD_SELECTION                                                                 |

|    2 FORM         /SAPSLL/CULO_DISPLAY_CUS_IMP        /SAPSLL/CULO_DISPLAY_GEN_FORMS        384  |

|      SELECT_SHIPMENTS                                                                            |

|    1 EVENT        /SAPSLL/CULO_DISPLAY_CUS_IMP        /SAPSLL/CULO_DISPLAY_CUS_IMP          175  |

|      START-OF-SELECTION                                                                          |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|Chosen variables                                                                                  |

----------------------------------------------------------------------------------------------------

|Name                                                                                              |

|    Val.                                                                                          |

----------------------------------------------------------------------------------------------------

|No.       3 Ty.          FUNCTION                                                                 |

|Name  /SAPSLL/CUHD_LOAD_SELECTION                                                                 |

----------------------------------------------------------------------------------------------------

|IS_CRIT                                                                                           |

|    Ð#/#####Ñ#####################################################################################|

|    D02000FFD00000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00|

|    00F000FF10E000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00|

|    000000FF000000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00|

|    000000FF000000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00|

|    D00000002F00000000000000FFFFFFFFD10000000E00000000000000FFFFFFFF00000000FFFFFFFF00000000FFFFFF|

|IS_DEBUG                                                                                          |

|    GTP     200                                                                                   |

|    455222223332222222                                                                            |

|    740000002000000000                                                                            |

|    000000000000000000                                                                            |

|    000000000000000000                                                                            |

|    470054005000200020002000200020003200300030002000200020002000200020002000                      |

|IV_REPID                                                                                          |

|    /SAPSLL/CULO_DISPLAY_CUS_IMP                                                                  |

|    2545544245445445544554555445222222222222                                                      |

|    F3103CCF35CFF4930C19F353F9D0000000000000                                                      |

|    0000000000000000000000000000000000000000                                                      |

|    0000000000000000000000000000000000000000                                                      |

|    2F0053004100500053004C004C002F00430055004C004F005F0044004900530050004C00410059005F004300550053|

|IV_SELECT_ITEMS                                                                                   |

|    X                                                                                             |

|    5                                                                                             |

|    8                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    5800                                                                                          |

|IV_SRVLL                                                                                          |

|    LECCUS                                                                                        |

|    444455                                                                                        |

|    C53353                                                                                        |

|    000000                                                                                        |

|    000000                                                                                        |

|    4C0045004300430055005300                                                                      |

|ET_EMACT                                                                                          |

|    Table[initial]                                                                                |

|                                                                                                  |

|ET_HEADER                                                                                         |

|    Table[initial]                                                                                |

|                                                                                                  |

|ET_ITEM                                                                                           |

|    Table[initial]                                                                                |

|                                                                                                  |

|CT_COCKPIT                                                                                        |

|    Table[initial]                                                                                |

|                                                                                                  |

|LT_LEGDOC                                                                                         |

|    Table[initial]                                                                                |

|                                                                                                  |

|LT_CORPAR                                                                                         |

|    Table IT_189[13x342]                                                                          |

|    \FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_CORPAR                                          |

|    Table reference: 58                                                                           |

|    TABH+  0(20) = 7875E101FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 3A000000BD0000000D00000056010000FFFFFFFF                                       |

|    TABH+ 40(16) = 04700000109914000400C125C0000000                                               |

|    store        = 0x7875E101FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 58    (0x3A000000)                                                             |

|    label        = 189   (0xBD000000)                                                             |

|    fill         = 13    (0x0D000000)                                                             |

|    leng         = 342   (0x56010000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#002134                                                                    |

|    occu         = 4     (0x04000000)                                                             |

|    accKind      = 1     (ItAccessStandard)                                                       |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 3     (user defined)                                                           |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 0                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0x0853E101FE7F0000                                                             |

|    pgHook       = 0x184AE101FE7F0000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 129   (0x81000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 0     (0x00000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 28    (0x1C000000)                                                             |

|    lineAlloc    = 28    (0x1C000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 1     (0x01000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|                                                                                                  |

|    200########O1########LF      ########0000072192MX 0000090689                  >|

|    33305118DE64305118DEC442222220511ACCF333333333345233333333332222222222222222222222333332222222|

|    200061E23B4F1061E23B4C6000000061E028D0000072192D8000000906890000000000000000000000000000000000|

|    0005A3EFDD1005A3EFDD1000000005A3EBF90000000000000000000000000000000000000000000000000000000000|

|    0000CD6A92A000CD6A91A000000000CD26D1B000000000000000000000000000000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBD2641A4F003100005056AC113D1EE682FAD3D9EBD1C41A4C00460020|

|                                                                                                  |

|    200########O1########WL      ########0000072192MX 0000090689                  >|

|    33305118DE84305118DEC542222220511ACCF333333333345233333333332222222222222222222222333332222222|

|    200061E23B4F1061E23B47C000000061E028D0000072192D8000000906890000000000000000000000000000000000|

|    0005A3EFDD1005A3EFDD1000000005A3EBF90000000000000000000000000000000000000000000000000000000000|

|    0000CD6A92A000CD6A91A000000000CD26D1B000000000000000000000000000000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBD2841A4F003100005056AC113D1EE682FAD3D9EBD1C41A57004C0020|

|                                                                                                  |

|    200########O1########CUSVBS  ########LU_US_0312US 0000011038                 >|

|    33305118DEA4305118DEC455545220511975C455555333355233333333332222222222222222222222333332222222|

|    200061E23B4F1061E23B435362300061EF87BC5F53F031253000000110380000000000000000000000000000000000|

|    0005A3EFDD1005A3EFDD1000000005A3E8E93000000000000000000000000000000000000000000000000000000000|

|    0000CD6A92A000CD6A91A000000000CD2C692000000000000000000000000000000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBD2A41A4F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|                                                                                                  |

|    200########O1########CUSANM  ########FTO_US0120US 0000010975  264123395       >|

|    33305118DD84305118DEC45544422051197DC454555333355233333333332233333333322222222222333332222222|

|    200061E2364F1061E23B43531ED00061EF41B64FF53012053000000109750026412339500000000000000000000000|

|    0005A3EFE11005A3EFDD1000000005A3E88D2000000000000000000000000000000000000000000000000000000000|

|    0000CD6A02A000CD6A91A000000000CD2C08F000000000000000000000000000000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAD3E0D612841A4F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|                                                                                                  |

|    200########O1########CUSEMP  ########FTO_US0120US 0000010975  264123395       >|

|    33305118DDA4305118DEC45544522051197DC454555333355233333333332233333333322222222222333332222222|

|    200061E2364F1061E23B43535D000061EF41B64FF53012053000000109750026412339500000000000000000000000|

|    0005A3EFE11005A3EFDD1000000005A3E88D2000000000000000000000000000000000000000000000000000000000|

|    0000CD6A02A000CD6A91A000000000CD2C08F000000000000000000000000000000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAD3E0D612A41A4F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|GC_KPRO_STATUS                                                                                    |

|     X                                                                                            |

|    25                                                                                            |

|    08                                                                                            |

|    00                                                                                            |

|    00                                                                                            |

|    20005800                                                                                      |

|<%_L001>                                                                                          |

|    ???                                                                                           |

|    ??????                                                                                        |

|    ??????                                                                                        |

|    ????????????                                                                                  |

|SCREEN                                                                                            |

|    %_17SNS0008226594_%_%_%_%_%_%_                                                                |

|    2533545333333333352525252525252222222222222222222222222222222222222222222222222222222222222222|

|    5F173E30008226594F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    25005F003100370053004E00530030003000300038003200320036003500390034005F0025005F0025005F0025005F|

|<%_L001>-S-PATYP                                                                                  |

|    ???                                                                                           |

|    ??????                                                                                        |

|    ??????                                                                                        |

|    ????????????                                                                                  |

|GC_PARTNER_FCT_TYPE-CUST_OFF_PAS                                                                  |

|    CUSDZS                                                                                        |

|    45545522                                                                                      |

|    3534A300                                                                                      |

|    00000000                                                                                      |

|    00000000                                                                                      |

|    43005500530044005A00530020002000                                                              |

|%_ITAB_DELETE_LIST                                                                                |

|    Table[initial]                                                                                |

|                                                                                                  |

|SY-TABIX                                                                                          |

|    1                                                                                             |

|    0000                                                                                          |

|    1000                                                                                          |

|    01000000                                                                                      |

|GC_IZUAB                                                                                          |

|    IO                                                                                            |

|    44                                                                                            |

|    9F                                                                                            |

|    00                                                                                            |

|    00                                                                                            |

|    49004F00                                                                                      |

|SY-SUBRC                                                                                          |

|    0                                                                                             |

|    0000                                                                                          |

|    0000                                                                                          |

|    00000000                                                                                      |

|LT_LEGACT_ST                                                                                      |

|    Table IT_193[3x148]                                                                           |

|    \FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_LEGACT_ST                                       |

|    Table reference: 78                                                                           |

|    TABH+  0(20) = 3859E101FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 4E000000C10000000300000094000000FFFFFFFF                                       |

|    TABH+ 40(16) = 04700000509E14000300C22BC0000000                                               |

|    store        = 0x3859E101FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 78    (0x4E000000)                                                             |

|    label        = 193   (0xC1000000)                                                             |

|    fill         = 3     (0x03000000)                                                             |

|    leng         = 148   (0x94000000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#002162                                                                    |

|    occu         = 3     (0x03000000)                                                             |

|    accKind      = 2     (ItAccessSorted)                                                         |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 3     (user defined)                                                           |

|    cmpMode      = 5     (cmpSingle)                                                              |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 0                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0xE875E101FE7F0000                                                             |

|    pgHook       = 0x0000000000000000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 132   (0x84000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 0     (0x00000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 3     (0x03000000)                                                             |

|    lineAlloc    = 3     (0x03000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 1     (0x01000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|                                                                                                  |

|    200########O1########CUSUSCUSUSCUSIMUSRLF0010ZRLF 1              O########     |

|    33305118DE04305118DEC45555455554554455544333355442322222222222222405118DEC                    |

|    200061E23B4F1061E23B435353353533539D532C60010A2C60100000000000000F061E23B4                    |

|    0005A3EFDD1005A3EFDD10000000000000000000000000000000000000000000005A3EFDD1                    |

|    0000CD6A92A000CD6A91A0000000000000000000000000000000000000000000000CD6A91A                    |

|    320030003000005056AC113D1EE682FAD3D9EBD2041A4F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|                                                                                                  |

|    200########O1########CUSUSCUSUSCUSIMUSRLF0020ZAII 0              O########     |

|    33305118DE24305118DEC45555455554554455544333354442322222222222222405118DEC                    |

|    200061E23B4F1061E23B435353353533539D532C60020A1990000000000000000F061E23B4                    |

|    0005A3EFDD1005A3EFDD10000000000000000000000000000000000000000000005A3EFDD1                    |

|    0000CD6A92A000CD6A91A0000000000000000000000000000000000000000000000CD6A91A                    |

|    320030003000005056AC113D1EE682FAD3D9EBD2241A4F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|                                                                                                  |

|    200########O1########CUSUSCUSUSCUSIMUSRLF0030ZDOCS0              O########     |

|    33305118DE44305118DEC45555455554554455544333354445322222222222222405118DEC                    |

|    200061E23B4F1061E23B435353353533539D532C60030A4F33000000000000000F061E23B4                    |

|    0005A3EFDD1005A3EFDD10000000000000000000000000000000000000000000005A3EFDD1                    |

|    0000CD6A92A000CD6A91A0000000000000000000000000000000000000000000000CD6A91A                    |

|    320030003000005056AC113D1EE682FAD3D9EBD2441A4F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|LT_LEGACT                                                                                         |

|    Table IT_179[3x148]                                                                           |

|    \FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_LEGACT                                          |

|    Table reference: 76                                                                           |

|    TABH+  0(20) = 38BFE101FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 4C000000B30000000300000094000000FFFFFFFF                                       |

|    TABH+ 40(16) = 04700000909714000400C125C0000000                                               |

|    store        = 0x38BFE101FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 76    (0x4C000000)                                                             |

|    label        = 179   (0xB3000000)                                                             |

|    fill         = 3     (0x03000000)                                                             |

|    leng         = 148   (0x94000000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#002126                                                                    |

|    occu         = 4     (0x04000000)                                                             |

|    accKind      = 1     (ItAccessStandard)                                                       |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 3     (user defined)                                                           |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 0                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0x285AE101FE7F0000                                                             |

|    pgHook       = 0x0000000000000000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 124   (0x7C000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 0     (0x00000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 4     (0x04000000)                                                             |

|    lineAlloc    = 4     (0x04000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 1     (0x01000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|                                                                                                  |

|    200########O1########CUSUSCUSUSCUSIMUSRLF0010ZRLF 1              O########     |

|    33305118DE04305118DEC45555455554554455544333355442322222222222222405118DEC                    |

|    200061E23B4F1061E23B435353353533539D532C60010A2C60100000000000000F061E23B4                    |

|    0005A3EFDD1005A3EFDD10000000000000000000000000000000000000000000005A3EFDD1                    |

|    0000CD6A92A000CD6A91A0000000000000000000000000000000000000000000000CD6A91A                    |

|    320030003000005056AC113D1EE682FAD3D9EBD2041A4F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|                                                                                                  |

|    200########O1########CUSUSCUSUSCUSIMUSRLF0020ZAII 0              O########     |

|    33305118DE24305118DEC45555455554554455544333354442322222222222222405118DEC                    |

|    200061E23B4F1061E23B435353353533539D532C60020A1990000000000000000F061E23B4                    |

|    0005A3EFDD1005A3EFDD10000000000000000000000000000000000000000000005A3EFDD1                    |

|    0000CD6A92A000CD6A91A0000000000000000000000000000000000000000000000CD6A91A                    |

|    320030003000005056AC113D1EE682FAD3D9EBD2241A4F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|                                                                                                  |

|    200########O1########CUSUSCUSUSCUSIMUSRLF0030ZDOCS0              O########     |

|    33305118DE44305118DEC45555455554554455544333354445322222222222222405118DEC                    |

|    200061E23B4F1061E23B435353353533539D532C60030A4F33000000000000000F061E23B4                    |

|    0005A3EFDD1005A3EFDD10000000000000000000000000000000000000000000005A3EFDD1                    |

|    0000CD6A92A000CD6A91A0000000000000000000000000000000000000000000000CD6A91A                    |

|    320030003000005056AC113D1EE682FAD3D9EBD2441A4F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|LT_LEGTPR_HT                                                                                      |

|    Table IT_194[1x1152]                                                                          |

|    \FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_LEGTPR_HT                                       |

|    Table reference: 83                                                                           |

|    TABH+  0(20) = C077E101FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 53000000C20000000100000080040000FFFFFFFF                                       |

|    TABH+ 40(16) = 04700000809E14000100A425C0000000                                               |

|    store        = 0xC077E101FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 83    (0x53000000)                                                             |

|    label        = 194   (0xC2000000)                                                             |

|    fill         = 1     (0x01000000)                                                             |

|    leng         = 1152  (0x80040000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#002163                                                                    |

|    occu         = 1     (0x01000000)                                                             |

|    accKind      = 4     (ItAccessHashed)                                                         |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 1     (ItUniYes)                                                               |

|    keyKind      = 3     (user defined)                                                           |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 0                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0xF8C5E301FE7F0000                                                             |

|    pgHook       = 0x0000000000000000                                                             |

|    idxPtr       = 0x3078E101FE7F0000                                                             |

|    id           = 133   (0x85000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 0     (0x00000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 1     (0x01000000)                                                             |

|    lineAlloc    = 1     (0x01000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 1     (0x01000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|    200#########O1########CUSUS####   30 8001042663                                     |

|    33305118DE204305118DEC455550000222332333333333322222222222222222222222222222222222222222222222|

|    200061E23B40F1061E23B4353530000000300800104266300000000000000000000000000000000000000000000000|

|    0005A3EFDD10005A3EFDD1000000000000000000000000000000000000000000000000000000000000000000000000|

|    0000CD6A94A0000CD6A91A000000000000000000000000000000000000000000000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBD4241A00004F003100005056AC113D1EE682FAD3D9EBD1C41A430055|

|LT_LEGTPR                                                                                         |

|    Table IT_185[1x1152]                                                                          |

|    \FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_LEGTPR                                          |

|    Table reference: 70                                                                           |

|    TABH+  0(20) = 88C0E101FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 46000000B90000000100000080040000FFFFFFFF                                       |

|    TABH+ 40(16) = 04700000F09714000400C125C0000000                                               |

|    store        = 0x88C0E101FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 70    (0x46000000)                                                             |

|    label        = 185   (0xB9000000)                                                             |

|    fill         = 1     (0x01000000)                                                             |

|    leng         = 1152  (0x80040000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#002128                                                                    |

|    occu         = 4     (0x04000000)                                                             |

|    accKind      = 1     (ItAccessStandard)                                                       |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 3     (user defined)                                                           |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 0                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0x4860E101FE7F0000                                                             |

|    pgHook       = 0x0000000000000000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 127   (0x7F000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 0     (0x00000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 4     (0x04000000)                                                             |

|    lineAlloc    = 4     (0x04000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 1     (0x01000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|    200#########O1########CUSUS####   30 8001042663                                     |

|    33305118DE204305118DEC455550000222332333333333322222222222222222222222222222222222222222222222|

|    200061E23B40F1061E23B4353530000000300800104266300000000000000000000000000000000000000000000000|

|    0005A3EFDD10005A3EFDD1000000000000000000000000000000000000000000000000000000000000000000000000|

|    0000CD6A94A0000CD6A91A000000000000000000000000000000000000000000000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBD4241A00004F003100005056AC113D1EE682FAD3D9EBD1C41A430055|

|LT_CORPAR_HT                                                                                      |

|    Table IT_195[13x342]                                                                          |

|    \FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_CORPAR_HT                                       |

|    Table reference: 84                                                                           |

|    TABH+  0(20) = 38CBE301FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 54000000C30000000D00000056010000FFFFFFFF                                       |

|    TABH+ 40(16) = 04700000409F14000D00A425C0000000                                               |

|    store        = 0x38CBE301FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 84    (0x54000000)                                                             |

|    label        = 195   (0xC3000000)                                                             |

|    fill         = 13    (0x0D000000)                                                             |

|    leng         = 342   (0x56010000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#002167                                                                    |

|    occu         = 13    (0x0D000000)                                                             |

|    accKind      = 4     (ItAccessHashed)                                                         |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 1     (ItUniYes)                                                               |

|    keyKind      = 3     (user defined)                                                           |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 0                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0xB8F2E301FE7F0000                                                             |

|    pgHook       = 0x0000000000000000                                                             |

|    idxPtr       = 0xA8CBE301FE7F0000                                                             |

|    id           = 134   (0x86000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 0     (0x00000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 13    (0x0D000000)                                                             |

|    lineAlloc    = 13    (0x0D000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 1     (0x01000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|                                                                                                  |

|    200########O1########LF      ########0000072192MX 0000090689                  >|

|    33305118DE64305118DEC442222220511ACCF333333333345233333333332222222222222222222222333332222222|

|    200061E23B4F1061E23B4C6000000061E028D0000072192D8000000906890000000000000000000000000000000000|

|    0005A3EFDD1005A3EFDD1000000005A3EBF90000000000000000000000000000000000000000000000000000000000|

|    0000CD6A92A000CD6A91A000000000CD26D1B000000000000000000000000000000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBD2641A4F003100005056AC113D1EE682FAD3D9EBD1C41A4C00460020|

|                                                                                                  |

|    200########O1########WL      ########0000072192MX 0000090689                  >|

|    33305118DE84305118DEC542222220511ACCF333333333345233333333332222222222222222222222333332222222|

|    200061E23B4F1061E23B47C000000061E028D0000072192D8000000906890000000000000000000000000000000000|

|    0005A3EFDD1005A3EFDD1000000005A3EBF90000000000000000000000000000000000000000000000000000000000|

|    0000CD6A92A000CD6A91A000000000CD26D1B000000000000000000000000000000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBD2841A4F003100005056AC113D1EE682FAD3D9EBD1C41A57004C0020|

|                                                                                                  |

|    200########O1########CUSVBS  ########LU_US_0312US 0000011038                 >|

|    33305118DEA4305118DEC455545220511975C455555333355233333333332222222222222222222222333332222222|

|    200061E23B4F1061E23B435362300061EF87BC5F53F031253000000110380000000000000000000000000000000000|

|    0005A3EFDD1005A3EFDD1000000005A3E8E93000000000000000000000000000000000000000000000000000000000|

|    0000CD6A92A000CD6A91A000000000CD2C692000000000000000000000000000000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBD2A41A4F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|                                                                                                  |

|    200########O1########CUSANM  ########FTO_US0120US 0000010975  264123395       >|

|    33305118DD84305118DEC45544422051197DC454555333355233333333332233333333322222222222333332222222|

|    200061E2364F1061E23B43531ED00061EF41B64FF53012053000000109750026412339500000000000000000000000|

|    0005A3EFE11005A3EFDD1000000005A3E88D2000000000000000000000000000000000000000000000000000000000|

|    0000CD6A02A000CD6A91A000000000CD2C08F000000000000000000000000000000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAD3E0D612841A4F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|                                                                                                  |

|    200########O1########CUSEMP  ########FTO_US0120US 0000010975  264123395       >|

|    33305118DDA4305118DEC45544522051197DC454555333355233333333332233333333322222222222333332222222|

|    200061E2364F1061E23B43535D000061EF41B64FF53012053000000109750026412339500000000000000000000000|

|    0005A3EFE11005A3EFDD1000000005A3E88D2000000000000000000000000000000000000000000000000000000000|

|    0000CD6A02A000CD6A91A000000000CD2C08F000000000000000000000000000000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAD3E0D612A41A4F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|LT_LEGCOM_ST                                                                                      |

|    Table[initial]                                                                                |

|                                                                                                  |

|LT_LEGCOM                                                                                         |

|    Table IT_181[1x232]                                                                           |

|    \FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_LEGCOM                                          |

|    Table reference: 75                                                                           |

|    TABH+  0(20) = A8BFE101FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 4B000000B500000001000000E8000000FFFFFFFF                                       |

|    TABH+ 40(16) = 04700000709914000400C125C0000000                                               |

|    store        = 0xA8BFE101FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 75    (0x4B000000)                                                             |

|    label        = 181   (0xB5000000)                                                             |

|    fill         = 1     (0x01000000)                                                             |

|    leng         = 232   (0xE8000000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#002136                                                                    |

|    occu         = 4     (0x04000000)                                                             |

|    accKind      = 1     (ItAccessStandard)                                                       |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 3     (user defined)                                                           |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 0                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0x905CE101FE7F0000                                                             |

|    pgHook       = 0x0000000000000000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 125   (0x7D000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 0     (0x00000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 4     (0x04000000)                                                             |

|    lineAlloc    = 4     (0x04000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 1     (0x01000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|    200#########O1########ZREGNR231-1519977-5                             O########|

|    3330511877A04305118DEC554445333233333332322222222222222222222222222222405118DEC222222222222222|

|    200061E2FD50F1061E23B4A257E2231D1519977D500000000000000000000000000000F061E23B4000000000000000|

|    0005A3EF81B0005A3EFDD100000000000000000000000000000000000000000000000005A3EFDD1000000000000000|

|    0000CD6EB600000CD6A91A00000000000000000000000000000000000000000000000000CD6A91A000000000000000|

|    320030003000005056AC113D1EE682FE7F8B7D16A5B000004F003100005056AC113D1EE682FAD3D9EBD1C41A5A0052|

|LT_CUIT_ST                                                                                        |

|    Table[initial]                                                                                |

|                                                                                                  |

|LT_CUIT                                                                                           |

|    Table IT_173[17x1272]                                                                         |

|    \FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_CUIT                                            |

|    Table reference: 79                                                                           |

|    TABH+  0(20) = B8CCE001FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 4F000000AD00000011000000F8040000FFFFFFFF                                       |

|    TABH+ 40(16) = 04700000609714000400C125C8000000                                               |

|    store        = 0xB8CCE001FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 79    (0x4F000000)                                                             |

|    label        = 173   (0xAD000000)                                                             |

|    fill         = 17    (0x11000000)                                                             |

|    leng         = 1272  (0xF8040000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#002125                                                                    |

|    occu         = 4     (0x04000000)                                                             |

|    accKind      = 1     (ItAccessStandard)                                                       |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 3     (user defined)                                                           |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 1                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0x6883E101FE7F0000                                                             |

|    pgHook       = 0x28CDE001FE7F0000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 121   (0x79000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 0     (0x00000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 28    (0x1C000000)                                                             |

|    lineAlloc    = 20    (0x14000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 1     (0x01000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|                                                                                                  |

|    200#################0000000001JLBERNAL    ####JLBERNAL    ######CLPOS ####>|

|    33305118DE4005118DEC333333333344445444222206654444544422220669004454520511975C5555245255222222|

|    200061E23B40061E23B40000000001AC252E1C00002010AC252E1C00002010003C0F30061EF87B88530D8053000000|

|    0005A3EFDD105A3EFDD1000000000000000000000004790000000000000478000000005A3E8E930000000000000000|

|    0000CD6A94A00CD6A91A0000000000000000000000124C000000000000124C000000000CD2C6920000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBD4441A0000005056AC113D1EE682FAD3D9EBD1C41A30003000300030|

|                                                                                                  |

|    200#################0000000002JLBERNAL    ####JLBERNAL    ######CLPOS ####> |

|    33305118DE4005118DEC333333333344445444222206654444544422220669004454520511975C5555245255222222|

|    200061E23B40061E23B40000000002AC252E1C00002010AC252E1C00002010003C0F30061EF87B88530D8053000000|

|    0005A3EFDD105A3EFDD1000000000000000000000004790000000000000478000000005A3E8E930000000000000000|

|    0000CD6A97A00CD6A91A0000000000000000000000124C000000000000124C000000000CD2C6920000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBD7441A0000005056AC113D1EE682FAD3D9EBD1C41A30003000300030|

|                                                                                                  |

|    200#################0000000003JLBERNAL    ####JLBERNAL    ######CLPOS ####> |

|    33305118DE4005118DEC333333333344445444222206654444544422220669004454520511975C5555245255222222|

|    200061E23B40061E23B40000000003AC252E1C00002010AC252E1C00002010003C0F30061EF87B88530D8053000000|

|    0005A3EFDD105A3EFDD1000000000000000000000004790000000000000478000000005A3E8E930000000000000000|

|    0000CD6A9AA00CD6A91A0000000000000000000000124C000000000000124C000000000CD2C6920000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBDA441A0000005056AC113D1EE682FAD3D9EBD1C41A30003000300030|

|                                                                                                  |

|    200#################0000000004JLBERNAL    ####JLBERNAL    ######CLPOS ####> |

|    33305118DE4005118DEC333333333344445444222206654444544422220669004454520511975C5555245255222222|

|    200061E23B40061E23B40000000004AC252E1C00002010AC252E1C00002010003C0F30061EF87B88530D8053000000|

|    0005A3EFDD105A3EFDD1000000000000000000000004790000000000000478000000005A3E8E930000000000000000|

|    0000CD6A9DA00CD6A91A0000000000000000000000124C000000000000124C000000000CD2C6920000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBDD441A0000005056AC113D1EE682FAD3D9EBD1C41A30003000300030|

|                                                                                                  |

|    200#################0000000005JLBERNAL    ####JLBERNAL    ######CLPOS ####> |

|    33305118DE4005118DEC333333333344445444222206654444544422220669004454520511975C5555245255222222|

|    200061E23B40061E23B40000000005AC252E1C00002010AC252E1C00002010003C0F30061EF87B88530D8053000000|

|    0005A3EFDE105A3EFDD1000000000000000000000004790000000000000478000000005A3E8E930000000000000000|

|    0000CD6A90A00CD6A91A0000000000000000000000124C000000000000124C000000000CD2C6920000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBE0441A0000005056AC113D1EE682FAD3D9EBD1C41A30003000300030|

|LT_LEGMES_ST                                                                                      |

|    Table[initial]                                                                                |

|                                                                                                  |

|LT_LEGMES                                                                                         |

|    Table IT_183[3x684]                                                                           |

|    \FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_LEGMES                                          |

|    Table reference: 74                                                                           |

|    TABH+  0(20) = 18C0E101FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 4A000000B700000003000000AC020000FFFFFFFF                                       |

|    TABH+ 40(16) = 04700000D09914000400C125C0000000                                               |

|    store        = 0x18C0E101FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 74    (0x4A000000)                                                             |

|    label        = 183   (0xB7000000)                                                             |

|    fill         = 3     (0x03000000)                                                             |

|    leng         = 684   (0xAC020000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#002138                                                                    |

|    occu         = 4     (0x04000000)                                                             |

|    accKind      = 1     (ItAccessStandard)                                                       |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 3     (user defined)                                                           |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 0                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0x30BBE301FE7F0000                                                             |

|    pgHook       = 0x0000000000000000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 126   (0x7E000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 0     (0x00000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 4     (0x04000000)                                                             |

|    lineAlloc    = 4     (0x04000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 1     (0x01000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|                                                                                                  |

|    200########O1########CUSUSCUSIMZRLF ZBKI 00011########O########A1        |

|    33305118E344305118DEC455554554455442544423333305118EE4405118DEC4322222222222222222222222222222|

|    200061E2594F1061E23B4353533539DA2C60A2B9000011061E2384F061E23B41100000000000000000000000000000|

|    0005A3EF0C2005A3EFDD100000000000000000000000005A3EFFA205A3EFDD10000000000000000000000000000000|

|    0000CD6A573000CD6A91A00000000000000000000000000CD6A9F300CD6A91A0000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAE50539C744234F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|                                                                                                  |

|    200########O1########CUSUSCUSIMZRLF M401000021########O########A /SAPSLL/CU>|

|    33305118E304305118DEC455554554455442433333333305118DD2405118DEC4225455442455544422222222222222|

|    200061E2544F1061E23B4353533539DA2C60D401000021061E2364F061E23B410F3103CCF353F12900000000000000|

|    0005A3EF922005A3EFDD100000000000000000000000005A3EFE2105A3EFDD10000000000000000000000000000000|

|    0000CD6A423000CD6A91A00000000000000000000000000CD6A00A00CD6A91A0000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAE594342204234F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|                                                                                                  |

|    200########O1########CUSUSCUSIMZRLF ZI85700031########O########P /SAPSLL/CUS_I>|

|    3330511877E4305118DEC455554554455442543333333300000000405118DEC5225455442455544445442222222222|

|    200061E2FD5F1061E23B4353533539DA2C60A98570003100000000F061E23B400F3103CCF353F9E2F5E40000000000|

|    0005A3EF81B005A3EFDD100000000000000000000000000000000005A3EFDD10000000000000000000000000000000|

|    0000CD6EB60000CD6A91A00000000000000000000000000000000000CD6A91A0000000000000000000000000000000|

|    320030003000005056AC113D1EE682FE7F8B7D16E5B04F003100005056AC113D1EE682FAD3D9EBD1C41A4300550053|

|LT_CUHDSTA_HT                                                                                     |

|    Table[initial]                                                                                |

|                                                                                                  |

|LT_CUHDSTA                                                                                        |

|    Table IT_187[1x192]                                                                           |

|    \FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_CUHDSTA                                         |

|    Table reference: 71                                                                           |

|    TABH+  0(20) = F8C0E101FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 47000000BB00000001000000C0000000FFFFFFFF                                       |

|    TABH+ 40(16) = 04700000509814000400C125C0000000                                               |

|    store        = 0xF8C0E101FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 71    (0x47000000)                                                             |

|    label        = 187   (0xBB000000)                                                             |

|    fill         = 1     (0x01000000)                                                             |

|    leng         = 192   (0xC0000000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#002130                                                                    |

|    occu         = 4     (0x04000000)                                                             |

|    accKind      = 1     (ItAccessStandard)                                                       |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 3     (user defined)                                                           |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 0                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0x6072E101FE7F0000                                                             |

|    pgHook       = 0x0000000000000000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 128   (0x80000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 0     (0x00000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 4     (0x04000000)                                                             |

|    lineAlloc    = 4     (0x04000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 1     (0x01000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|    200########O1########2A0A     110A  0A  0A0A0A0A0                             11 0A>|

|    33305118DEE4305118DEC343422222333422342234343434322222222222222222222222222222332343434405118D|

|    200061E23B4F1061E23B4210100000110100010001010101000000000000000000000000000000110010101F061E23|

|    0005A3EFDD1005A3EFDD100000000000000000000000000000000000000000000000000000000000000000005A3EFD|

|    0000CD6A91A000CD6A91A00000000000000000000000000000000000000000000000000000000000000000000CD6A9|

|    320030003000005056AC113D1EE682FAD3D9EBD1E41A4F003100005056AC113D1EE682FAD3D9EBD1C41A3200410030|

|LT_CORREF_ST                                                                                      |

|    Table[initial]                                                                                |

|                                                                                                  |

|LT_CORREF                                                                                         |

|    Table IT_191[1x288]                                                                           |

|    \FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_CORREF                                          |

|    Table reference: 82                                                                           |

|    TABH+  0(20) = C858E101FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 52000000BF0000000100000020010000FFFFFFFF                                       |

|    TABH+ 40(16) = 04700000B09814000400C125C0000000                                               |

|    store        = 0xC858E101FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 82    (0x52000000)                                                             |

|    label        = 191   (0xBF000000)                                                             |

|    fill         = 1     (0x01000000)                                                             |

|    leng         = 288   (0x20010000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#002132                                                                    |

|    occu         = 4     (0x04000000)                                                             |

|    accKind      = 1     (ItAccessStandard)                                                       |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 3     (user defined)                                                           |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 0                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0x20EEE301FE7F0000                                                             |

|    pgHook       = 0x0000000000000000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 130   (0x82000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 0     (0x00000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 4     (0x04000000)                                                             |

|    lineAlloc    = 4     (0x04000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 1     (0x01000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|    200########O1########EXTID 0000000000000000000000000000001800031406MM0B      O##> |

|    33305118DEC4305118DEC45544233333333333333333333333333333333333333334434222222405118DEC33333333|

|    200061E23B4F1061E23B45849400000000000000000000000000000001800031406DD02000000F061E23B400000000|

|    0005A3EFDD1005A3EFDD10000000000000000000000000000000000000000000000000000000005A3EFDD100000000|

|    0000CD6A92A000CD6A91A0000000000000000000000000000000000000000000000000000000000CD6A91A00000000|

|    320030003000005056AC113D1EE682FAD3D9EBD2C41A4F003100005056AC113D1EE682FAD3D9EBD1C41A4500580054|

|LT_CUHD                                                                                           |

|    Table IT_167[1x680]                                                                           |

|    \FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_CUHD                                            |

|    Table reference: 81                                                                           |

|    TABH+  0(20) = 0061CA01FE7F00007061CA01FE7F000000000000                                       |

|    TABH+ 20(20) = 51000000A700000001000000A8020000FFFFFFFF                                       |

|    TABH+ 40(16) = 04700000309714000400C125C8000000                                               |

|    store        = 0x0061CA01FE7F0000                                                             |

|    ext1         = 0x7061CA01FE7F0000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 81    (0x51000000)                                                             |

|    label        = 167   (0xA7000000)                                                             |

|    fill         = 1     (0x01000000)                                                             |

|    leng         = 680   (0xA8020000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#002124                                                                    |

|    occu         = 4     (0x04000000)                                                             |

|    accKind      = 1     (ItAccessStandard)                                                       |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 3     (user defined)                                                           |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 1                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0xB078E101FE7F0000                                                             |

|    pgHook       = 0x0000000000000000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 118   (0x76000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 0     (0x00000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 4     (0x04000000)                                                             |

|    lineAlloc    = 4     (0x04000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 1     (0x01000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|    ----- 1st level extension part --------                                                       |

|    regHook      = 0x98CDE001FE7F0000                                                             |

|    collHook     = 0x0000000000000000                                                             |

|    ext2         = 0x0000000000000000                                                             |

|    200#########80010426632016JLBERNAL    ####AMSBATCH    ##########     #######     ##>|

|    33305118DEC03333333333333344445444222206654454454422220665000000222220000000222220000000222220|

|    200061E23B4080010426632016AC252E1C000020101D32143800002022000000000000000000000000000000000000|

|    0005A3EFDD100000000000000000000000000004790000000000000413000000000000000000000000000000000000|

|    0000CD6A91A000000000000000000000000000124C000000000000121C000000000000000000000000000000000000|

|    320030003000005056AC113D1EE682FAD3D9EBD1C41A00003800300030003100300034003200360036003300320030|

|<LS_CUHD>                                                                                         |

|    ???                                                                                           |

|    ??????                                                                                        |

|    ??????                                                                                        |

|    ????????????                                                                                  |

|GC_PAPDP                                                                                          |

|    XAP                                                                                           |

|    545                                                                                           |

|    810                                                                                           |

|    000                                                                                           |

|    000                                                                                           |

|    580041005000                                                                                  |

----------------------------------------------------------------------------------------------------

|No.       2 Ty.          FORM                                                                     |

|Name  SELECT_SHIPMENTS                                                                            |

----------------------------------------------------------------------------------------------------

|LS_CUHD_CRIT-CUHDSTA-PROST                                                                        |

|    Table IT_112[6x14]                                                                            |

|    \PROGRAM=/SAPSLL/CULO_DISPLAY_CUS_IMP\FORM=SELECT_SHIPMENTS\DATA=LS_CUHD_CRIT-CUHDSTA-PROST   |

|    Table reference: 49                                                                           |

|    TABH+  0(20) = F0F6CF01FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 3100000070000000060000000E000000FFFFFFFF                                       |

|    TABH+ 40(16) = 04000000600A0F000400C124C8000000                                               |

|    store        = 0xF0F6CF01FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 49    (0x31000000)                                                             |

|    label        = 112   (0x70000000)                                                             |

|    fill         = 6     (0x06000000)                                                             |

|    leng         = 14    (0x0E000000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#000984                                                                    |

|    occu         = 4     (0x04000000)                                                             |

|    accKind      = 1     (ItAccessStandard)                                                       |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 1     (default)                                                                |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 1                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0x60F7CF01FE7F0000                                                             |

|    pgHook       = 0xB0F7CF01FE7F0000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 81    (0x51000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 1     (0x01000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 1020  (0xFC030000)                                                             |

|    lineAlloc    = 12    (0x0C000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 2     (0x02000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|                                                                                                  |

|    IEQ0A                                                                                         |

|    4453422                                                                                       |

|    9510100                                                                                       |

|    0000000                                                                                       |

|    0000000                                                                                       |

|    4900450051003000410020002000                                                                  |

|                                                                                                  |

|    IEQ1A                                                                                         |

|    4453422                                                                                       |

|    9511100                                                                                       |

|    0000000                                                                                       |

|    0000000                                                                                       |

|    4900450051003100410020002000                                                                  |

|                                                                                                  |

|    IEQ2A                                                                                         |

|    4453422                                                                                       |

|    9512100                                                                                       |

|    0000000                                                                                       |

|    0000000                                                                                       |

|    4900450051003200410020002000                                                                  |

|                                                                                                  |

|    IEQ3A                                                                                         |

|    4453422                                                                                       |

|    9513100                                                                                       |

|    0000000                                                                                       |

|    0000000                                                                                       |

|    4900450051003300410020002000                                                                  |

|                                                                                                  |

|    IEQ4A                                                                                         |

|    4453422                                                                                       |

|    9514100                                                                                       |

|    0000000                                                                                       |

|    0000000                                                                                       |

|    4900450051003400410020002000                                                                  |

|SCREEN                                                                                            |

|    %_17SNS0008226594_%_%_%_%_%_%_                                                                |

|    2533545333333333352525252525252222222222222222222222222222222222222222222222222222222222222222|

|    5F173E30008226594F5F5F5F5F5F5F0000000000000000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    25005F003100370053004E00530030003000300038003200320036003500390034005F0025005F0025005F0025005F|

|SY-REPID                                                                                          |

|    /SAPSLL/CULO_DISPLAY_CUS_IMP                                                                  |

|    2545544245445445544554555445222222222222                                                      |

|    F3103CCF35CFF4930C19F353F9D0000000000000                                                      |

|    0000000000000000000000000000000000000000                                                      |

|    0000000000000000000000000000000000000000                                                      |

|    2F0053004100500053004C004C002F00430055004C004F005F0044004900530050004C00410059005F004300550053|

|GC_PROCESSING_STATUS-RESTRICT_AUTHORITY                                                           |

|    3A                                                                                            |

|    34                                                                                            |

|    31                                                                                            |

|    00                                                                                            |

|    00                                                                                            |

|    33004100                                                                                      |

|GC_PROCESSING_STATUS-CANCEL_REQUEST                                                               |

|    4A                                                                                            |

|    34                                                                                            |

|    41                                                                                            |

|    00                                                                                            |

|    00                                                                                            |

|    34004100                                                                                      |

|GC_PROCESSING_STATUS-CANCELED                                                                     |

|    4B                                                                                            |

|    34                                                                                            |

|    42                                                                                            |

|    00                                                                                            |

|    00                                                                                            |

|    34004200                                                                                      |

|GC_FILETY                                                                                         |

|    ########                                                                                    |

|    41004110                                                                                      |

|    41004180                                                                                      |

|    B100B100                                                                                      |

|    00000000                                                                                      |

|    44B011100000000044B0111018000000                                                              |

|LS_CUHD_CRIT                                                                                      |

|    Ð#/#####Ñ#####################################################################################|

|    D02000FFD00000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00|

|    00F000FF10E000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00|

|    000000FF000000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00|

|    000000FF000000FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00|

|    D00000002F00000000000000FFFFFFFFD10000000E00000000000000FFFFFFFF00000000FFFFFFFF00000000FFFFFF|

|GC_MSGTY                                                                                          |

|    ESIWAX                                                                                        |

|    454545                                                                                        |

|    539718                                                                                        |

|    000000                                                                                        |

|    000000                                                                                        |

|    450053004900570041005800                                                                      |

|GS_DEBUG                                                                                          |

|    GTP     200                                                                                   |

|    455222223332222222                                                                            |

|    740000002000000000                                                                            |

|    000000000000000000                                                                            |

|    000000000000000000                                                                            |

|    470054005000200020002000200020003200300030002000200020002000200020002000                      |

|GT_VALUES                                                                                         |

|    Table IT_64[4x240]                                                                            |

|    \PROGRAM=/SAPSLL/CULO_DISPLAY_CUS_IMP\DATA=GT_VALUES                                          |

|    Table reference: 25                                                                           |

|    TABH+  0(20) = 786FCA01FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 190000004000000004000000F0000000FFFFFFFF                                       |

|    TABH+ 40(16) = 0400000060590E000400C124C8000000                                               |

|    store        = 0x786FCA01FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 25    (0x19000000)                                                             |

|    label        = 64    (0x40000000)                                                             |

|    fill         = 4     (0x04000000)                                                             |

|    leng         = 240   (0xF0000000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#000040                                                                    |

|    occu         = 4     (0x04000000)                                                             |

|    accKind      = 1     (ItAccessStandard)                                                       |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 1     (default)                                                                |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 1                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0x4070CA01FE7F0000                                                             |

|    pgHook       = 0x0000000000000000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 52    (0x34000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 1     (0x01000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 4     (0x04000000)                                                             |

|    lineAlloc    = 4     (0x04000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 2     (0x02000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|                                                                                                  |

|    06                                      Free Circulation                                      |

|    3322222222222222222222222222222222222222476624676766766622222222222222222222222222222222222222|

|    06000000000000000000000000000000000000006255039235C149FE00000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    3000360020002000200020002000200020002000200020002000200020002000200020002000200020002000200020|

|                                                                                                  |

|    08                                      Customs Warehouse                                     |

|    3322222222222222222222222222222222222222477766725676667762222222222222222222222222222222222222|

|    08000000000000000000000000000000000000003534FD3071258F5350000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    3000380020002000200020002000200020002000200020002000200020002000200020002000200020002000200020|

|                                                                                                  |

|    09                                      Inward Processing                                     |

|    3322222222222222222222222222222222222222467676257666776662222222222222222222222222222222222222|

|    09000000000000000000000000000000000000009E7124002F35339E70000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    3000390020002000200020002000200020002000200020002000200020002000200020002000200020002000200020|

|                                                                                                  |

|    10                                      Processing under Customs Control                      |

|    3322222222222222222222222222222222222222576667766627666724777667246677662222222222222222222222|

|    100000000000000000000000000000000000000002F35339E705E45203534FD303FE42FC0000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    3100300020002000200020002000200020002000200020002000200020002000200020002000200020002000200020|

|IV_REPID                                                                                          |

|    /SAPSLL/CULO_DISPLAY_CUS_IMP                                                                  |

|    2545544245445445544554555445222222222222                                                      |

|    F3103CCF35CFF4930C19F353F9D0000000000000                                                      |

|    0000000000000000000000000000000000000000                                                      |

|    0000000000000000000000000000000000000000                                                      |

|    2F0053004100500053004C004C002F00430055004C004F005F0044004900530050004C00410059005F004300550053|

|GC_MSGID                                                                                          |

|    /SAPSLL/API_INBOUND /SAPSLL/CON_CORE    /SAPSLL/CON_EMB     /SAPSLL/CON_LDET    /SAPSLL/CON_LM|

|    2545544245454444544225455442444544542222254554424445444222222545544244454445222225455442444544|

|    F3103CCF109F9E2F5E40F3103CCF3FEF3F250000F3103CCF3FEF5D200000F3103CCF3FEFC4540000F3103CCF3FEFCD|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    2F0053004100500053004C004C002F004100500049005F0049004E0042004F0055004E00440020002F005300410050|

|IV_CULOP                                                                                          |

|    X                                                                                             |

|    5                                                                                             |

|    8                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    5800                                                                                          |

|GV_BUSOBJ                                                                                         |

|    BUS2015                                                                                       |

|    4553333222                                                                                    |

|    2532015000                                                                                    |

|    0000000000                                                                                    |

|    0000000000                                                                                    |

|    4200550053003200300031003500200020002000                                                      |

|IV_SRVLL                                                                                          |

|    LECCUS                                                                                        |

|    444455                                                                                        |

|    C53353                                                                                        |

|    000000                                                                                        |

|    000000                                                                                        |

|    4C0045004300430055005300                                                                      |

|RSJOBINFO                                                                                         |

|                                    00000000000000                                  ##            |

|    2222222222222222222222222222222233333333333333222222222222222222222222222222222200            |

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000            |

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000            |

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000            |

|    2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020|

|GC_PROBCLASS                                                                                      |

|    1234                                                                                          |

|    33332                                                                                         |

|    12340                                                                                         |

|    00000                                                                                         |

|    00000                                                                                         |

|    31003200330034002000                                                                          |

|CT_HEADER                                                                                         |

|    Table[initial]                                                                                |

|                                                                                                  |

|GC_DETLEVEL                                                                                       |

|    123456789                                                                                     |

|    333333333                                                                                     |

|    123456789                                                                                     |

|    000000000                                                                                     |

|    000000000                                                                                     |

|    310032003300340035003600370038003900                                                          |

|CT_ITEM                                                                                           |

|    Table[initial]                                                                                |

|                                                                                                  |

|GC_BALPAR                                                                                         |

|    STATUS    VALUE     CURRC     DIMEN     DIMUM     DATAB     CUHD      FTORG     FTVBS     PRVS|

|    5545552222544542222245554222224444422222444542222244544222224544222222454542222245545222225555|

|    341453000061C5500000352230000049D5E0000049D5D000004141200000358400000064F270000064623000000263|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    5300540041005400550053002000200020002000560041004C00550045002000200020002000200043005500520052|

|%_DUMMY$$                                                                                         |

|                                                                                                  |

|    2222                                                                                          |

|    0000                                                                                          |

|    0000                                                                                          |

|    0000                                                                                          |

|    2000200020002000                                                                              |

|GC_GROUP                                                                                          |

|    TABLE                         UPDFL                                                           |

|    544442222222222222222222222222554442222222222222222222222222                                  |

|    412C500000000000000000000000005046C0000000000000000000000000                                  |

|    000000000000000000000000000000000000000000000000000000000000                                  |

|    000000000000000000000000000000000000000000000000000000000000                                  |

|    5400410042004C00450020002000200020002000200020002000200020002000200020002000200020002000200020|

|SY-LDBPG                                                                                          |

|    SAPDB__S                                                                                      |

|    5454455522222222222222222222222222222222                                                      |

|    31042FF300000000000000000000000000000000                                                      |

|    0000000000000000000000000000000000000000                                                      |

|    0000000000000000000000000000000000000000                                                      |

|    530041005000440042005F005F00530020002000200020002000200020002000200020002000200020002000200020|

|SYST-REPID                                                                                        |

|    /SAPSLL/CULO_DISPLAY_CUS_IMP                                                                  |

|    2545544245445445544554555445222222222222                                                      |

|    F3103CCF35CFF4930C19F353F9D0000000000000                                                      |

|    0000000000000000000000000000000000000000                                                      |

|    0000000000000000000000000000000000000000                                                      |

|    2F0053004100500053004C004C002F00430055004C004F005F0044004900530050004C00410059005F004300550053|

----------------------------------------------------------------------------------------------------

|No.       1 Ty.          EVENT                                                                    |

|Name  START-OF-SELECTION                                                                          |

----------------------------------------------------------------------------------------------------

|S_ERNVS[]                                                                                         |

|    Table[initial]                                                                                |

|                                                                                                  |

|S_AENVS[]                                                                                         |

|    Table[initial]                                                                                |

|                                                                                                  |

|LR_PRDES                                                                                          |

|    Table IT_104[5x14]                                                                            |

|    \PROGRAM=/SAPSLL/CULO_DISPLAY_CUS_IMP\DATA=LR_PRDES                                           |

|    Table reference: 16                                                                           |

|    TABH+  0(20) = C06BC701FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 1000000068000000050000000E000000FFFFFFFF                                       |

|    TABH+ 40(16) = 0400000000590E000400C124C8000000                                               |

|    store        = 0xC06BC701FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 16    (0x10000000)                                                             |

|    label        = 104   (0x68000000)                                                             |

|    fill         = 5     (0x05000000)                                                             |

|    leng         = 14    (0x0E000000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#000038                                                                    |

|    occu         = 4     (0x04000000)                                                             |

|    accKind      = 1     (ItAccessStandard)                                                       |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 1     (default)                                                                |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 1                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0x306CC701FE7F0000                                                             |

|    pgHook       = 0xA05BCA01FE7F0000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 77    (0x4D000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 2     (0x02000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 1020  (0xFC030000)                                                             |

|    lineAlloc    = 12    (0x0C000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 3     (0x03000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|                                                                                                  |

|    IEQ06                                                                                         |

|    4453322                                                                                       |

|    9510600                                                                                       |

|    0000000                                                                                       |

|    0000000                                                                                       |

|    4900450051003000360020002000                                                                  |

|                                                                                                  |

|    IEQ08                                                                                         |

|    4453322                                                                                       |

|    9510800                                                                                       |

|    0000000                                                                                       |

|    0000000                                                                                       |

|    4900450051003000380020002000                                                                  |

|                                                                                                  |

|    IEQ09                                                                                         |

|    4453322                                                                                       |

|    9510900                                                                                       |

|    0000000                                                                                       |

|    0000000                                                                                       |

|    4900450051003000390020002000                                                                  |

|                                                                                                  |

|    IEQ10                                                                                         |

|    4453322                                                                                       |

|    9511000                                                                                       |

|    0000000                                                                                       |

|    0000000                                                                                       |

|    4900450051003100300020002000                                                                  |

|                                                                                                  |

|    IEQ                                                                                           |

|    4452222                                                                                       |

|    9510000                                                                                       |

|    0000000                                                                                       |

|    0000000                                                                                       |

|    4900450051002000200020002000                                                                  |

|P_CULOP                                                                                           |

|    X                                                                                             |

|    5                                                                                             |

|    8                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    5800                                                                                          |

|GC_SERVICES-CUSTOMS                                                                               |

|    LECCUS                                                                                        |

|    444455                                                                                        |

|    C53353                                                                                        |

|    000000                                                                                        |

|    000000                                                                                        |

|    4C0045004300430055005300                                                                      |

|P_TODAY                                                                                           |

|                                                                                                  |

|    2                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    2000                                                                                          |

|P_CWEEK                                                                                           |

|                                                                                                  |

|    2                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    2000                                                                                          |

|P_WEEK                                                                                            |

|                                                                                                  |

|    2                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    2000                                                                                          |

|P_OTHER                                                                                           |

|    X                                                                                             |

|    5                                                                                             |

|    8                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    5800                                                                                          |

|S_DATE[]                                                                                          |

|    Table[initial]                                                                                |

|                                                                                                  |

|P_CTYDP                                                                                           |

|                                                                                                  |

|    222                                                                                           |

|    000                                                                                           |

|    000                                                                                           |

|    000                                                                                           |

|    200020002000                                                                                  |

|GV_CTYAR_DUMMY                                                                                    |

|                                                                                                  |

|    222                                                                                           |

|    000                                                                                           |

|    000                                                                                           |

|    000                                                                                           |

|    200020002000                                                                                  |

|P_EMCAS                                                                                           |

|                                                                                                  |

|    2                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    2000                                                                                          |

|LT_CORPAR_CRIT                                                                                    |

|    ################################################################################              |

|    00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF              |

|    00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF              |

|    00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF              |

|    00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF              |

|    00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFF|

|GC_REPID-DISPLAY_CUS_IMP                                                                          |

|    /SAPSLL/CULO_DISPLAY_CUS_IMP                                                                  |

|    2545544245445445544554555445222222222222                                                      |

|    F3103CCF35CFF4930C19F353F9D0000000000000                                                      |

|    0000000000000000000000000000000000000000                                                      |

|    0000000000000000000000000000000000000000                                                      |

|    2F0053004100500053004C004C002F00430055004C004F005F0044004900530050004C00410059005F004300550053|

|S_CUPRO[]                                                                                         |

|    Table[initial]                                                                                |

|                                                                                                  |

|P_CULOF                                                                                           |

|                                                                                                  |

|    2                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    2000                                                                                          |

|LR_CDTYP                                                                                          |

|    Table IT_105[1x10]                                                                            |

|    \PROGRAM=/SAPSLL/CULO_DISPLAY_CUS_IMP\DATA=LR_CDTYP                                           |

|    Table reference: 15                                                                           |

|    TABH+  0(20) = 985CCA01FE7F0000000000000000000000000000                                       |

|    TABH+ 20(20) = 0F00000069000000010000000A000000FFFFFFFF                                       |

|    TABH+ 40(16) = 04000000C0650E000400C124C8000000                                               |

|    store        = 0x985CCA01FE7F0000                                                             |

|    ext1         = 0x0000000000000000                                                             |

|    shmId        = 0     (0x00000000)                                                             |

|    id           = 15    (0x0F000000)                                                             |

|    label        = 105   (0x69000000)                                                             |

|    fill         = 1     (0x01000000)                                                             |

|    leng         = 10    (0x0A000000)                                                             |

|    loop         = -1    (0xFFFFFFFF)                                                             |

|    xtyp         = TYPE#000106                                                                    |

|    occu         = 4     (0x04000000)                                                             |

|    accKind      = 1     (ItAccessStandard)                                                       |

|    idxKind      = 0     (ItIndexNone)                                                            |

|    uniKind      = 2     (ItUniNo)                                                                |

|    keyKind      = 1     (default)                                                                |

|    cmpMode      = 2     (cmpSingleMcmpR)                                                         |

|    occu0        = 1                                                                              |

|    stMode       = 0                                                                              |

|    groupCntl    = 0                                                                              |

|    rfc          = 0                                                                              |

|    unShareable  = 0                                                                              |

|    mightBeShared = 1                                                                             |

|    sharedWithShmTab = 0                                                                          |

|    isShmLockId  = 0                                                                              |

|    isUsed       = 1                                                                              |

|    isCtfyAble   = 1                                                                              |

|    hasScndKeys  = 0                                                                              |

|    hasRowId     = 0                                                                              |

|    scndKeysOutdated = 0                                                                          |

|    scndUniKeysOutdated = 0                                                                       |

|    ----- Shareable Table Header Data -----                                                       |

|    tabi         = 0x806CC701FE7F0000                                                             |

|    pgHook       = 0x0000000000000000                                                             |

|    idxPtr       = 0x0000000000000000                                                             |

|    id           = 78    (0x4E000000)                                                             |

|    shmTabhSet   = 0x0000000000000000                                                             |

|    refCount     = 2     (0x02000000)                                                             |

|    tstRefCount  = 0     (0x00000000)                                                             |

|    lineAdmin    = 4     (0x04000000)                                                             |

|    lineAlloc    = 4     (0x04000000)                                                             |

|    shmVersId    = 0     (0x00000000)                                                             |

|    shmRefCount  = 3     (0x03000000)                                                             |

|    rowId        = 18446744073709551615                                                           |

|    scndKeyAdmin = 0x0000000000000000                                                             |

|    IEQA                                                                                          |

|    44542                                                                                         |

|    95110                                                                                         |

|    00000                                                                                         |

|    00000                                                                                         |

|    49004500510041002000                                                                          |

|GT_HEADER                                                                                         |

|    Table[initial]                                                                                |

|                                                                                                  |

|GT_ITEM                                                                                           |

|    Table[initial]                                                                                |

|                                                                                                  |

|%_ARCHIVE                                                                                         |

|                                                                                                  |

|    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    2000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020|

|SYST                                                                                              |

|    ##############################################################################¢###ÿ#####XC##>|

|    000000000000000000000000000000000000005000000000F00000000000000000000000000010A000F0008F540000|

|    000010D00000000000000060100010000000006000000000E000000000000000000000000000D02000F0000F830300|

|    000000000000000000000000000000000000000000000000000000000000000000000000000000000000008F000000|

|    00000000000000000000000000000000000000100000000010000000000000000000000000000000000000FF00000C|

|    0000000000000000010000000D00000000000000000000000000000000000000000000000000000000000000060000|

|GS_VARIANT                                                                                        |

|    /SAPSLL/CULO_DISPLAY_CUS_IMP            CIMP                                                  |

|    2545544245445445544554555445222222222222444522222222222222222222222222222222222222222222222222|

|    F3103CCF35CFF4930C19F353F9D000000000000039D000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000|

|    2F0053004100500053004C004C002F00430055004C004F005F0044004900530050004C00410059005F004300550053|

|GC_REGTY-CUSTOMS                                                                                  |

|    01                                                                                            |

|    33                                                                                            |

|    01                                                                                            |

|    00                                                                                            |

|    00                                                                                            |

|    30003100                                                                                      |

|GC_INDEI-IMPORT                                                                                   |

|    1                                                                                             |

|    3                                                                                             |

|    1                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    3100                                                                                          |

|GC_CD_TYPE-CSD                                                                                    |

|    A                                                                                             |

|    4                                                                                             |

|    1                                                                                             |

|    0                                                                                             |

|    0                                                                                             |

|    4100                                                                                          |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|Internal notes                                                                                    |

|    The termination was triggered in function "ab_hsUpdate"                                       |

|    of the SAP kernel, in line 1561 of the module                                                 |

|     "//bas/720_REL/src/krn/runt/abtsvhsh.c#5".                                                   |

|    The internal operation just processed is "TINS".                                              |

|    Internal mode was started at 20160518102222.                                                  |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|Active Calls in SAP Kernel                                                                        |

----------------------------------------------------------------------------------------------------

|Lines of C Stack in Kernel (Structure Differs on Each Platform)                                   |

----------------------------------------------------------------------------------------------------

|(LinStack+0x33)[0x5ea5a2]                                                                         |

|(CTrcStack2+0x48)[0x5eacac]                                                                       |

|(_ZL16rabax_CStackSavev+0xc6)[0x7a1e57]                                                           |

|(ab_rabax+0x23cc)[0x7a7d75]                                                                       |

|(_Z11ab_hsUpdateP10HASH_DESCRP12IT_SRCH_CNTXPK11IT_CMP_CNTXjj+0x12f)[0x190e6ff]                   |

|(ab_ItabUpdateIndex+0x5b4)[0x19131b4]                                                             |

|(_Z25ab_ItabBlockInsertGenerictP4TABH4RUDIPKS_S1_PK6IT_KEYjjhjP18IT_LINE_REPLACESET+0x52d)[0x19143|

|(_Z8ab_jtinsv+0x8ec)[0x191e85c]                                                                   |

|(_Z8ab_extriv+0x602)[0x1784632]                                                                   |

|(_Z9ab_xeventPKDs+0x168)[0x174f7f8]                                                               |

|(_Z8ab_triggv+0xa1)[0x174ffc1]                                                                    |

|(ab_run+0x2b)[0x176d52b]                                                                          |

|(dynpmcal+0x285)[0x1696b05]                                                                       |

|(dynppai0+0x1b3)[0x1698383]                                                                       |

|(dynprctl+0x135)[0x1697775]                                                                       |

|(dynpen00+0x3a9)[0x168a7d9]                                                                       |

|(TskhLoop+0x516)[0x1617b26]                                                                       |

|(ThStart+0x2a4)[0x4a931b]                                                                         |

|(DpMain+0x2b1)[0x15cdf81]                                                                         |

|/lib64/libc.so.6(__libc_start_main+0xfd)[0x323501ed5d]                                            |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|List of ABAP programs affected                                                                    |

----------------------------------------------------------------------------------------------------

|Index |Typ|Program                                 |Group |Date      |Time    |Size     |Lang.    |

----------------------------------------------------------------------------------------------------

|     0|Prg|/SAPSLL/CULO_DISPLAY_CUS_IMP            |     0|03/21/2014|17:02:34|  1314816|E        |

|     1|Prg|SAPMSSY0                                |     1|02/18/2013|19:55:04|   111616|E        |

|     2|Prg|SAPMSSYD                                |     1|02/18/2013|21:07:14|    23552|E        |

|     3|Prg|SAPFSYSCALLS                            |     1|03/07/2005|18:01:13|     8192|E        |

|     4|Prg|RSDBRUNT                                |     0|02/18/2013|21:45:35|   306176|E        |

|     5|Typ|RSSCR                                   |     0|11/23/1999|09:24:41|     5120|         |

|     6|Prg|RSDBSPBL                                |     0|03/07/2005|18:01:13|    84992|E        |

|     7|Prg|SAPDB__S                                |     0|03/07/2005|18:01:13|    21504|E        |

|     8|Typ|VARID                                   |     0|05/28/2009|08:12:55|     5120|         |

|     9|Typ|SSCRFIELDS                              |     0|05/02/1997|13:16:39|     5120|         |

|    10|Prg|RSDBSPVA                                |     0|02/18/2013|21:45:35|   160768|E        |

|    11|Prg|%_CSYDB0                                |     0|03/07/2005|18:01:13|    40960|E        |

|    12|Prg|RSDBSPDD                                |     0|02/18/2013|19:13:54|    46080|E        |

|    13|Prg|CONTEXT_X_FREE_SEL_DD_INFO              |     0|02/18/2013|19:13:54|    69632|E        |

|    14|Typ|TCONT                                   |     0|07/18/1997|21:42:15|     2048|         |

|    15|Typ|CONTEXTB                                |     0|07/18/1997|21:42:13|     6144|         |

|    16|Typ|RSCONVERT                               |     0|05/28/2009|08:12:28|     4096|         |

|    17|Typ|TUVID                                   |     0|11/23/1999|09:25:43|     2048|         |

|    18|Prg|SAPLSDIFRUNTIME                         |    18|02/18/2013|21:42:11|   123904|E        |

|    19|Typ|DFIES                                   |     0|09/09/2011|20:54:19|    10240|         |

|    20|Typ|DDFIXVALUE                              |     0|01/19/2000|18:27:52|     2048|         |

|    21|Typ|X031L                                   |     0|09/09/2011|20:57:04|     6144|         |

|    22|Prg|SAPLSDNT                                |    22|02/18/2013|21:45:31|   279552|E        |

|    23|Prg|SAPLSUGS                                |    23|02/18/2013|19:13:55|    60416|E        |

|    24|Typ|DTELINFO                                |     0|09/09/2011|20:54:20|     7168|         |

|    25|Typ|DTFLAG1                                 |     0|05/28/2009|08:12:03|     2048|         |

|    26|Typ|DTFLAG2                                 |     0|02/02/1998|14:57:43|     2048|         |

|    27|Typ|DTFLAG3                                 |     0|01/19/2005|15:59:44|     2048|         |

|    28|Typ|DDFTX                                   |     0|08/08/1997|14:46:46|     4096|         |

|    29|Prg|SAPLSSELSERVICE                         |    29|05/28/2009|08:23:22|    25600|E        |

|    30|Prg|CL_ABAP_CHAR_UTILITIES========CP        |    30|02/18/2013|19:27:56|    14336|E        |

|    31|Prg|SAPLSVAR                                |    31|02/18/2013|21:42:36|   936960|E        |

|    32|Typ|RSVAMEMKEY                              |     0|12/16/1996|19:31:50|     2048|         |

|    33|Prg|RSDBSPMC                                |     0|09/05/2006|14:14:08|    92160|E        |

|    34|Typ|DDSHDESCR                               |     0|11/28/1997|16:26:30|     4096|         |

|    35|Typ|SPPARAMS                                |     0|03/07/1997|14:48:48|     2048|         |

|    36|Prg|SAPLICON                                |    36|12/13/2007|11:37:48|    31744|E        |

|    37|Prg|%_CICON                                 |    36|12/13/2007|11:37:48|   126976|E        |

|    38|Typ|ICONT                                   |     0|09/05/2006|14:14:08|     2048|         |

|    39|Prg|SAPLSABE                                |    39|09/09/2011|21:09:40|    14336|E        |

|    40|Prg|SAPLSECU                                |    40|02/18/2013|21:06:49|   110592|E        |

|    41|Typ|RSSUBINFO                               |     0|11/22/1999|21:15:17|     3072|         |

|    42|Prg|SAPLSLDB                                |    42|09/09/2011|21:21:18|   103424|E        |

|    43|Prg|RSDBSPRE                                |     0|05/28/2009|08:27:08|    87040|E        |

|    44|Prg|%_CSSCR                                 |     0|03/07/2005|18:01:13|    12288|E        |

|    45|Typ|RSOPTIONS                               |     0|09/29/1995|18:12:16|     3072|         |

|    46|Typ|DD07V                                   |     0|09/15/2004|17:26:57|     3072|         |

|    47|Prg|SAPLSDTO                                |    47|06/30/2006|12:30:19|    33792|E        |

|    48|Typ|DD07L                                   |     0|09/15/2004|17:26:14|     3072|         |

|    49|Typ|DD07T                                   |     0|08/08/1997|14:46:27|     3072|         |

|    50|Prg|SAPLSVSM                                |    50|05/28/2009|08:24:27|    33792|E        |

|    51|Typ|DISVARIANT                              |     0|04/29/1998|10:21:00|     3072|         |

|    52|Prg|SAPLSALV                                |    52|02/18/2013|21:17:23|   295936|E        |

|    53|Prg|SAPLSKBS                                |    53|09/09/2011|21:20:11|   335872|E        |

|    54|Prg|%_CKKBLO                                |    53|09/25/2007|12:02:07|   149504|E        |

|    55|Typ|DTC_S_LAYO                              |     0|02/01/2001|17:11:04|     7168|         |

|    56|Typ|ALV_S_PCTL                              |     0|09/09/2011|20:55:59|     8192|         |

|    57|Typ|PRI_PARAMS                              |     0|10/27/1998|15:01:35|     5120|         |

|    58|Typ|ARC_PARAMS                              |     0|08/08/1997|14:45:20|     5120|         |

|    59|Typ|LTVARIANT                               |     0|02/01/2001|17:14:42|     5120|         |

|    60|Typ|LVC_S_RNGS                              |     0|01/19/2000|18:31:34|     2048|         |

|    61|Typ|V_LTDX                                  |     0|03/08/2000|17:29:18|     4096|         |

|    62|Prg|SAPLDSYA                                |    62|02/18/2013|21:36:06|    52224|E        |

|    63|Prg|SAPFSDS1                                |    62|03/07/2005|18:01:13|    61440|E        |

|    64|Typ|TDCLD                                   |     0|07/14/1998|14:53:43|     5120|         |

|    65|Prg|SAPLSDOD                                |    65|02/18/2013|19:13:55|    50176|E        |

|    66|Typ|DOKIL                                   |     0|04/07/1997|18:29:04|     3072|         |

|    67|Prg|SAPCNVE                                 |    67|03/07/2005|18:01:13|     9216|E        |

|    68|Prg|SAPLLANG                                |    68|09/09/2011|21:12:32|    11264|E        |

|    69|Typ|T002                                    |     0|09/25/2007|11:09:36|     2048|         |

|    70|Typ|RSEXFCODE                               |     0|07/18/1997|17:04:17|     2048|         |

|    71|Prg|SAPFSPOR                                |     0|06/24/2008|18:36:49|    16384|E        |

|    72|Typ|RSSELINT                                |     0|02/21/1995|15:08:07|     3072|         |

|    73|Typ|RSPARINT                                |     0|03/10/1995|17:53:00|     2048|         |

|    74|Prg|SAPLSCNT                                |    74|03/07/2005|18:01:13|    34816|E        |

|    75|Typ|DYCBOX                                  |     0|11/23/1999|09:23:17|     3072|         |

|    76|Prg|SAPLSDSD                                |    76|02/18/2013|20:07:35|   375808|E        |

|    77|Prg|%_CVRM                                  |    76|03/07/2005|18:01:13|     9216|E        |

|    78|Prg|SAPLSGUI                                |    78|12/04/2009|20:43:32|   105472|E        |

|    79|Prg|SAPLSTTM                                |    79|09/09/2011|21:26:18|    79872|E        |

|    80|Prg|SAPLSBDC                                |    80|12/13/2007|10:50:07|    48128|E        |

|    81|Prg|CL_DATAPROVIDER===============CP        |    81|06/24/2008|15:38:51|    57344|E        |

|    82|Prg|SAPLSECH                                |    82|09/09/2011|21:16:06|    51200|E        |

|    83|Prg|SAPSHDTV                                |    74|02/18/2013|19:34:27|    38912|E        |

|    84|Typ|SHDSTU                                  |     0|12/10/1998|13:29:36|     2048|         |

|    85|Typ|SHDSTCIU                                |     0|12/10/1998|13:29:36|     2048|         |

|    86|Prg|SAPFGUICNTL                             |     1|03/07/2005|18:01:13|    27648|E        |

|    87|Prg|SAPLOLEA                                |    87|02/18/2013|19:33:57|   110592|E        |

|    88|Prg|SAPLSFES                                |    88|02/18/2013|21:38:26|   316416|E        |

|    89|Prg|SAPLSPLUGIN                             |    89|09/09/2011|21:19:29|     9216|E        |

|    90|Typ|ARFCRDATA                               |     0|09/09/2011|20:56:00|     6144|         |

|    91|Prg|SAPLGRFC                                |    91|05/28/2009|08:17:06|    16384|E        |

|    92|Typ|SWCBCONT                                |     0|09/09/2011|20:56:57|     3072|         |

|    93|Typ|OLE_VERBS                               |     0|02/09/1995|13:23:37|     2048|         |

|    94|Typ|OLE_PA                                  |     0|01/13/1995|11:06:59|     2048|         |

|    95|Typ|SSCRTEXTS                               |     0|08/15/1997|14:15:15|     3072|         |

|    96|Prg|CL_GUI_PROPS_CONSUMER=========CP        |    96|09/09/2011|21:10:01|    34816|E        |

|    97|Prg|SAPLTHFB                                |    97|02/18/2013|21:14:28|   472064|E        |

|    98|Typ|EUDB                                    |     0|09/09/2011|20:54:28|     8192|         |

|    99|Prg|%_CCNTL                                 |    96|03/07/2005|18:01:13|    17408|E        |

|   100|Prg|CL_DYNAMIC_GUI_EXTENSIONS=====CP        |   100|05/28/2009|16:33:50|    44032|E        |

|   101|Prg|CL_GUI_DATAMANAGER============CP        |   101|05/28/2009|16:33:50|    87040|E        |

|   102|Typ|RSVUVINT                                |     0|12/15/1995|16:07:46|     2048|         |

|   103|Prg|RSDBSPVD                                |     0|09/09/2011|21:33:31|   102400|E        |

|   104|Typ|RVARI                                   |     0|06/18/1999|11:23:08|     4096|         |

|   105|Typ|RSVARIVDAT                              |     0|03/07/1995|13:57:58|     2048|         |

|   106|Prg|/SAPSLL/SAPLCORE_SRV_MODULES            |   106|02/19/2013|11:49:01|   142336|E        |

|   107|Typ|/SAPSLL/INDEI_EXCL_R_S                  |     0|02/19/2013|11:15:55|     2048|         |

|   108|Typ|/SAPSLL/PRDES_R_S                       |     0|02/19/2013|11:16:19|     2048|         |

|   109|Typ|/SAPSLL/CDTYP_R_S                       |     0|02/19/2013|11:15:17|     2048|         |

|   110|Typ|/SAPSLL/MANDT_R_S                       |     0|02/19/2013|11:16:11|     2048|         |

|   111|Typ|/SAPSLL/PROST_R_S                       |     0|02/19/2013|11:16:28|     2048|         |

|   112|Prg|/SAPSLL/SAPLCUHD_SELECTION              |   112|03/21/2014|17:02:34|  1690624|E        |

|   113|Typ|/SAPSLL/CUHD_OBJ_CRIT_S                 |     0|03/21/2014|17:00:59|   721920|         |

|   114|Prg|/SAPSLL/SAPLCUHD_SERVICES               |   114|06/05/2014|17:28:26|  2048000|E        |

|   115|Prg|/SAPSLL/SAPLTLECH_DB                    |   115|02/19/2013|11:33:55|    39936|E        |

|   116|Typ|/SAPSLL/TLECH                           |     0|02/19/2013|11:19:02|     6144|         |

|   117|Prg|/SAPSLL/SAPLLEG_AUTH_CHECK              |   117|02/19/2013|11:28:56|    35840|E        |

|   118|Typ|/SAPSLL/AC_OBJ_NAME_S                   |     0|02/19/2013|11:14:59|     2048|         |

|   119|Typ|/SAPSLL/CUHDA_R_S                       |     0|02/19/2013|11:15:31|     2048|         |

|   120|Prg|/SAPSLL/SAPLPAR_SERVICE                 |   120|03/21/2014|17:02:34|   424960|E        |

|   121|Typ|BUT100                                  |     0|09/09/2011|20:54:01|     3072|         |

|   122|Typ|BUT000                                  |     0|02/18/2013|19:14:08|    20480|         |

|   123|Typ|/SAPSLL/GUID_16_R_S                     |     0|02/19/2013|11:15:54|     2048|         |

|   124|Prg|/SAPSLL/SAPLCORE_APPL_SERVICES          |   124|03/21/2014|17:02:34|   557056|E        |

|   125|Typ|/SAPSLL/PARTNER_COUNTRY_S               |     0|02/19/2013|11:16:16|     2048|         |

|   126|Prg|/SAPSLL/SAPLTLECSV_DB                   |   126|02/19/2013|11:33:58|    27648|E        |

|   127|Typ|/SAPSLL/TLECSV_PK_S                     |     0|02/19/2013|11:16:51|     2048|         |

|   128|Typ|/SAPSLL/TLECSV                          |     0|02/19/2013|11:19:03|     3072|         |

|   129|Typ|/SAPSLL/DSLRG_R_S                       |     0|02/19/2013|11:15:40|     2048|         |

|   130|Prg|/SAPSLL/SAPLT606RA_DB                   |   130|02/19/2013|11:32:44|    31744|E        |

|   131|Typ|/SAPSLL/T606RA                          |     0|02/19/2013|11:18:35|     3072|         |

|   132|Prg|/SAPSLL/SAPLT606DR_DB                   |   132|02/19/2013|11:32:42|    27648|E        |

|   133|Typ|/SAPSLL/T606DR_PK_S                     |     0|02/19/2013|11:16:41|     2048|         |

|   134|Typ|/SAPSLL/T606DR                          |     0|02/19/2013|11:18:34|     3072|         |

|   135|Typ|/SAPSLL/ACT_LEG_CRIT_S                  |     0|02/19/2013|11:14:58|     7168|         |

|   136|Prg|/SAPSLL/SAPLLEG_REGULATION_GET          |   136|03/21/2014|17:02:33|   340992|E        |

|   137|Prg|/SAPSLL/SAPLNAME_DETERMINATION          |   137|08/17/2013|15:13:14|   136192|E        |

|   138|Prg|/SAPSLL/SAPLCORE_BAS_MODULES            |   138|02/19/2013|11:23:58|    14336|E        |

|   139|Prg|SAPLSUNI                                |   139|02/18/2013|20:44:51|   183296|E        |

|   140|Prg|SAPLSEQ0                                |   140|02/18/2013|21:54:43|   132096|E        |

|   141|Prg|CL_UMG_WORD===================CP        |   141|09/09/2011|21:39:55|    28672|E        |

|   142|Prg|SAPLSTR4                                |   142|02/18/2013|19:13:55|    74752|E        |

|   143|Prg|%_CTRNSP                                |   142|03/07/2005|18:01:13|    10240|E        |

|   144|Prg|SAPLSTRD                                |   144|02/18/2013|21:45:25|   870400|E        |

|   145|Typ|TRNSPACE                                |     0|07/07/1997|13:56:33|     3072|         |

|   146|Typ|/SAPSLL/ALRG01                          |     0|02/19/2013|11:17:23|     8192|         |

|   147|Typ|/SAPSLL/ALRG01_CRIT_S                   |     0|02/19/2013|11:15:01|    18432|         |

|   148|Typ|TFDIR                                   |     0|05/28/2009|08:12:49|     3072|         |

|   149|Prg|/SAPSLL/SAPLALRG01_DB                   |   149|02/19/2013|11:22:48|    41984|E        |

|   150|Typ|/SAPSLL/CUS_CUS_ACT_S                   |     0|02/19/2013|11:15:38|     2048|         |

|   151|Typ|/SAPSLL/T606G_DET_S                     |     0|02/19/2013|11:16:41|     7168|         |

|   152|Typ|/SAPSLL/LGREG_R_S                       |     0|02/19/2013|11:16:09|     2048|         |

|   153|Typ|/SAPSLL/CUHD_CRIT_S                     |     0|02/19/2013|11:15:32|    63488|         |

|   154|Typ|/SAPSLL/CUHD                            |     0|02/19/2013|11:17:54|    16384|         |

|   155|Typ|/SAPSLL/CUORNO_R_S                      |     0|02/19/2013|11:15:35|     2048|         |

|   156|Typ|/SAPSLL/PRTN_GUID_16_R_S                |     0|02/19/2013|11:16:29|     2048|         |

|   157|Typ|/SAPSLL/CORREF_CRIT_S                   |     0|02/19/2013|11:15:23|    18432|         |

|   158|Typ|/SAPSLL/CORPAR_CRIT_S                   |     0|02/19/2013|11:15:23|    22528|         |

|   159|Typ|/SAPSLL/LEGCUS_CRIT_S                   |     0|03/21/2014|17:01:01|    49152|         |

|   160|Typ|/SAPSLL/CUHDSTA_CRIT_S                  |     0|02/19/2013|11:15:31|    35840|         |

|   161|Typ|/SAPSLL/CUHDSTA                         |     0|02/19/2013|11:17:55|    10240|         |

|   162|Typ|/SAPSLL/LEGACT_CRIT_S                   |     0|02/19/2013|11:16:05|    19456|         |

|   163|Typ|/SAPSLL/LEGACT                          |     0|02/19/2013|11:18:11|     6144|         |

|   164|Typ|/SAPSLL/CUIT                            |     0|02/19/2013|11:17:56|    26624|         |

|   165|Typ|/SAPSLL/LEGCULC                         |     0|02/19/2013|11:18:13|    12288|         |

|   166|Typ|/SAPSLL/LEGCOM                          |     0|02/19/2013|11:18:12|     5120|         |

|   167|Typ|/SAPSLL/LEGMES                          |     0|02/19/2013|11:18:14|    10240|         |

|   168|Typ|/SAPSLL/LEGTPR                          |     0|03/21/2014|17:01:04|    14336|         |

|   169|Typ|/SAPSLL/CORPAR                          |     0|02/19/2013|11:17:35|     6144|         |

|   170|Typ|/SAPSLL/CORREF                          |     0|02/19/2013|11:17:36|     6144|         |

|   171|Prg|%_CRSDS                                 |     0|03/07/2005|18:01:13|    11264|E        |

|   172|Prg|%_CSYLDB                                |     0|03/07/2005|18:01:13|     9216|E        |

|   173|Typ|LVC_S_ROID                              |     0|01/19/2000|18:31:34|     2048|         |

|   174|Typ|RSVARKEY                                |     0|12/16/1996|19:31:51|     2048|         |

|   175|Prg|%_CSLIS                                 |    40|05/28/2009|08:14:59|    96256|E        |

|   176|Typ|CAT_SVARS                               |     0|09/09/2011|20:55:46|     3072|         |

|   177|Typ|/SAPSLL/CORPAR_PK_S                     |     0|02/19/2013|11:15:23|     2048|         |

|   178|Typ|/SAPSLL/CORPAR_K_S                      |     0|02/19/2013|11:15:23|     2048|         |

|   179|Typ|/SAPSLL/CORPAR_S                        |     0|02/19/2013|11:15:23|     6144|         |

|   180|Typ|/SAPSLL/CORPAR_SK_S                     |     0|02/19/2013|11:15:23|     3072|         |

|   181|Typ|/SAPSLL/POBJR_S                         |     0|02/19/2013|11:16:18|     2048|         |

|   182|Typ|/SAPSLL/BP_K_S                          |     0|02/19/2013|11:15:13|     2048|         |

|   183|Typ|SYST                                    |     0|09/15/2004|17:25:35|    30720|         |

|   184|Typ|/SAPSLL/CORCTS_CRIT_S                   |     0|02/19/2013|11:15:22|    15360|         |

|   185|Typ|/SAPSLL/CORCTSC_CRIT_S                  |     0|02/19/2013|11:15:22|    16384|         |

|   186|Typ|/SAPSLL/CUHDBLR_CRIT_S                  |     0|02/19/2013|11:15:31|    11264|         |

|   187|Typ|/SAPSLL/CUHDDAT_CRIT_S                  |     0|02/19/2013|11:15:31|    46080|         |

|   188|Typ|RSJOBINFO                               |     0|09/09/2011|20:56:49|     3072|         |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|Directory of Application Tables                                                                   |

----------------------------------------------------------------------------------------------------

|Name                                     Date       Time       Lngth                              |

|    Val.                                                                                          |

----------------------------------------------------------------------------------------------------

|Program  /SAPSLL/CULO_DISPLAY_CUS_IMP                                                             |

----------------------------------------------------------------------------------------------------

|SYST                                     09/15/2004 17:25:35   00004612                           |

|    \0\0\0\0\x0001\0\x000D\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0006                                    |

|SY                                         /  /       :  :     00004612                           |

|    \0\0\0\0\x0001\0\x000D\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x0006                                    |

|RSJOBINFO                                  /  /       :  :     00000164                           |

|                                    00000000000000                                                |

|SSCRFIELDS                               09/15/2004 17:25:21   00001708                           |

|                                                                                                  |

|SSCRTEXTS                                  /  /       :  :     00000742                           |

|                                                                                                  |

----------------------------------------------------------------------------------------------------

|Program  RSDBRUNT                                                                                 |

----------------------------------------------------------------------------------------------------

|TUVID                                      /  /       :  :     00000046                           |

|                           |                                                                      |

|RSVUVINT                                   /  /       :  :     00000094                           |

|                                                   |                                              |

|VARID                                      /  /       :  :     00000252                           |

|       /SAPSLL/CULO_DISPLAY_CUS_IMP                                                               |

----------------------------------------------------------------------------------------------------

|Program  CONTEXT_X_FREE_SEL_DD_INFO                                                               |

----------------------------------------------------------------------------------------------------

|CONTEXTB                                   /  /       :  :     00002992                           |

|    200IBFREE_SEL_DD_INFO    000005000100000000000000\0\0\0\0                                     |

|TCONT                                      /  /       :  :     00000068                           |

|    FREE_SEL_DD_INFO    00000000000000|                                                           |

----------------------------------------------------------------------------------------------------

|Program  SAPLSSELSERVICE                                                                          |

----------------------------------------------------------------------------------------------------

|DFIES                                    09/09/2011 20:54:19   00001350                           |

|    /SAPSLL/CORREF_S              ORGLOGSYS                                                       |

----------------------------------------------------------------------------------------------------

|Program  SAPLICON                                                                                 |

----------------------------------------------------------------------------------------------------

|ICONT                                      /  /       :  :     00000130                           |

|                                                                                                  |

----------------------------------------------------------------------------------------------------

|Program  SAPFSDS1                                                                                 |

----------------------------------------------------------------------------------------------------

|TDCLD                                      /  /       :  :     00000098                           |

|    RE  DOKU  40R XX XXLIMUDOCUX (XR3TRPROGX         |                                            |

----------------------------------------------------------------------------------------------------

|Program  SAPLSDOD                                                                                 |

----------------------------------------------------------------------------------------------------

|DOKIL                                      /  /       :  :     00000152                           |

|                                                                                                  |

----------------------------------------------------------------------------------------------------

|Program  SAPLLANG                                                                                 |

----------------------------------------------------------------------------------------------------

|T002                                       /  /       :  :     00000010                           |

|    ES1EN|                                                                                        |

----------------------------------------------------------------------------------------------------

|Program  SAPSHDTV                                                                                 |

----------------------------------------------------------------------------------------------------

|SHDSTU                                     /  /       :  :     00000106                           |

|                                                         |                                        |

|SHDSTCIU                                   /  /       :  :     00000100                           |

|                                                      |                                           |

----------------------------------------------------------------------------------------------------

|Program  CL_GUI_PROPS_CONSUMER=========CP                                                         |

----------------------------------------------------------------------------------------------------

|EUDB                                       /  /       :  :     00004068                           |

|    %C573923B0DC102E06E10000000ABE09B5         \0\0\0                                             |

----------------------------------------------------------------------------------------------------

|Program  SAPLSUNI                                                                                 |

----------------------------------------------------------------------------------------------------

|TFDIR                                      /  /       :  :     00000268                           |

|    /SAPSLL/ALRG01_DB_BUF_READ    /SAPSLL/SAPLALRG01_DB                                           |

----------------------------------------------------------------------------------------------------

----------------------------------------------------------------------------------------------------

|ABAP Control Blocks (CONT)                                                                        |

----------------------------------------------------------------------------------------------------

|Index|Name|Fl|PAR0|PAR1|PAR2|PAR3|PAR4|PAR5|PAR6|Source Code                             |Line    |

----------------------------------------------------------------------------------------------------

|20140|7023|  |    |    |    |    |    |    |    |                                        |        |

|  278|LOOP|10|0000|0000|0000|0000|0000|0000|0000|/SAPSLL/LCUHD_SELECTIONU01              |     159|

|  282|TAPP|00|02DC|0164|0166|    |    |    |    |/SAPSLL/LCUHD_SELECTIONU01              |     159|

|  284|BRAX|01|FFF1|    |    |    |    |    |    |/SAPSLL/LCUHD_SELECTIONU01              |     159|

|  285|cmpr|00|00E2|0167|0000|    |    |    |    |/SAPSLL/LCUHD_SELECTIONU01              |     159|

|  287|BRAF|02|0005|    |    |    |    |    |    |/SAPSLL/LCUHD_SELECTIONU01              |     159|

|  288|BREL|80|0000|    |    |    |    |    |    |/SAPSLL/LCUHD_SELECTIONU01              |     159|

|  289|SYSC|46|C008|    |    |    |    |    |    |/SAPSLL/LCUHD_SELECTIONU01              |     159|

|  290|SYSC|00|0164|    |    |    |    |    |    |/SAPSLL/LCUHD_SELECTIONU01              |     159|

|  291|FREE|00|0164|    |    |    |    |    |    |/SAPSLL/LCUHD_SELECTIONU01              |     159|

|  292|TINS|42|02DF|C024|C004|0000|0000|0000|0000|/SAPSLL/LCUHD_SELECTIONU01              |     162|

|  296|TINS|42|02DF|C025|C005|0000|0000|0000|0000|/SAPSLL/LCUHD_SELECTIONU01              |     163|

|>>>>>|TINS|42|02DF|C029|C008|0000|0000|0000|0000|/SAPSLL/LCUHD_SELECTIONU01              |     164|

|  304|TINS|42|02DF|C026|C009|0000|0000|0000|0000|/SAPSLL/LCUHD_SELECTIONU01              |     165|

|  308|TINS|42|02DF|C027|C003|0000|0000|0000|0000|/SAPSLL/LCUHD_SELECTIONU01              |     166|

|  312|TINS|42|02DF|C028|C00A|0000|0000|0000|0000|/SAPSLL/LCUHD_SELECTIONU01              |     167|

|  316|TINS|42|02DF|C02A|C006|0000|0000|0000|0000|/SAPSLL/LCUHD_SELECTIONU01              |     168|

|  320|TINS|42|02DF|C02B|C007|0000|0000|0000|0000|/SAPSLL/LCUHD_SELECTIONU01              |     169|

|  324|LOOP|07|02DC|C002|C000|0000|0000|0000|0000|/SAPSLL/LCUHD_SELECTIONU01              |     171|

|  328|TUTL|0E|0000|C002|C000|    |    |    |    |/SAPSLL/LCUHD_SELECTIONU01              |     171|

----------------------------------------------------------------------------------------------------

kul_vaibhav
Active Participant
0 Kudos

Hi Sarif,

Can you please check if SAP note 1788329 is implemented in your system.

regards,

Kul Vaibhav