OIU_CM_PARAM

Transparent Table Customizing Table

Common PRA Parameter

OIU_CM_PARAM is an SAP database table in S/4HANA. Common PRA Parameter. It contains 10 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
UPOV_PR_MP_UOM view left_outer Measurement Point (UOM)
UPOV_PR_WC_UOM view left_outer UOM: Well Completion

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
ep_active OIU_EP_ACTIVE PRA active
hier_mp OIU_HIER_MP MP Std Hier
hier_dn OIU_HIER_DN DN Std Hier
hier_wc OIU_HIER_WC WC Std Hier
pm_int_on OIU_PM_INT_ON PM Int. Active
hier_active OIU_HIER_ACTIVE Hier. active
lease_fuel OIU_LEASEFUEL Lease fuel config
ngl_agri OIU_NGL_AGRI use gas AGRI for NGL
unappr_vcr OIU_VCR_ERROR VCR create mode

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.

-- Common PRA Parameter
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE OIU_CM_PARAM (
    MANDT,        -- Client [MANDT]
    EP_ACTIVE,    -- PRA active [OIU_EP_ACTIVE]
    HIER_MP,      -- MP Std Hier [OIU_HIER_MP]
    HIER_DN,      -- DN Std Hier [OIU_HIER_DN]
    HIER_WC,      -- WC Std Hier [OIU_HIER_WC]
    PM_INT_ON,    -- PM Int. Active [OIU_PM_INT_ON]
    HIER_ACTIVE,  -- Hier. active [OIU_HIER_ACTIVE]
    LEASE_FUEL,   -- Lease fuel config [OIU_LEASEFUEL]
    NGL_AGRI,     -- use gas AGRI for NGL [OIU_NGL_AGRI]
    UNAPPR_VCR,   -- VCR create mode [OIU_VCR_ERROR]
    PRIMARY KEY (MANDT)
);