DMS_DOC2LOIO

Transparent Table Application Table

DVS: Link table DVS Key <-> LOIO-ID

DMS_DOC2LOIO is an SAP database table in S/4HANA. DVS: Link table DVS Key <-> LOIO-ID. It contains 9 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
I_BkRelshpDocBkAcctAttch view inner BASIC Shared Attachment of Bank Account
I_DocInfoRecdAttchLnkKeyLgclID view_entity from BASIC Details of DIR and Logical Document ID
P_DocInfoRecdOriginal view from 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
KEY lo_type DMS_FILE_TYPE Original type
KEY lo_index DMS_DOC_INDEX Counter
lo_objid SDOK_LOID Log. document
lo_is_ref CVFLAG Flag

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.

-- DVS: Link table DVS Key <-> LOIO-ID
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE DMS_DOC2LOIO (
    MANDT,      -- Client [MANDT]
    DOKAR,      -- Document Type [DOKAR]
    DOKNR,      -- Document [DOKNR]
    DOKVR,      -- Doc. Version [DOKVR]
    DOKTL,      -- Document Part [DOKTL_D]
    LO_TYPE,    -- Original type [DMS_FILE_TYPE]
    LO_INDEX,   -- Counter [DMS_DOC_INDEX]
    LO_OBJID,   -- Log. document [SDOK_LOID]
    LO_IS_REF,  -- Flag [CVFLAG]
    PRIMARY KEY (MANDT, DOKAR, DOKNR, DOKVR, DOKTL, LO_TYPE, LO_INDEX)
);