Search Results msd_level_associations_v1
Overview
MSD_LEVEL_ASSOCIATIONS_V1 is an APPS-owned database view within the Demand Planning (MSD) product family of Oracle E-Business Suite. It exposes the level value associations that link a planning level to its parent level value within a demand planning hierarchy, together with the surrogate primary keys that Oracle Demand Planning generates for those level values. The view is documented as a single-purpose object: it is used exclusively by the Level Associations form, which administrators and planners use to maintain parent-child relationships between level values.
Because the view resolves both the child level value and its parent level value into readable names in a single row, it is a convenient integration and reporting surface. Users searching on level_id will find this column exposed directly, alongside the parent counterpart parent_level_id, making the view well suited to queries that traverse or flatten a planning hierarchy. The presence of WHO columns and concurrent program columns further indicates that the view is also a diagnostic surface for concurrent processes that build or refresh level associations.
Underlying Base Objects
The view is defined over five underlying objects, each referenced in the APPS schema through synonyms: MSC_APPS_INSTANCES, MSD_LEVELS, MSD_LEVEL_ASSOCIATIONS, MSD_LEVEL_VALUES, and the MSD_SR_UTIL package.
- MSD_LEVEL_ASSOCIATIONS is the driving table. It supplies the association row itself, the child and parent surrogate key pairs (SR_LEVEL_PK and SR_PARENT_LEVEL_PK), the instance identifier, and the standard audit and concurrent program columns.
- MSD_LEVELS is joined twice (aliases ML1 and ML2) to resolve the child
LEVEL_IDand thePARENT_LEVEL_IDinto their level names and dimension codes. - MSD_LEVEL_VALUES is likewise joined twice (MLV1 and MLV2) to resolve the child and parent level values, matching on instance and surrogate key in addition to level identifier.
- MSC_APPS_INSTANCES supplies the
INSTANCE_CODE, translating the numeric instance identifier into its human-readable code. - MSD_SR_UTIL is the Demand Planning utility package that supports surrogate key handling for these hierarchy records.
Key Columns
LEVEL_IDandPARENT_LEVEL_ID— the identifiers of the child and parent planning levels respectively; these are the columns most commonly used for lookups and joins.LEVEL_NAME,DIMENSION_CODE, andPARENT_LEVEL_NAME— descriptive attributes of the levels involved.LEVEL_VALUEandPARENT_LEVEL_VALUE, withLEVEL_PK— the member values and their keys.SR_LEVEL_PKandSR_PARENT_LEVEL_PK— system-generated surrogate keys for the child and parent level values.INSTANCEandINSTANCE_CODE— the planning instance context for the association.LAST_UPDATE_DATE,CREATED_BY,LAST_REFRESH_NUM,REQUEST_ID,PROGRAM_ID— audit and process traceability columns.
Common Use Cases and Queries
A typical use is to list all child values for a given parent within an instance, or to confirm that associations were refreshed by a specific concurrent request.
SELECT level_id, level_name, level_value,
parent_level_id, parent_level_name, parent_level_value
FROM apps.msd_level_associations_v1
WHERE instance_code = :instance_code
AND level_id = :level_id
ORDER BY parent_level_value, level_value;
A second pattern checks recent refresh activity by request or program, which helps validate that the Level Associations form is displaying current data.
SELECT request_id, program_id, last_refresh_num,
COUNT(*) association_count
FROM apps.msd_level_associations_v1
WHERE last_update_date >= SYSDATE - 7
GROUP BY request_id, program_id, last_refresh_num;
Because the view is documented as being used only by the Level Associations form, custom integrations should treat it as a read-only reporting surface and avoid relying on it as an interface table.
-
View: MSD_LEVEL_ASSOCIATIONS_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_LEVEL_ASSOCIATIONS_V1, object_name:MSD_LEVEL_ASSOCIATIONS_V1, status:VALID, product: MSD - Demand Planning , description: This view specifies the Level Value Associations for a level with its parent level value in a hierarchy along with the system generated primary keys for these level values. This view is used only for the Level Associations form. , implementation_dba_data: APPS.MSD_LEVEL_ASSOCIATIONS_V1 ,
-
View: MSD_LEVEL_ASSOCIATIONS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_LEVEL_ASSOCIATIONS_V1, object_name:MSD_LEVEL_ASSOCIATIONS_V1, status:VALID, product: MSD - Demand Planning , description: This view specifies the Level Value Associations for a level with its parent level value in a hierarchy along with the system generated primary keys for these level values. This view is used only for the Level Associations form. , implementation_dba_data: APPS.MSD_LEVEL_ASSOCIATIONS_V1 ,
-
SYNONYM: APPS.MSD_LEVEL_ASSOCIATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSD_LEVEL_ASSOCIATIONS, status:VALID,
-
SYNONYM: APPS.MSD_LEVEL_ASSOCIATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSD_LEVEL_ASSOCIATIONS, status:VALID,
-
SYNONYM: APPS.MSD_LEVELS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSD_LEVELS, status:VALID,
-
SYNONYM: APPS.MSD_LEVELS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSD_LEVELS, status:VALID,
-
PACKAGE: APPS.MSD_SR_UTIL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:MSD_SR_UTIL, status:VALID,
-
PACKAGE: APPS.MSD_SR_UTIL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:MSD_SR_UTIL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.MSD_LEVEL_VALUES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSD_LEVEL_VALUES, status:VALID,
-
SYNONYM: APPS.MSD_LEVEL_VALUES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSD_LEVEL_VALUES, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.MSD_LEVEL_ASSOCIATIONS_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_LEVEL_ASSOCIATIONS_V1, object_name:MSD_LEVEL_ASSOCIATIONS_V1, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.MSD_LEVEL_ASSOCIATIONS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_LEVEL_ASSOCIATIONS_V1, object_name:MSD_LEVEL_ASSOCIATIONS_V1, status:VALID,
-
SYNONYM: APPS.MSC_APPS_INSTANCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSC_APPS_INSTANCES, status:VALID,
-
SYNONYM: APPS.MSC_APPS_INSTANCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSC_APPS_INSTANCES, status:VALID,
-
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. ,
-
12.2.2 DBA Data
12.2.2
-
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 - MSD Tables and Views
12.2.2
description: This is the fact table that stores the UOM conversions information. ,