LMD_RPT_DOCS

Transparent Table Application Table

Documents for Route Process Tracking

LMD_RPT_DOCS is an SAP database table in S/4HANA. Documents for Route Process Tracking. It contains 6 fields. 4 CDS views read from this table.

CDS Views using this table (4)

ViewTypeJoinVDMDescription
E_LastMileRouteProcessDocument view_entity from EXTENSION LMD Route Process Document - Extension
E_LstMiRteProcDeliveryDocument view_entity from EXTENSION LMD Rte Process Delivery Doc - Extension
E_LstMiRteProcVstListDocument view_entity from EXTENSION LMD Rte Proc Vst List Doc - Extension
I_LastMileRouteProcessDocument view_entity from BASIC LMD Route Process Document Basic

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY client abap.clnt
KEY document_uuid LMD_RPT_DOCUMENT_UUID Document UUID
header_uuid LMD_RPT_HEADER_UUID Route UUID
document_id LMD_COM_DOC_ID Document No.
rpt_document_type LMD_RPT_DOCUMENT_TYPE Doc. Type (Tracking)
eew_lmd_rpt_doc DUMMY Dummy function in length 1

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.

-- Documents for Route Process Tracking
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE LMD_RPT_DOCS (
    CLIENT,             -- abap.clnt
    DOCUMENT_UUID,      -- Document UUID [LMD_RPT_DOCUMENT_UUID]
    HEADER_UUID,        -- Route UUID [LMD_RPT_HEADER_UUID]
    DOCUMENT_ID,        -- Document No. [LMD_COM_DOC_ID]
    RPT_DOCUMENT_TYPE,  -- Doc. Type (Tracking) [LMD_RPT_DOCUMENT_TYPE]
    EEW_LMD_RPT_DOC,    -- Dummy function in length 1 [DUMMY]
    PRIMARY KEY (CLIENT, DOCUMENT_UUID)
);