Search Results dp_enabled_flag
Overview
APPS.MSD_LEVEL_ASSOCIATIONS_V1 is a reporting view in Oracle E-Business Suite that presents Demand Planning (DP) and Sales and Operations Planning (SOP) level associations in a flattened, human-readable format. It combines records from the level association table with descriptive attributes from the level and level value tables, together with the application instance code, to expose the hierarchy of planning levels and their parent-child relationships. The view is owned by the APPS schema and is referenced by components of the Enterprise Territory and Resource Management / Demand Planning data model in EBS 12.1.1 and 12.2.2.
The view is defined as a UNION ALL of two branches: one for DP level values and level associations (where the related level records carry a null plan type) and one for SOP level values and level associations. A constant PLAN_TYPE column of 'DP' is projected in the documented branch, allowing consumers to distinguish the planning context of each row. The view therefore serves as a consolidated dictionary of the level hierarchy used by the planning engine, resolving surrogate keys to descriptive names and values.
Underlying Base Objects
The view is defined over the following documented base objects, all referenced through APPS synonyms:
- MSD_LEVEL_ASSOCIATIONS — the driving table, supplying the instance, level identifiers, surrogate level and parent-level keys, refresh and audit columns.
- MSD_LEVELS — joined twice (aliased ML1 and ML2) to resolve the level name and dimension code for the current level and its parent level.
- MSD_LEVEL_VALUES — joined twice (aliased MLV1 and MLV2) to resolve the current and parent level values, surrogate primary keys, and data-processing enabled flags.
- MSC_APPS_INSTANCES — supplies the human-readable instance code for the source instance.
- MSD_SR_UTIL — a package invoked in the select list to return the null description and null primary key when the data-processing enabled flag equals 3.
The joins are keyed on LEVEL_ID, INSTANCE, and the surrogate level primary keys, ensuring that each association row is paired with the matching level definitions and level values for both the child and the parent.
Key Columns
- ROW_ID — the ROWID of the underlying MSD_LEVEL_ASSOCIATIONS record, useful for direct row identification.
- INSTANCE / INSTANCE_CODE — the internal instance identifier and its descriptive code from MSC_APPS_INSTANCES.
- LEVEL_ID / LEVEL_NAME / DIMENSION_CODE — the current level identifier and its descriptive name and dimension.
- LEVEL_VALUE / LEVEL_PK / SR_LEVEL_PK — the current level value, its primary key, and its surrogate key.
- PARENT_LEVEL_ID / PARENT_LEVEL_NAME — the identifier and name of the parent level.
- PARENT_LEVEL_VALUE / SR_PARENT_LEVEL_PK — the parent level value and surrogate key, decoded to the null description or null primary key when the data-processing enabled flag equals 3.
- DP_ENABLED_FLAG — flags indicating the data-processing status of the current and parent level values.
- PLAN_TYPE — a literal distinguishing DP from SOP records.
- Audit columns including CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and REQUEST_ID.
Common Use Cases and Queries
The view is most often queried to list the level hierarchy for a given instance or level, or to trace parent values for a specific level value. A representative query is:
SELECT level_name, dimension_code, level_value, parent_level_name, parent_level_value FROM apps.msd_level_associations_v1 WHERE instance_code = :instance_code ORDER BY level_name, level_value;SELECT level_id, level_value, sr_level_pk, parent_level_id FROM apps.msd_level_associations_v1 WHERE level_id = :level_id;— retrieves all associations for a specific level, directly answering a search on LEVEL_ID.SELECT DISTINCT level_id, level_name, dimension_code FROM apps.msd_level_associations_v1 WHERE plan_type = 'DP';— enumerates the DP levels available for reporting or validation.
Typical applications include validating planning hierarchies before a data refresh, resolving surrogate keys to descriptive values in custom reports, and troubleshooting parent-child level mappings used by the Demand Planning engine.
-
VIEW: APPS.MSD_LEVEL_ASSOCIATIONS_V1
12.1.1
-
VIEW: APPS.MSD_LEVEL_ASSOCIATIONS_V1
12.2.2
-
VIEW: MSD.MSD_LEVEL_VALUES_DS#
12.2.2
-
VIEW: MSD.MSD_LEVEL_VALUES_DS_TEMP#
12.2.2
-
VIEW: MSD.MSD_LEVEL_ASSOCIATIONS#
12.2.2
-
VIEW: MSD.MSD_LEVEL_VALUES#
12.2.2
-
VIEW: APPS.MSD_SR_CLASS_ALL_V
12.2.2
-
VIEW: APPS.MSD_SR_SUP_ALL_V
12.1.1
-
VIEW: MSD.MSD_ST_LEVEL_VALUES#
12.2.2
-
VIEW: MSD.MSD_ST_LEVEL_ASSOCIATIONS#
12.2.2
-
VIEW: APPS.MSD_SR_SUP_ALL_V
12.2.2
-
VIEW: APPS.MSD_SR_CLASS_ALL_V
12.1.1
-
VIEW: APPS.MSD_SR_LOC_SUP_V
12.1.1
-
VIEW: APPS.MSD_SR_LOC_SUP_V
12.2.2
-
APPS.MSD_STRIPE_DEMAND_PLAN SQL Statements
12.2.2
-
APPS.MSD_STRIPE_DEMAND_PLAN SQL Statements
12.1.1
-
VIEW: MSC.MSC_INSTANCE_ORGS#
12.2.2
-
VIEW: APPS.MSD_SR_CUS_CLASS_V
12.2.2
-
VIEW: APPS.MSD_SR_CUS_CLASS_V
12.1.1
-
VIEW: APPS.MSD_SR_ZONE_ALL_V
12.2.2
-
VIEW: APPS.MSD_LEVEL_VALUES_V
12.1.1
-
VIEW: APPS.MSD_LEVEL_VALUES_V
12.2.2
-
APPS.MSD_PUSH_SETUP_DATA SQL Statements
12.1.1
-
VIEW: MSD.MSD_LEVEL_VALUES_DS_TEMP#
12.2.2
owner:MSD, object_type:VIEW, object_name:MSD_LEVEL_VALUES_DS_TEMP#, status:VALID,
-
VIEW: MSD.MSD_LEVEL_VALUES_DS#
12.2.2
owner:MSD, object_type:VIEW, object_name:MSD_LEVEL_VALUES_DS#, status:VALID,
-
APPS.MSD_PUSH_SETUP_DATA SQL Statements
12.2.2
-
VIEW: APPS.MSD_SR_ZONE_ALL_V
12.1.1
-
VIEW: MSD.MSD_LEVEL_ASSOCIATIONS#
12.2.2
owner:MSD, object_type:VIEW, object_name:MSD_LEVEL_ASSOCIATIONS#, status:VALID,
-
VIEW: APPS.MSD_LEVEL_VALUES_DS_V
12.1.1
-
VIEW: APPS.MSD_SR_LOC_CUS_V
12.2.2
-
VIEW: MSD.MSD_LEVEL_VALUES#
12.2.2
owner:MSD, object_type:VIEW, object_name:MSD_LEVEL_VALUES#, status:VALID,
-
VIEW: APPS.MSD_SR_LOC_CUS_V
12.1.1
-
VIEW: APPS.MSD_SR_CUSTZONE_ZONE_V
12.2.2
-
VIEW: APPS.MSD_LEVEL_VALUES_DS_V
12.2.2
-
VIEW: MSD.MSD_ST_LEVEL_VALUES#
12.2.2
owner:MSD, object_type:VIEW, object_name:MSD_ST_LEVEL_VALUES#, status:VALID,
-
VIEW: APPS.MSD_SR_LOC_REG_V
12.2.2
-
VIEW: APPS.MSD_SR_LOC_REG_V
12.1.1
-
VIEW: APPS.MSD_SR_SUP_ALL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSD_SR_SUP_ALL_V, status:VALID,
-
VIEW: MSD.MSD_ST_LEVEL_ASSOCIATIONS#
12.2.2
owner:MSD, object_type:VIEW, object_name:MSD_ST_LEVEL_ASSOCIATIONS#, status:VALID,
-
VIEW: APPS.MSD_SR_ZONE_ALL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSD_SR_ZONE_ALL_V, status:VALID,
-
VIEW: APPS.MSD_SR_PRD_IT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_PRD_IT_V, object_name:MSD_SR_PRD_IT_V, status:VALID,
-
VIEW: APPS.MSD_SR_ZONE_ALL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSD_SR_ZONE_ALL_V, status:VALID,
-
VIEW: APPS.MSD_SR_CUSTZONE_ZONE_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSD_SR_CUSTZONE_ZONE_V, status:VALID,
-
VIEW: APPS.MSD_SR_LOC_SUP_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSD_SR_LOC_SUP_V, status:VALID,
-
VIEW: APPS.MSD_SR_CUSTZONE_ZONE_V
12.1.1
-
VIEW: APPS.MSD_SR_PRD_CAT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_PRD_CAT_V, object_name:MSD_SR_PRD_CAT_V, status:VALID,
-
VIEW: APPS.MSD_SR_LOC_SUP_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSD_SR_LOC_SUP_V, status:VALID,
-
VIEW: APPS.MSD_SR_SUP_ALL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MSD_SR_SUP_ALL_V, status:VALID,
-
VIEW: APPS.MSD_SR_CUSTZONE_ZONE_V
12.2.2
owner:APPS, object_type:VIEW, object_name:MSD_SR_CUSTZONE_ZONE_V, status:VALID,
-
VIEW: APPS.MSD_SR_CAT_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_CAT_ALL_V, object_name:MSD_SR_CAT_ALL_V, status:VALID,