OIU_ME_MEDOC

Transparent Table Application Table

Measurement document header

OIU_ME_MEDOC is an SAP database table in S/4HANA. Measurement document header. It contains 19 fields. 4 CDS views read from this table.

CDS Views using this table (4)

ViewTypeJoinVDMDescription
I_PRAMeasurementDocument view from BASIC PRA Measurement Document
I_PRAWellCompltnMsmtDocItm view_entity inner BASIC PRA Well Completion Measurement Doc Item
I_PRAWellMsmtDocumentItem view_entity inner BASIC PRA Well Measurement Document Item
UPOV_ME_MEDOC_PRA view from Measurement document header (PRA)

Fields (19)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY docnr OIU_ME_DOCNR DocNr
KEY docyr OIU_ME_DOCYR Doc. year
mecls OIU_ME_MECLS Meas.Class
metyp OIU_ME_METYP Meas.Type
objnr OIU_ME_OBJNR Object No.
mesrc OIU_ME_MESRC Meas. Source
srcky OIU_ME_SRCKY Source Key
src_docnr OIU_ME_SRC_DOCNR Source Doc.
src_docyr OIU_ME_SRC_DOCYR Source Year
uomgr OIU_ME_UOMGR UoM group
umrsl OIB_UMRSL Conv. Group
meayr OIU_ME_MEAYR Year
meapd OIU_ME_MEAPD Msmt.Period
meats OIU_ME_MEATS Timestamp
xchng OIU_ME_XCHNG Changed
xdelt OIU_ME_XDELT Deleted
oiu_cruser ERNAM Created By
oiu_timestamp TZNTSTMPS Time Stamp

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.

-- Measurement document header
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE OIU_ME_MEDOC (
    MANDT,          -- Client [MANDT]
    DOCNR,          -- DocNr [OIU_ME_DOCNR]
    DOCYR,          -- Doc. year [OIU_ME_DOCYR]
    MECLS,          -- Meas.Class [OIU_ME_MECLS]
    METYP,          -- Meas.Type [OIU_ME_METYP]
    OBJNR,          -- Object No. [OIU_ME_OBJNR]
    MESRC,          -- Meas. Source [OIU_ME_MESRC]
    SRCKY,          -- Source Key [OIU_ME_SRCKY]
    SRC_DOCNR,      -- Source Doc. [OIU_ME_SRC_DOCNR]
    SRC_DOCYR,      -- Source Year [OIU_ME_SRC_DOCYR]
    UOMGR,          -- UoM group [OIU_ME_UOMGR]
    UMRSL,          -- Conv. Group [OIB_UMRSL]
    MEAYR,          -- Year [OIU_ME_MEAYR]
    MEAPD,          -- Msmt.Period [OIU_ME_MEAPD]
    MEATS,          -- Timestamp [OIU_ME_MEATS]
    XCHNG,          -- Changed [OIU_ME_XCHNG]
    XDELT,          -- Deleted [OIU_ME_XDELT]
    OIU_CRUSER,     -- Created By [ERNAM]
    OIU_TIMESTAMP,  -- Time Stamp [TZNTSTMPS]
    PRIMARY KEY (MANDT, DOCNR, DOCYR)
);