UKM_EVENTS

Transparent Table Application Table

Credit Events

UKM_EVENTS is an SAP database table in S/4HANA. Credit Events. It contains 14 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
v_ukm_event_attr_view view from Credit Events
v_ukm_latest_event_view view from Latest Credit Events

Fields (14)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY guid SYSUUID_C UUID
partner BU_PARTNER Busn. Partner
credit_sgmnt UKM_CREDIT_SGMNT Credit Segment
event_type UKM_EVENT_TYPE Type of Event
type_of_change UKM_TYPE_OF_CHANGE Type
changed UKM_ATTRIBUTE Attrib.
old_value UKM_AKB_ATTR_VALUE_OLD Old Value
new_value UKM_AKB_ATTR_VALUE_NEW New Value
created_by UKM_CREATE_USER Created By
create_time UKM_CREATE_TIME Created On
status_changed_by UKM_CHANGE_USER Changed By
status_change_time UKM_CHANGE_TIME Changed On
status UKM_EVENT_STATUS Status

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.

-- Credit Events
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE UKM_EVENTS (
    MANDT,               -- Client [MANDT]
    GUID,                -- UUID [SYSUUID_C]
    PARTNER,             -- Busn. Partner [BU_PARTNER]
    CREDIT_SGMNT,        -- Credit Segment [UKM_CREDIT_SGMNT]
    EVENT_TYPE,          -- Type of Event [UKM_EVENT_TYPE]
    TYPE_OF_CHANGE,      -- Type [UKM_TYPE_OF_CHANGE]
    CHANGED,             -- Attrib. [UKM_ATTRIBUTE]
    OLD_VALUE,           -- Old Value [UKM_AKB_ATTR_VALUE_OLD]
    NEW_VALUE,           -- New Value [UKM_AKB_ATTR_VALUE_NEW]
    CREATED_BY,          -- Created By [UKM_CREATE_USER]
    CREATE_TIME,         -- Created On [UKM_CREATE_TIME]
    STATUS_CHANGED_BY,   -- Changed By [UKM_CHANGE_USER]
    STATUS_CHANGE_TIME,  -- Changed On [UKM_CHANGE_TIME]
    STATUS,              -- Status [UKM_EVENT_STATUS]
    PRIMARY KEY (MANDT, GUID)
);