/SCDL/DB_ADDMEAS

Transparent Table Application Table

Unit

/SCDL/DB_ADDMEAS is an SAP database table in S/4HANA. Unit. It contains 12 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
I_EWM_DeliveryQuantity view from BASIC Warehouse Delivery Item Quantity
I_EWM_DeliveryQuantity_2 view_entity from BASIC Warehouse Delivery Item Quantity
I_EWM_WhseReqMeasurement view_entity from BASIC Mass or Volume of Warehouse Request

Fields (12)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY docid /SCDL/DL_DOCID Document ID
KEY itemid /SCDL/DL_ITEMID Item ID
KEY slineid /SCDL/DL_SLINEID Schedule Line ID
KEY qty_role /SCDL/DL_QTY_ROLE Quantity Role
KEY qty_category /SCDL/DL_QTY_CATEGORY UoM Category
doccat /SCDL/DL_DOCCAT Doc. Category
qty_meas_type /SCDL/DL_QTY_MEAS_TYPE Type of QD
qty /SCDL/DL_QUANTITY Quantity
uom /SCDL/DL_UOM Unit of Measure
ext_uom_ind /SCDL/DL_EXT_UOM_IND Additional UoM
qty_indicator /SCDL/DL_INDICATOR Determin. Ind.

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.

-- Unit
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /SCDL/DB_ADDMEAS (
    MANDT,          -- Client [MANDT]
    DOCID,          -- Document ID [/SCDL/DL_DOCID]
    ITEMID,         -- Item ID [/SCDL/DL_ITEMID]
    SLINEID,        -- Schedule Line ID [/SCDL/DL_SLINEID]
    QTY_ROLE,       -- Quantity Role [/SCDL/DL_QTY_ROLE]
    QTY_CATEGORY,   -- UoM Category [/SCDL/DL_QTY_CATEGORY]
    DOCCAT,         -- Doc. Category [/SCDL/DL_DOCCAT]
    QTY_MEAS_TYPE,  -- Type of QD [/SCDL/DL_QTY_MEAS_TYPE]
    QTY,            -- Quantity [/SCDL/DL_QUANTITY]
    UOM,            -- Unit of Measure [/SCDL/DL_UOM]
    EXT_UOM_IND,    -- Additional UoM [/SCDL/DL_EXT_UOM_IND]
    QTY_INDICATOR,  -- Determin. Ind. [/SCDL/DL_INDICATOR]
    PRIMARY KEY (MANDT, DOCID, ITEMID, SLINEID, QTY_ROLE, QTY_CATEGORY)
);