DMS_DOC_FILES

Transparent Table Application Table

DMS: File Names for Documents

DMS_DOC_FILES is an SAP database table in S/4HANA. DMS: File Names for Documents. It contains 8 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_DocInfoRecdOriginal view left_outer BASIC

Fields (8)

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
KEY file_idx dms_doc_index Counter
dappl dappl Applic.
filename abap.char File Name

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: File Names for Documents
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE DMS_DOC_FILES (
    MANDT,     -- Client [mandt]
    DOKAR,     -- Document Type [dokar]
    DOKNR,     -- Document [doknr]
    DOKVR,     -- Doc. Version [dokvr]
    DOKTL,     -- Document Part [doktl_d]
    FILE_IDX,  -- Counter [dms_doc_index]
    DAPPL,     -- Applic. [dappl]
    FILENAME,  -- File Name [abap.char]
    PRIMARY KEY (MANDT, DOKAR, DOKNR, DOKVR, DOKTL, FILE_IDX)
);