Search Results mrp_load_parameters_v
Overview
MRP_LOAD_PARAMETERS_V is an APPS-owned view in the Oracle E-Business Suite Master Scheduling/MRP (MRP) product. It is documented as providing "Forecast and master schedule source list information," and its role is to present a consolidated, readable projection of the load parameters that drive the loading of forecast and master schedule data into a planning session. The underlying MRP_LOAD_PARAMETERS table stores the raw load request rows, including internal identifiers, designators, and status flags, but it references source designators and organizations only by numeric identifier. The view resolves those identifiers into descriptive information, so report writers and integration developers can identify the load source without performing their own joins to the forecast, schedule, and organization lookup objects.
Because the object is a view and not a table, it is read-only, exposes no DML, and inherits the security and grants applied at the APPS layer. It is reported as VALID in the ETRM metadata for 12.2.2 and is also available in 12.1.1, where the same column set and UNION structure apply.
Underlying Base Objects
The documented base objects are MRP_LOAD_PARAMETERS, MRP_FORECAST_DESIGNATORS, MRP_SCHEDULE_DESIGNATORS, MTL_PARAMETERS, MRP_DESIGNATORS_VIEW, MRP_ORGANIZATIONS_V, and MRP_PLAN_ORGANIZATIONS_V, several of which are exposed through synonyms in the APPS schema. The view text is a UNION of two branches that distinguish the load source. The first branch selects rows where LOAD_SOURCE equals 2 and joins MRP_LOAD_PARAMETERS to MRP_FORECAST_DESIGNATORS on SOURCE_FORECAST_DESIGNATOR and SOURCE_ORGANIZATION_ID, and to MTL_PARAMETERS on ORGANIZATION_ID. The second branch selects rows where LOAD_SOURCE equals 1 and joins to MRP_SCHEDULE_DESIGNATORS and MRP_ORGANIZATIONS_V, with outer joins on the organization view, and again joins MTL_PARAMETERS for the organization code. The schedule designator branch also references MRP_DESIGNATORS_VIEW and MRP_PLAN_ORGANIZATIONS_V in the broader object dependency list. Each branch contributes a literal SOURCE_TYPE (5 for forecast sources, SCHEDULE_TYPE for master schedule sources) and aliases SOURCE_DESIGNATOR from the corresponding designator column.
Key Columns
- ROW_ID, QUERY_ID, PROCESS_STATUS — row identity and load processing state for the request.
- ORGANIZATION_ID, SCHEDULE_DESIGNATOR, FORECAST_DESIGNATOR — the destination organization and designators for the load.
- LOAD_SOURCE, LOAD_DESTINATION — the type and target of the load operation.
- SOURCE_ORGANIZATION_ID, SOURCE_SCHEDULE_DESIGNATOR, SOURCE_FORECAST_DESIGNATOR — the source identifiers used in the join predicates.
- ERROR_MESSAGE — error text associated with a failed or rejected load row.
- SELECTION_LIST_NAME, SELECTION_LIST_TYPE — the selection list applied to the loaded data.
- SOURCE_TYPE — literal 5 for forecast sources; the schedule type for master schedule sources.
- SOURCE_DESCRIPTION, SOURCE_DEMAND_CLASS — descriptive attributes of the source designator.
- SOURCE_DESIGNATOR — alias exposing the source forecast or schedule designator.
- SOURCE_ORGANIZATION_CODE — organization code resolved from MTL_PARAMETERS.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical uses include diagnostics of failed forecast or schedule loads, reporting of source-to-destination load definitions, and integration extracts that populate external planning systems with source list information.
List load rows with resolved sources:
- SELECT query_id, process_status, source_type, source_organization_code, source_designator, source_description, error_message FROM mrp_load_parameters_v WHERE process_status = 'ERROR';
Retrieve forecast load definitions for a destination organization:
- SELECT schedule_designator, forecast_designator, source_designator, source_description, selection_list_name FROM mrp_load_parameters_v WHERE organization_id = :org_id AND source_type = 5;
Inspect master schedule sources and demand classes:
- SELECT organization_id, schedule_designator, source_designator, source_description, source_demand_class FROM mrp_load_parameters_v WHERE load_source = 1;
-
View: MRP_LOAD_PARAMETERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_LOAD_PARAMETERS_V, object_name:MRP_LOAD_PARAMETERS_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Forecast and master schedule source list information , implementation_dba_data: APPS.MRP_LOAD_PARAMETERS_V ,
-
View: MRP_LOAD_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_LOAD_PARAMETERS_V, object_name:MRP_LOAD_PARAMETERS_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Forecast and master schedule source list information , implementation_dba_data: APPS.MRP_LOAD_PARAMETERS_V ,
-
SYNONYM: APPS.MRP_LOAD_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MRP_LOAD_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MRP_LOAD_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MRP_LOAD_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MRP_SCHEDULE_DESIGNATORS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MRP_SCHEDULE_DESIGNATORS, status:VALID,
-
SYNONYM: APPS.MRP_SCHEDULE_DESIGNATORS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MRP_SCHEDULE_DESIGNATORS, status:VALID,
-
VIEW: APPS.MRP_ORGANIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_ORGANIZATIONS_V, object_name:MRP_ORGANIZATIONS_V, status:VALID,
-
SYNONYM: APPS.MRP_FORECAST_DESIGNATORS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MRP_FORECAST_DESIGNATORS, status:VALID,
-
VIEW: APPS.MRP_ORGANIZATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_ORGANIZATIONS_V, object_name:MRP_ORGANIZATIONS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.MRP_FORECAST_DESIGNATORS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MRP_FORECAST_DESIGNATORS, status:VALID,
-
VIEW: APPS.MRP_DESIGNATORS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_DESIGNATORS_VIEW, object_name:MRP_DESIGNATORS_VIEW, status:VALID,
-
VIEW: APPS.MRP_DESIGNATORS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_DESIGNATORS_VIEW, object_name:MRP_DESIGNATORS_VIEW, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.MRP_LOAD_PARAMETERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_LOAD_PARAMETERS_V, object_name:MRP_LOAD_PARAMETERS_V, status:VALID,
-
VIEW: APPS.MRP_LOAD_PARAMETERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_LOAD_PARAMETERS_V, object_name:MRP_LOAD_PARAMETERS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.MRP_PLAN_ORGANIZATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_PLAN_ORGANIZATIONS_V, object_name:MRP_PLAN_ORGANIZATIONS_V, status:VALID,
-
VIEW: APPS.MRP_PLAN_ORGANIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_PLAN_ORGANIZATIONS_V, object_name:MRP_PLAN_ORGANIZATIONS_V, status:VALID,
-
eTRM - MRP Tables and Views
12.1.1
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
eTRM - MRP Tables and Views
12.2.2
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
eTRM - MRP Tables and Views
12.1.1
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - MRP Tables and Views
12.2.2
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,