DRAW_LAST_CHANGE

Transparent Table Application Table

DMS: Last Changes to Document

DRAW_LAST_CHANGE is an SAP database table in S/4HANA. DMS: Last Changes to Document. It contains 9 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_DocumentInfoRecordModifDet view from BASIC Last Changes to Document - Cube
P_DocInfoRecd view left_outer BASIC

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY dokar DOKAR Document Type
KEY doknr DOKNR Document
KEY dokvr DOKVR Doc. Version
KEY doktl DOKTL_D Document Part
created_by DMS_CREATED_BY Created By
created_at DMS_CREATED_AT Creation Time
changed_by DMS_CHANGED_BY Last Changed By
changed_at DMS_CHANGED_AT Time of Change

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.

-- DMS: Last Changes to Document
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE DRAW_LAST_CHANGE (
    MANDT,       -- Client [MANDT]
    DOKAR,       -- Document Type [DOKAR]
    DOKNR,       -- Document [DOKNR]
    DOKVR,       -- Doc. Version [DOKVR]
    DOKTL,       -- Document Part [DOKTL_D]
    CREATED_BY,  -- Created By [DMS_CREATED_BY]
    CREATED_AT,  -- Creation Time [DMS_CREATED_AT]
    CHANGED_BY,  -- Last Changed By [DMS_CHANGED_BY]
    CHANGED_AT,  -- Time of Change [DMS_CHANGED_AT]
    PRIMARY KEY (MANDT, DOKAR, DOKNR, DOKVR, DOKTL)
);