ISLM_DM_PCKT_ITM

Transparent Table Application Table

Data Management - Packet Item

ISLM_DM_PCKT_ITM is an SAP database table in S/4HANA. Data Management - Packet Item. It contains 16 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ISLM_P_DM_PCKT_ITM view_entity from DM enabled data upload packet item

Fields (16)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY guid islm_de_dm_pckt_itm_guid
parent islm_de_dm_pckt_hdr_guid
folder_name islm_de_folder_name Folder name
file_name islm_de_file_name File name
total_records islm_de_total_count Total count
file_size islm_de_file_size File Size
status islm_de_upl_status Upload Status
file_type islm_de_file_type File Type
dlg_entity_type islm_de_del_entity_type Delegate Entity Type
dlg_entity_hashid islm_de_hashid Hash ID
content_hash islm_de_hashid Hash ID
created_by islm_de_cruser Created by
created_at islm_de_creationdate_utc Creation Date
changed_by islm_de_chuser Changed By
changed_at islm_de_lastmodified_utc Last Modified Date

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Data Management - Packet Item
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ISLM_DM_PCKT_ITM (
    MANDT,              -- Client [mandt]
    GUID,               -- islm_de_dm_pckt_itm_guid
    PARENT,             -- islm_de_dm_pckt_hdr_guid
    FOLDER_NAME,        -- Folder name [islm_de_folder_name]
    FILE_NAME,          -- File name [islm_de_file_name]
    TOTAL_RECORDS,      -- Total count [islm_de_total_count]
    FILE_SIZE,          -- File Size [islm_de_file_size]
    STATUS,             -- Upload Status [islm_de_upl_status]
    FILE_TYPE,          -- File Type [islm_de_file_type]
    DLG_ENTITY_TYPE,    -- Delegate Entity Type [islm_de_del_entity_type]
    DLG_ENTITY_HASHID,  -- Hash ID [islm_de_hashid]
    CONTENT_HASH,       -- Hash ID [islm_de_hashid]
    CREATED_BY,         -- Created by [islm_de_cruser]
    CREATED_AT,         -- Creation Date [islm_de_creationdate_utc]
    CHANGED_BY,         -- Changed By [islm_de_chuser]
    CHANGED_AT,         -- Last Modified Date [islm_de_lastmodified_utc]
    PRIMARY KEY (MANDT, GUID)
);