Search Results msd_data_element
Overview
APPS.MSD_DP_SCENARIOS_V is a reporting and integration view in Oracle EBS Advanced Supply Chain Planning / Demand Planning (MSD schema). It exposes Demand Planning scenario definitions in a denormalized, human-readable form by joining the base scenario table to its parent demand plan and to three FND lookup translations. In Oracle EBS 12.1.1 and 12.2.2 the view is owned by APPS and is intended for concurrent program output, BI Publisher reports, and interfaces that must present scenario metadata without re-implementing the lookup decoding logic.
The view resolves coded values into their display meanings: output period type, forecast date used, and forecast based on. This makes it the preferred source for any extract that must show a scenario's business attributes rather than raw lookup codes. Rows are ordered by demand plan and scenario name, which supports deterministic reporting output.
Underlying Base Objects
The documented base objects are:
- MSD_DP_SCENARIOS (synonym to the scenario base table) — the driving table, aliased MDS. It supplies scenario identity, horizon, history and forecast parameters, flags, descriptive flexfield attributes, and WHO/audit columns.
- MSD_DEMAND_PLANS (synonym) — aliased MDP; supplies DEMAND_PLAN_NAME using DEMAND_PLAN_ID as the join key.
- FND_LOOKUP_VALUES_VL (view) — referenced three times as FLV1, FLV2 and FLV3 to translate OUTPUT_PERIOD_TYPE, FORECAST_DATE_USED and FORECAST_BASED_ON.
Join logic: MDP.DEMAND_PLAN_ID = MDS.DEMAND_PLAN_ID is an inner join (every scenario must belong to a plan). FLV1 is also an inner join on LOOKUP_TYPE = 'MSD_PERIOD_TYPE', so a scenario whose period type has no lookup entry will be excluded. FLV2 and FLV3 are outer joins (indicated by the (+) operator) on LOOKUP_TYPE = 'MSD_DATE_USED' and LOOKUP_TYPE = 'MSD_DATA_ELEMENT' respectively, so missing lookup rows yield NULL meanings rather than dropping the scenario.
Key Columns
- DEMAND_PLAN_ID / DEMAND_PLAN_NAME — plan identity and descriptive name.
- SCENARIO_ID / SCENARIO_NAME / DESCRIPTION — scenario identity and description.
- OUTPUT_PERIOD_TYPE plus FLV1.MEANING — period code and its MSD_PERIOD_TYPE meaning.
- HORIZON_START_DATE / HORIZON_END_DATE — planning horizon bounds.
- HISTORY_START_DATE / HISTORY_END_DATE — historical demand window.
- FORECAST_DATE_USED plus FLV2.MEANING — which date drives the forecast (MSD_DATE_USED).
- FORECAST_BASED_ON plus FLV3.MEANING — the source data element for the forecast; the MSD_DATA_ELEMENT lookup is the element referenced in the user's search.
- PUBLISH_FLAG / ENABLE_FLAG / CONSUME_FLAG — publishing, activation and consumption control flags.
- PRICE_LIST_NAME — associated price list, if any.
- Attribute Category (ATTRIBUTE_CATEGORY) and ATTRIBUTE1–ATTRIBUTE15 — descriptive flexfield segments.
- 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 that created or last updated the row.
Common Use Cases and Queries
Typical uses include building scenario listings for Demand Planning administration reports, feeding downstream extracts, and validating that MSD_DATA_ELEMENT and MSD_DATE_USED lookups are populated before running forecast processes.
Active scenarios for one plan:
- SELECT scenario_name, output_period_type, meaning, forecast_based_on, forecast_date_used
- FROM apps.msd_dp_scenarios_v
- WHERE demand_plan_id = :p_plan_id AND enable_flag = 'Y';
Scenarios whose forecast data element meaning is null (missing lookup):
- SELECT demand_plan_name, scenario_name, forecast_based_on
- FROM apps.msd_dp_scenarios_v
- WHERE forecast_based_on IS NOT NULL AND flv3_meaning IS NULL;
Because the view is read-only and sourced from synonyms, it must be accessed through the APPS schema in custom code; do not query the base synonyms directly if consistent lookup decoding is required.
-
Lookup Type: MSD_DATA_ELEMENT
12.1.1
product: MSD - Demand Planning , meaning: MSD_DATA_ELEMENT , description: Demand Planning Data Element ,
-
Lookup Type: MSD_DATA_ELEMENT
12.2.2
product: MSD - Demand Planning , meaning: MSD_DATA_ELEMENT , description: Demand Planning Data Element ,
-
VIEW: APPS.MSD_DP_SCENARIOS_V
12.2.2
-
VIEW: APPS.MSD_DP_SCENARIOS_V
12.1.1
-
View: MSD_DP_PARAMETERS_V
12.1.1
product: MSD - Demand Planning , description: This view stores the Parameters (both Input as well as Output) to be used by a Demand Plan. This will be used by Oracle Express to load the Data from the PS (all Input Parameters) and the Output parameters will be used by Oracle Express to , implementation_dba_data: Not implemented in this database ,
-
View: MSD_DP_PARAMETERS_V
12.2.2
product: MSD - Demand Planning , description: This view stores the Parameters (both Input as well as Output) to be used by a Demand Plan. This will be used by Oracle Express to load the Data from the PS (all Input Parameters) and the Output parameters will be used by Oracle Express to , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
View: MSD_DP_SCENARIOS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCENARIOS_V, object_name:MSD_DP_SCENARIOS_V, status:VALID, product: MSD - Demand Planning , description: This table provides the Scenarios to be generated from a particular Demand Plan. , implementation_dba_data: APPS.MSD_DP_SCENARIOS_V ,
-
View: MSD_DP_SCENARIOS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCENARIOS_V, object_name:MSD_DP_SCENARIOS_V, status:VALID, product: MSD - Demand Planning , description: This table provides the Scenarios to be generated from a particular Demand Plan. , implementation_dba_data: APPS.MSD_DP_SCENARIOS_V ,
-
TABLE: MSD.MSD_DP_PARAMETERS
12.2.2
owner:MSD, object_type:TABLE, fnd_design_data:MSD.MSD_DP_PARAMETERS, object_name:MSD_DP_PARAMETERS, status:VALID,
-
TABLE: MSD.MSD_DP_PARAMETERS
12.1.1
owner:MSD, object_type:TABLE, fnd_design_data:MSD.MSD_DP_PARAMETERS, object_name:MSD_DP_PARAMETERS, status:VALID,
-
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. ,