MPE_RTGV_ORDCMPI

Transparent Table Application Table

Delta BOM items: Order specific component instances

MPE_RTGV_ORDCMPI is an SAP database table in S/4HANA. Delta BOM items: Order specific component instances. It contains 7 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_RoutingOrderSpecificInstance view from BASIC Delta BOM Items Order Specific Component Instances

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY delta_cmp_i_cnt mpe_rtgv_delta_cmp_cnt Comp. Counter
tmxguid cim_dmu_guid16 DMU GUID
inst_guid cim_dmu_guid16 DMU GUID
tmxguid_reference cim_dmu_guid16 DMU GUID
delta_type mpe_rtgv_delta_type Delta Type
ref_designator mpe_rtgv_bom_ref_designator Ref. Designator

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.

-- Delta BOM items: Order specific component instances
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE MPE_RTGV_ORDCMPI (
    MANDT,              -- Client [mandt]
    DELTA_CMP_I_CNT,    -- Comp. Counter [mpe_rtgv_delta_cmp_cnt]
    TMXGUID,            -- DMU GUID [cim_dmu_guid16]
    INST_GUID,          -- DMU GUID [cim_dmu_guid16]
    TMXGUID_REFERENCE,  -- DMU GUID [cim_dmu_guid16]
    DELTA_TYPE,         -- Delta Type [mpe_rtgv_delta_type]
    REF_DESIGNATOR,     -- Ref. Designator [mpe_rtgv_bom_ref_designator]
    PRIMARY KEY (MANDT, DELTA_CMP_I_CNT)
);