Search Results msd_dp_parameters_v
Overview
MSD_DP_PARAMETERS_V is a Demand Planning view in the Oracle EBS Advanced Planning / Demand Planning module (product code MSD). It exposes the parameter definitions used by a Demand Plan, covering both input parameters and output parameters. According to the ETRM metadata, the view is consumed by Oracle Express, which loads the input parameters from the planning server and uses the output parameters to complete plan execution. The view therefore acts as the integration surface between the EBS Demand Planning repository and the Oracle Express multidimensional engine, presenting plan parameters in a denormalized, human-readable form by resolving lookup codes into their translated meanings.
The view is a reporting and integration construct rather than a transactional object. It joins the base parameter table to demand plan headers, scenario headers, and nine separate references to FND_LOOKUP_VALUES_VL, which translates internal lookup codes into user-facing meanings. Note that the ETRM metadata records this view as "not implemented in this database" for the documented instance, so it may be absent or renamed in certain 12.1.1 / 12.2.2 environments depending on whether Demand Planning has been installed and configured.
Underlying Base Objects
The view is defined over five source tables:
MSD_DP_PARAMETERS(aliasMPR) — the driving table holding one row per Demand Plan parameter.MSD_DEMAND_PLANS(aliasesMDP,MDP2) — supplies the plan name and is joined twice for the current plan and the input demand plan.MSD_DP_SCENARIOS(aliasesMDSV1,MDSV2) — supplies output and input scenario attributes, including scenario name, output period type, and horizon dates.FND_LOOKUP_VALUES_VL(aliasesFLV1throughFLV9) — the standard EBS lookup view, referenced nine times to translate parameter types and flags into meanings.
The primary join links MDP.DEMAND_PLAN_ID = MPR.DEMAND_PLAN_ID. Lookup joins on FLV1 and FLV2 are outer-less equality joins on lookup type and code, while the remaining lookup joins (FLV3 through FLV9) use the Oracle outer-join syntax (+), making those translations optional.
Key Columns
DEMAND_PLAN_ID,DEMAND_PLAN_NAME— identify the plan owning the parameter.PARAMETER_ID,PARAMETER_NAME,PARAMETER_TYPE— the parameter identity;MEANINGfromFLV1resolves the type.PERIOD_TYPEand its meaning (FLV2) — the planning period granularity.START_DATE,END_DATE— the effective range of the parameter.INPUT_SCENARIO_ID/INPUT_DEMAND_PLAN_IDandOUTPUT_SCENARIO_ID— the source and target scenarios and plans.HORIZON_START_DATE,HORIZON_END_DATE,OUTPUT_PERIOD_TYPE— scenario horizon attributes.- Flag columns with meanings:
FORECAST_DATE_USED,FORECAST_BASED_ON,QUANTITY_USED,AMOUNT_USED,FORECAST_USED,FACT_TYPE. - Audit columns:
CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY,REQUEST_ID,PROGRAM_ID. EXCLUDE_FROM_ROLLING_CYCLE,SCN_BUILD_REFRESH_NUM,REVISION,VIEW_NAME— control and versioning attributes.
Common Use Cases and Queries
Typical scenarios include auditing a plan's parameter configuration, tracing input-to-output scenario mapping, and diagnosing integration failures between Demand Planning and Oracle Express.
SELECT demand_plan_name, parameter_name, parameter_type,
meaning, period_type, start_date, end_date,
input_scenario_id, output_scenario_id
FROM msd_dp_parameters_v
WHERE demand_plan_id = :p_plan_id;
SELECT p.demand_plan_name, p.parameter_name, p.meaning
FROM msd_dp_parameters_v p
WHERE p.exclude_from_rolling_cycle = 'Y'
ORDER BY p.demand_plan_name, p.parameter_name;
-
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 ,
-
View: MSD_DP_INPUT_PRS_V
12.2.2
product: MSD - Demand Planning , description: This view specifies the Input Parameters for a demand plan. This is a subset of the MSD_DP_PARAMETERS_V. This view has only the columns required for the input parameters for a demand plan. For the description of the columns of this API, ple , implementation_dba_data: Not implemented in this database ,
-
View: MSD_DP_INPUT_PRS_V
12.1.1
product: MSD - Demand Planning , description: This view specifies the Input Parameters for a demand plan. This is a subset of the MSD_DP_PARAMETERS_V. This view has only the columns required for the input parameters for a demand plan. For the description of the columns of this API, ple , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
View: MSD_DP_OUTPUT_PRS_V
12.2.2
product: MSD - Demand Planning , description: This view specifies the Output Parameters for a demand plan. This is a subset of the MSD_DP_PARAMETERS_V. This view has only the columns required for the output parameters for a demand plan. For the description of the columns of this API, p , implementation_dba_data: Not implemented in this database ,
-
View: MSD_DP_OUTPUT_PRS_V
12.1.1
product: MSD - Demand Planning , description: This view specifies the Output Parameters for a demand plan. This is a subset of the MSD_DP_PARAMETERS_V. This view has only the columns required for the output parameters for a demand plan. For the description of the columns of this API, p , implementation_dba_data: Not implemented in this database ,
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.MSD_OPPORTUNITY_DATA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_OPPORTUNITY_DATA_V, object_name:MSD_OPPORTUNITY_DATA_V, status:VALID,
-
VIEW: APPS.MSD_OPPORTUNITY_DATA_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_OPPORTUNITY_DATA_V, object_name:MSD_OPPORTUNITY_DATA_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. ,