ISLM_ENTITY_HIST

Transparent Table Application Table

Entity history table

ISLM_ENTITY_HIST is an SAP database table in S/4HANA. Entity history table. It contains 10 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ISLM_P_ENTITY_HIST view_entity from Entity history table

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY guid ISLM2_DE_UUID GUID
ref_entity_id ISLM_DE_REF_ENTITY_ID Reference Entity ID
ref_entity_type ISLM_DE_REF_ENTITY_TYPE Reference EntityType
action_type ISLM_DE_ACTION_TYPE Action type
action_status ISLM_DE_ACTION_STATUS Action status
created_at ISLM_DE_CREATIONDATE_UTC Creation Date
created_by ISLM_DE_CRUSER Created By
changed_at ISLM_DE_LASTMODIFIED_UTC Last Modified Date
changed_by ISLM_DE_MODIFIED_BY Modified by

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.

-- Entity history table
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ISLM_ENTITY_HIST (
    MANDT,            -- Client [MANDT]
    GUID,             -- GUID [ISLM2_DE_UUID]
    REF_ENTITY_ID,    -- Reference Entity ID [ISLM_DE_REF_ENTITY_ID]
    REF_ENTITY_TYPE,  -- Reference EntityType [ISLM_DE_REF_ENTITY_TYPE]
    ACTION_TYPE,      -- Action type [ISLM_DE_ACTION_TYPE]
    ACTION_STATUS,    -- Action status [ISLM_DE_ACTION_STATUS]
    CREATED_AT,       -- Creation Date [ISLM_DE_CREATIONDATE_UTC]
    CREATED_BY,       -- Created By [ISLM_DE_CRUSER]
    CHANGED_AT,       -- Last Modified Date [ISLM_DE_LASTMODIFIED_UTC]
    CHANGED_BY,       -- Modified by [ISLM_DE_MODIFIED_BY]
    PRIMARY KEY (MANDT, GUID)
);