Search Results msd_level_values_pk




Overview

MSD_LEVEL_VALUES is a Demand Planning table in the MSD (Demand Planning) product schema of Oracle E-Business Suite, documented as VALID in both 12.1.1 and 12.2.2. It stores the master set of level values that describe the dimensions along which demand planning data is aggregated — product, geography, organization, sales channel, sales representative, and user-defined dimensions. As stated in the ETRM metadata, the table holds "all the level values Information including the system generated primary key and the level value attributes," and, importantly, it "is not stripped by the Demand Plan Id," meaning its rows are shared across plans rather than partitioned per planning instance.

The table is classified via heuristic Data Vault mining as a hub, reflecting its role as a stable repository of business keys (level values) referenced by other demand planning structures. This classification is a modeling suggestion only; the physical object predates Data Vault conventions.

Key Information Stored

The table contains 30 documented columns. The most significant are:

Two unique indexes define documented business-key candidates: MSD_LEVEL_VALUES_U1 on LEVEL_PK, and MSD_LEVEL_VALUES_U3 on (INSTANCE, LEVEL_ID, SR_LEVEL_PK).

Common Use Cases and Queries

Typical uses include validating dimension members before loading plans, resolving parent-child hierarchies for reporting, and identifying which values are DP-enabled. A common join resolves scenario entries to their product, geography, organization, channel, or sales-rep level values:

  • Selecting enabled level values: SELECT LEVEL_VALUE_PK, LEVEL_VALUE, LEVEL_VALUE_DESC FROM MSD.MSD_LEVEL_VALUES WHERE DP_ENABLED_FLAG = 'Y';
  • Walking the hierarchy: filter on PARENT_LEVEL_VALUE_PK to retrieve children of a node.
  • Joining scenario entries: SELECT s.*, lv.LEVEL_VALUE FROM MSD.MSD_DP_SCENARIO_ENTRIES s JOIN MSD.MSD_LEVEL_VALUES lv ON s.PRODUCT_LVL_PK = lv.LEVEL_PK;
  • Auditing refresh activity via LAST_REFRESH_NUM and ACTION_CODE.

Related Objects

The following objects reference MSD_LEVEL_VALUES through foreign keys:

These linkages make MSD_LEVEL_VALUES a central dimension table for demand planning scenario and shipment reporting.

  • Table: MSD_LEVEL_VALUES 12.1.1

    owner:MSD,  object_type:TABLE,  fnd_design_data:MSD.MSD_LEVEL_VALUES,  object_name:MSD_LEVEL_VALUES,  status:VALID,  product: MSD - Demand Planningdescription: This table stores all the level values Information including the system generated primary key and the level value attributes. This is not stripped by the Demand Plan Id. ,  implementation_dba_data: MSD.MSD_LEVEL_VALUES

  • Table: MSD_LEVEL_VALUES 12.2.2

    owner:MSD,  object_type:TABLE,  fnd_design_data:MSD.MSD_LEVEL_VALUES,  object_name:MSD_LEVEL_VALUES,  status:VALID,  product: MSD - Demand Planningdescription: This table stores all the level values Information including the system generated primary key and the level value attributes. This is not stripped by the Demand Plan Id. ,  implementation_dba_data: MSD.MSD_LEVEL_VALUES

  • eTRM - MSD Tables and Views 12.2.2

    description: This is the fact table that stores the UOM conversions information. , 

  • eTRM - MSD Tables and Views 12.1.1

    description: This is the fact table that stores the UOM conversions information. , 

  • eTRM - MSD Tables and Views 12.1.1

    description: This is the fact table that stores the UOM conversions information. , 

  • eTRM - MSD Tables and Views 12.2.2

    description: This is the fact table that stores the UOM conversions information. ,