Search Results msd_dp_scenario_events_v
Overview
The MSD_DP_SCENARIO_EVENTS_V view is an APPS-owned database view within the MSD (Demand Planning) product family of Oracle E-Business Suite, valid in both 12.1.1 and 12.2.2. It presents the complete set of demand planning events that are associated with a Demand Plan scenario, with one deliberate exclusion: New Product Introduction (NPI) events are not surfaced by this view. The event categories represented are Promotion, Cannibalization, Product Phase Out, and Miscellaneous events.
The view exists to give report authors, discoverer workbooks, concurrent programs, and integration interfaces a single denormalized access point that combines scenario-level header attributes, event master attributes, and the scenario-to-event association details. Rather than requiring callers to join the scenario view, the event master view, and the association table independently, the view performs that join internally and exposes a flat row-per-association result set. This makes it well suited to demand planning review reports, event calendars, and downstream extracts feeding forecasting or promotional planning processes.
Underlying Base Objects
The view text joins three documented base objects:
MSD_DP_SCENARIOS_V(aliasedMDSV) — supplies the Demand Plan and scenario header context, including horizon dates, period type, forecast basis, and price list.MSD_EVENTS_V(aliasedMEV) — supplies the event master definition, including event name, description, event type, and introduction type.MSD_DP_SCENARIO_EVENTS(aliasedMDSE, referenced via synonym) — the association detail object that links a specific event to a specific demand plan and scenario, and carries association-level attributes such as priority and the standard WHO/audit columns.
The join conditions are equality-based across three key pairs: MDSV.DEMAND_PLAN_ID = MDSE.DEMAND_PLAN_ID, MDSV.SCENARIO_ID = MDSE.SCENARIO_ID, and MEV.EVENT_ID = MDSE.EVENT_ID. The view therefore returns one row per scenario-event association, not one row per scenario or per event.
Key Columns
ROW_ID— the ROWID of the underlyingMSD_DP_SCENARIO_EVENTSassociation row, useful as a unique row identifier.DEMAND_PLAN_ID,DEMAND_PLAN_NAME— identify the parent demand plan.SCENARIO_ID,SCENARIO_NAME,DESCRIPTION— identify and describe the scenario to which the event is attached.OUTPUT_PERIOD_TYPE_ID,OUTPUT_PERIOD_TYPE,HORIZON_START_DATE,HORIZON_END_DATE— define the planning horizon and bucketing for the scenario.FORECAST_DATE_USED_ID,FORECAST_DATE_USED,FORECAST_BASED_ON_ID,FORECAST_BASED_ON,PRICE_LIST_NAME— describe the forecast generation basis for the scenario.EVENT_ID,EVENT_NAME,EVENT_DESCRIPTION,EVENT_TYPE_ID,EVENT_TYPE,INTRODUCTION_TYPE_ID,INTRODUCTION_TYPE— describe the associated event.EVENT_ASSOCIATION_PRIORITY— the priority of the event as associated with this scenario;DEFAULT_EVENT_PRIORITYcarries the event master priority for comparison.LAST_UPDATE_DATE,LAST_UPDATED_BY,CREATION_DATE,CREATED_BY,LAST_UPDATE_LOGIN— standard audit columns from the association table.REQUEST_ID,PROGRAM_APPLICATION_ID,PROGRAM_ID,PROGRAM_UPDATE_DATE— concurrent program traceability columns identifying the process that last touched the row.
Common Use Cases and Queries
Typical uses include extracting all non-NPI events for a scenario for review, reconciling scenario event priorities against the event master defaults, and feeding event calendars into downstream planning reports.
List all events for a given demand plan and scenario:
SELECT event_id, event_name, event_type, event_association_priority FROM msd_dp_scenario_events_v WHERE demand_plan_id = :p_plan AND scenario_id = :p_scenario ORDER BY event_association_priority;
Identify priority overrides where scenario association differs from the event default:
SELECT demand_plan_name, scenario_name, event_name, event_association_priority, default_event_priority FROM msd_dp_scenario_events_v WHERE event_association_priority <> default_event_priority;
Audit which concurrent request last modified the associations:
SELECT scenario_name, event_name, last_update_date, last_updated_by, request_id, program_id FROM msd_dp_scenario_events_v WHERE last_update_date >= :p_since;
Report all events by type across the planning horizon:
SELECT event_type, event_name, demand_plan_name, scenario_name, horizon_start_date, horizon_end_date FROM msd_dp_scenario_events_v ORDER BY event_type, horizon_start_date;
Because NPI events are excluded by design, reports requiring NPI data must query the constituent base objects directly rather than this view.
-
View: MSD_DP_SCENARIO_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCENARIO_EVENTS_V, object_name:MSD_DP_SCENARIO_EVENTS_V, status:VALID, product: MSD - Demand Planning , description: This view provides all the Events except for New Product Introduction Event - i.e., Promotion, Cannibalization, Product Phase Out, and Miscellaneous Events that are associated with a Demand Plan Scenario. , implementation_dba_data: APPS.MSD_DP_SCENARIO_EVENTS_V ,
-
View: MSD_DP_SCENARIO_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCENARIO_EVENTS_V, object_name:MSD_DP_SCENARIO_EVENTS_V, status:VALID, product: MSD - Demand Planning , description: This view provides all the Events except for New Product Introduction Event - i.e., Promotion, Cannibalization, Product Phase Out, and Miscellaneous Events that are associated with a Demand Plan Scenario. , implementation_dba_data: APPS.MSD_DP_SCENARIO_EVENTS_V ,
-
VIEW: APPS.MSD_DP_SCENARIO_ALL_EVENTS_V
12.1.1
-
VIEW: APPS.MSD_DP_SCENARIO_ALL_EVENTS_V
12.2.2
-
SYNONYM: APPS.MSD_DP_SCENARIO_EVENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MSD_DP_SCENARIO_EVENTS, status:VALID,
-
SYNONYM: APPS.MSD_DP_SCENARIO_EVENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MSD_DP_SCENARIO_EVENTS, status:VALID,
-
View: MSD_DP_SCENARIO_ALL_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCENARIO_ALL_EVENTS_V, object_name:MSD_DP_SCENARIO_ALL_EVENTS_V, status:VALID, product: MSD - Demand Planning , description: This view provides all the Events - i.e., Promotion, Cannibalization, Product Phase Out, New Product Introduction, and Miscellaneous Events that are associated with a Demand Plan Scenario. , implementation_dba_data: APPS.MSD_DP_SCENARIO_ALL_EVENTS_V ,
-
12.2.2 FND Design Data
12.2.2
-
View: MSD_DP_SCENARIO_ALL_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCENARIO_ALL_EVENTS_V, object_name:MSD_DP_SCENARIO_ALL_EVENTS_V, status:VALID, product: MSD - Demand Planning , description: This view provides all the Events - i.e., Promotion, Cannibalization, Product Phase Out, New Product Introduction, and Miscellaneous Events that are associated with a Demand Plan Scenario. , implementation_dba_data: APPS.MSD_DP_SCENARIO_ALL_EVENTS_V ,
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.MSD_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_EVENTS_V, object_name:MSD_EVENTS_V, status:VALID,
-
VIEW: APPS.MSD_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_EVENTS_V, object_name:MSD_EVENTS_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.MSD_DP_SCENARIO_ALL_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCENARIO_ALL_EVENTS_V, object_name:MSD_DP_SCENARIO_ALL_EVENTS_V, status:VALID,
-
VIEW: APPS.MSD_DP_SCENARIO_ALL_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCENARIO_ALL_EVENTS_V, object_name:MSD_DP_SCENARIO_ALL_EVENTS_V, status:VALID,
-
VIEW: APPS.MSD_DP_SCENARIOS_CS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCENARIOS_CS_V, object_name:MSD_DP_SCENARIOS_CS_V, status:VALID,
-
VIEW: APPS.MSD_DP_SCENARIO_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCENARIO_EVENTS_V, object_name:MSD_DP_SCENARIO_EVENTS_V, status:VALID,
-
VIEW: APPS.MSD_DP_SCENARIO_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCENARIO_EVENTS_V, object_name:MSD_DP_SCENARIO_EVENTS_V, status:VALID,
-
VIEW: APPS.MSD_DP_SCENARIOS_CS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_DP_SCENARIOS_CS_V, object_name:MSD_DP_SCENARIOS_CS_V, 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. ,
-
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
-
12.1.1 DBA Data
12.1.1