Search Results msd_levels_v
Overview
MSD_LEVELS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the MSD (Demand Planning) product family within the Advanced Planning and Demand Planning modules. The view exposes the definition of planning levels used by the demand planning engine, together with the owning dimension assigned to each level and the classification of the level type. It presents this information in a denormalized, human-readable form suitable for reporting, data extraction, and integration with external planning or business intelligence tools.
The view is documented as VALID in ETRM metadata for both EBS 12.1.1 and 12.2.2. Because MSD_LEVELS_V resolves lookup codes to their descriptive meanings, report developers and integration architects can query it directly without repeatedly joining to lookup tables or decoding internal codes. This makes it a convenient access point for understanding the dimensional model on which demand planning hierarchies are constructed.
Underlying Base Objects
The view is defined over two documented base objects: the synonym MSD_LEVELS (which resolves to the MSD_LEVELS table) and the view FND_LOOKUP_VALUES_VL. The SQL joins MSD_LEVELS to FND_LOOKUP_VALUES_VL twice, aliased as FLV1 and FLV2.
- FLV1 is constrained by LOOKUP_TYPE = 'MSD_DIMENSIONS' and matches DIMENSION_CODE on the level record. It supplies the descriptive meaning for the owning dimension.
- FLV2 is constrained by LOOKUP_TYPE = 'MSD_LEVEL_TYPE' and matches LEVEL_TYPE_CODE. It supplies the descriptive meaning for the level type.
- MSD_LEVELS is the primary source for level identifiers, names, descriptions, attributes, and WHO columns.
Because the join is expressed as an inner join via the WHERE clause, a level record is only returned when valid lookup values exist for both its dimension code and its level type code. The view therefore inherits the standard _VL (view with translation) behavior of FND_LOOKUP_VALUES_VL for language-sensitive lookup meanings.
Key Columns
- ROW_ID — the ROWID of the underlying MSD_LEVELS row, used for row addressing and refetching.
- LEVEL_ID — the unique identifier of the planning level.
- LEVEL_NAME and DESCRIPTION — the user-facing name and description of the level.
- DIMENSION_CODE and OWNING_DIMENSION — the internal dimension code and its translated meaning, identifying which dimension owns the level.
- LEVEL_TYPE_CODE and LEVEL_TYPE — the internal level type code and its translated meaning.
- ATTRIBUTE1_CONTEXT through ATTRIBUTE5_CONTEXT — descriptive/context columns associated with the level's flexible attribute configuration.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — standard WHO audit columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent program context columns identifying the process that last updated the row.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the descriptive flexfield segments and their context category.
Common Use Cases and Queries
Typical usage includes validating level configurations before running demand planning collections, populating reference data in external planning models, and building ad hoc reports of dimensions and their levels. A simple listing of all levels is:
SELECT level_id, level_name, owning_dimension, level_type FROM apps.msd_levels_v WHERE level_type = 'Demand Plan';
To group levels by owning dimension for analytical counts:
SELECT owning_dimension, COUNT(*) FROM apps.msd_levels_v GROUP BY owning_dimension ORDER BY owning_dimension;
To extract audit and program context for integration or troubleshooting:
SELECT level_id, level_name, last_update_date, last_updated_by, program_id FROM apps.msd_levels_v WHERE last_update_date > SYSDATE - 7;
As the view performs inner joins to lookup values, queries should anticipate that levels lacking a valid MSD_DIMENSIONS or MSD_LEVEL_TYPE lookup entry will not appear; reconciling such gaps is best done against the base MSD_LEVELS table. All access should be granted through the APPS schema or an appropriate synonym and read-only privilege.
-
View: MSD_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_LEVELS_V, object_name:MSD_LEVELS_V, status:VALID, product: MSD - Demand Planning , description: This view provides the Levels, their Owning Dimension. It also specifies the Level Type. , implementation_dba_data: APPS.MSD_LEVELS_V ,
-
View: MSD_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_LEVELS_V, object_name:MSD_LEVELS_V, status:VALID, product: MSD - Demand Planning , description: This view provides the Levels, their Owning Dimension. It also specifies the Level Type. , implementation_dba_data: APPS.MSD_LEVELS_V ,
-
VIEW: APPS.MSD_HIERARCHY_LEVELS_V
12.1.1
-
VIEW: APPS.MSD_HIERARCHY_LEVELS_V
12.2.2
-
View: MSD_HIERARCHY_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_HIERARCHY_LEVELS_V, object_name:MSD_HIERARCHY_LEVELS_V, status:VALID, product: MSD - Demand Planning , description: This view provides the Level Associations within a Hierarchy in the Real Dimension realm. , implementation_dba_data: APPS.MSD_HIERARCHY_LEVELS_V ,
-
View: MSD_HIERARCHY_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_HIERARCHY_LEVELS_V, object_name:MSD_HIERARCHY_LEVELS_V, status:VALID, product: MSD - Demand Planning , description: This view provides the Level Associations within a Hierarchy in the Real Dimension realm. , implementation_dba_data: APPS.MSD_HIERARCHY_LEVELS_V ,
-
PACKAGE BODY: APPS.MSD_CS_DFN_UTL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MSD_CS_DFN_UTL, status:VALID,
-
APPS.MSD_CS_DFN_UTL SQL Statements
12.1.1
-
APPS.MSD_CS_DFN_UTL SQL Statements
12.2.2
-
PACKAGE BODY: APPS.MSD_CS_DFN_UTL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MSD_CS_DFN_UTL, status:VALID,
-
SYNONYM: APPS.MSD_LEVELS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSD_LEVELS, status:VALID,
-
SYNONYM: APPS.MSD_LEVELS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSD_LEVELS, status:VALID,
-
View: MSD_DP_SCN_OUTPUT_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCN_OUTPUT_LEVELS_V, object_name:MSD_DP_SCN_OUTPUT_LEVELS_V, status:VALID, product: MSD - Demand Planning , description: This view provides the Levels at which the output Scenario for a demand plan is to be generated. This stores the level values for all the dimension except for the time dimensions as the level values for the time dimension are pre-seeded as , implementation_dba_data: APPS.MSD_DP_SCN_OUTPUT_LEVELS_V ,
-
12.2.2 FND Design Data
12.2.2
-
View: MSD_DP_SCN_OUTPUT_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCN_OUTPUT_LEVELS_V, object_name:MSD_DP_SCN_OUTPUT_LEVELS_V, status:VALID, product: MSD - Demand Planning , description: This view provides the Levels at which the output Scenario for a demand plan is to be generated. This stores the level values for all the dimension except for the time dimensions as the level values for the time dimension are pre-seeded as , implementation_dba_data: APPS.MSD_DP_SCN_OUTPUT_LEVELS_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.MSD_HIERARCHY_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_HIERARCHY_LEVELS_V, object_name:MSD_HIERARCHY_LEVELS_V, status:VALID,
-
VIEW: APPS.MSD_HIERARCHY_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_HIERARCHY_LEVELS_V, object_name:MSD_HIERARCHY_LEVELS_V, status:VALID,
-
VIEW: APPS.MSD_LEVELS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_LEVELS_V, object_name:MSD_LEVELS_V, status:VALID,
-
VIEW: APPS.MSD_LEVELS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_LEVELS_V, object_name:MSD_LEVELS_V, status:VALID,
-
PACKAGE BODY: APPS.MSD_CS_DFN_UTL
12.1.1
-
PACKAGE BODY: APPS.MSD_CS_DFN_UTL
12.2.2
-
APPS.MSD_CS_DFN_UTL dependencies on MSD_LEVELS_V
12.1.1
-
APPS.MSD_CS_DFN_UTL dependencies on MSD_LEVELS_V
12.2.2
-
VIEW: APPS.FND_LOOKUP_VALUES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUP_VALUES_VL, object_name:FND_LOOKUP_VALUES_VL, status:VALID,
-
VIEW: APPS.FND_LOOKUP_VALUES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUP_VALUES_VL, object_name:FND_LOOKUP_VALUES_VL, status:VALID,
-
APPS.MSD_CS_DFN_UTL dependencies on MSD_LEVELS
12.2.2
-
APPS.MSD_CS_DFN_UTL dependencies on MSD_LEVELS
12.1.1
-
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. ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - MSD Tables and Views
12.2.2
description: This is the fact table that stores the UOM conversions information. ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - MSD Tables and Views
12.1.1
description: This is the fact table that stores the UOM conversions information. ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,