Search Results mrp_ato_forecast_control
Overview
APPS.BOM_PRODUCTFAMILY_MEM_V is a reporting view in Oracle E-Business Suite that exposes the relationship between product family members and their bill of materials components, enriched with descriptive lookup meanings. Its central purpose is to flatten the join between a bill of materials header, its component lines, the master item definition, and three decoding lookups (Forecast Control, Planning Method, and BOM Item Type) into a single queryable result set. The view is particularly relevant to the search term "mrp_ato_forecast_control" because it decodes the ATO_FORECAST_CONTROL item attribute against the MRP_ATO_FORECAST_CONTROL lookup type, translating the stored code into a human-readable FORECAST_CONTROL meaning. In EBS 12.1.1 and 12.2.2, this view supports planning and product family analysis by allowing report writers, concurrent programs, and integration extracts to retrieve forecast-control, planning-method, and item-type information directly without repeated lookup joins.
Underlying Base Objects
The ETRM metadata documents the following referenced base objects for the 12.2.2 release, all owned by APPS:
- BOM_BILL_OF_MATHEMATICS (VIEW) — supplies the bill of materials header and organization context; note the ETRM records this as BOM_BILL_OF_MATERIALS (VIEW), i.e. the BOM header entity.
- BOM_INVENTORY_COMPONENTS (VIEW) — supplies the component lines, including
COMPONENT_ITEM_ID,BILL_SEQUENCE_ID, andBOM_ITEM_TYPE. - MFG_LOOKUPS (VIEW) — referenced three times (aliases ML1, ML2, ML3) to decode Forecast Control, Planning Method, and BOM Item Type.
- MTL_SYSTEM_ITEMS (SYNONYM) — provides the master item attributes, notably
ATO_FORECAST_CONTROLandMRP_PLANNING_CODE. - FND_GLOBAL (PACKAGE) — referenced for session/context resolution, commonly for organization and user context in EBS views.
The view text defines the join as: BIC.BILL_SEQUENCE_ID = BOM.BILL_SEQUENCE_ID; BIC.COMPONENT_ITEM_ID = MSI.INVENTORY_ITEM_ID with matching ORGANIZATION_ID; and the three outer joins to MFG_LOOKUPS on the respective lookup codes and types. The forecasts and planning lookups are outer joins (denoted by (+)), so components without a defined forecast-control or planning code still appear.
Key Columns
- ORGANIZATION_ID — the inventory organization owning the bill and item; sourced from the BOM header.
- COMPONENT_ITEM_ID — the inventory item identifier of the component line.
- BILL_SEQUENCE_ID — the unique identifier of the bill of materials instance linking header to components.
- FORECAST_CONTROL — decoded meaning of
MSI.ATO_FORECAST_CONTROLagainst lookup typeMRP_ATO_FORECAST_CONTROL; the attribute most closely tied to the user's search term. - PLANNING_METHOD — decoded meaning of
MSI.MRP_PLANNING_CODEagainst lookup typeMRP_PLANNING_CODE. - BOM_ITEM_TYPE — decoded meaning of
BIC.BOM_ITEM_TYPEagainst lookup typeBOM_ITEM_TYPE, identifying whether the component is a standard, model, option class, or planning item.
Common Use Cases and Queries
Typical uses include product family/BOM membership extracts, ATO forecast-control audits, and planning-method validation. A representative query retrieves all family members in an organization with their forecast and planning attributes:
SELECT organization_id,
component_item_id,
bill_sequence_id,
forecast_control,
planning_method,
bom_item_type
FROM apps.bom_productfamily_mem_v
WHERE organization_id = :org_id;
A second scenario isolates ATO-related components by filtering on the decoded forecast-control meaning:
SELECT component_item_id, forecast_control
FROM apps.bom_productfamily_mem_v
WHERE forecast_control IS NOT NULL
AND organization_id = :org_id;
Because the view applies SELECT DISTINCT, callers should treat it as a reporting aid rather than a transactional source; joins to additional tables should account for row deduplication. The outer joins also mean FORECAST_CONTROL and PLANNING_METHOD may be null and must be handled with NVL or NULL checks.
-
Lookup Type: MRP_ATO_FORECAST_CONTROL
12.1.1
product: MRP - Master Scheduling/MRP , meaning: MRP ATO FORECAST CONTROL ,
-
Lookup Type: MRP_ATO_FORECAST_CONTROL
12.2.2
product: MRP - Master Scheduling/MRP , meaning: MRP ATO FORECAST CONTROL ,
-
VIEW: APPS.BOM_PRODUCTFAMILY_MEM_V
12.2.2
-
VIEW: APPS.BOM_PRODUCTFAMILY_MEM_V
12.1.1
-
VIEW: APPS.MRP_FORECAST_ITEMS_V
12.1.1
-
VIEW: APPS.MRP_FORECAST_ITEMS_V
12.2.2
-
VIEW: APPS.MRP_SYSTEM_ITEMS_SC_V
12.2.2
-
View: BOM_PRODUCTFAMILY_MEM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_PRODUCTFAMILY_MEM_V, object_name:BOM_PRODUCTFAMILY_MEM_V, status:VALID, product: BOM - Bills of Material , description: View on BOM_INVENTORY_COMPONENTS and MTL_SYSTEMS_ITEMS, used by the product family functionality in R11 , implementation_dba_data: APPS.BOM_PRODUCTFAMILY_MEM_V ,
-
VIEW: APPS.MRP_SYSTEM_ITEMS_SC_V
12.1.1
-
View: BOM_PRODUCTFAMILY_MEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_PRODUCTFAMILY_MEM_V, object_name:BOM_PRODUCTFAMILY_MEM_V, status:VALID, product: BOM - Bills of Material , description: View on BOM_INVENTORY_COMPONENTS and MTL_SYSTEMS_ITEMS, used by the product family functionality in R11 , implementation_dba_data: APPS.BOM_PRODUCTFAMILY_MEM_V ,
-
VIEW: APPS.MSC_SYSTEM_ITEMS_SC_V
12.1.1
-
View: MRP_FORECAST_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FORECAST_ITEMS_V, object_name:MRP_FORECAST_ITEMS_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Forecast items view , implementation_dba_data: APPS.MRP_FORECAST_ITEMS_V ,
-
VIEW: APPS.MSC_SIM_ITEM_ATTRIBUTES_V
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
View: MRP_FORECAST_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FORECAST_ITEMS_V, object_name:MRP_FORECAST_ITEMS_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Forecast items view , implementation_dba_data: APPS.MRP_FORECAST_ITEMS_V ,
-
VIEW: APPS.MSC_SIM_ITEM_ATTRIBUTES_V
12.1.1
-
VIEW: APPS.MSC_ITEM_ATTRIBUTES_V
12.2.2
-
VIEW: APPS.MSC_PDR_ITEM_DETAILS_V
12.2.2
-
VIEW: APPS.MSC_PDR_ITEM_DETAILS_V
12.1.1
-
View: MSC_SYSTEM_ITEMS_SC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SYSTEM_ITEMS_SC_V, object_name:MSC_SYSTEM_ITEMS_SC_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This view shows all the items , implementation_dba_data: APPS.MSC_SYSTEM_ITEMS_SC_V ,
-
View: MRP_SYSTEM_ITEMS_SC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SYSTEM_ITEMS_SC_V, object_name:MRP_SYSTEM_ITEMS_SC_V, status:VALID, product: MRP - Master Scheduling/MRP , description: MRP or MPS planned items view , implementation_dba_data: APPS.MRP_SYSTEM_ITEMS_SC_V ,
-
View: MRP_SYSTEM_ITEMS_SC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SYSTEM_ITEMS_SC_V, object_name:MRP_SYSTEM_ITEMS_SC_V, status:VALID, product: MRP - Master Scheduling/MRP , description: MRP or MPS planned items view , implementation_dba_data: APPS.MRP_SYSTEM_ITEMS_SC_V ,
-
VIEW: APPS.MSC_COLL_ITEM_ATTRIBUTES_V
12.1.1
-
VIEW: APPS.MSC_SYSTEM_ITEMS_SC_V
12.2.2
-
VIEW: APPS.MSC_ITEM_ATTRIBUTES_V
12.1.1
-
VIEW: APPS.MSC_COLL_ITEM_ATTRIBUTES_V
12.2.2
-
View: MSC_SYSTEM_ITEMS_SC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_SYSTEM_ITEMS_SC_V, object_name:MSC_SYSTEM_ITEMS_SC_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This view shows all the items , implementation_dba_data: APPS.MSC_SYSTEM_ITEMS_SC_V ,
-
APPS.PRODUCT_FAMILY_PKG SQL Statements
12.1.1
-
VIEW: APPS.MTL_SYSTEM_ITEMS_FKEYS_V
12.1.1
-
View: MSC_PDR_ITEM_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PDR_ITEM_DETAILS_V, object_name:MSC_PDR_ITEM_DETAILS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_PDR_ITEM_DETAILS_V ,
-
View: MSC_PDR_ITEM_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PDR_ITEM_DETAILS_V, object_name:MSC_PDR_ITEM_DETAILS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , implementation_dba_data: APPS.MSC_PDR_ITEM_DETAILS_V ,
-
APPS.PRODUCT_FAMILY_PKG SQL Statements
12.2.2
-
VIEW: APPS.MTL_SYSTEM_ITEMS_FKEYS_V
12.2.2
-
View: MTL_SYSTEM_ITEMS_FKEYS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FKEYS_V, object_name:MTL_SYSTEM_ITEMS_FKEYS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FKEYS_V ,
-
View: MTL_SYSTEM_ITEMS_FKEYS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FKEYS_V, object_name:MTL_SYSTEM_ITEMS_FKEYS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FKEYS_V ,
-
PACKAGE BODY: APPS.PRODUCT_FAMILY_PKG
12.1.1
-
PACKAGE BODY: APPS.PRODUCT_FAMILY_PKG
12.2.2
-
PACKAGE BODY: APPS.INV_INVIRITD_XMLP_PKG
12.2.2
-
PACKAGE BODY: APPS.INV_INVIRITD_XMLP_PKG
12.1.1
-
APPS.BOM_DIAGUNITTEST_IBRDATA SQL Statements
12.1.1
-
APPS.BOM_DIAGUNITTEST_IBRDATA SQL Statements
12.2.2
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_IBRDATA
12.1.1
-
PACKAGE BODY: APPS.BOM_DIAGUNITTEST_IBRDATA
12.2.2
-
PACKAGE BODY: APPS.BOMPKMUD
12.1.1
-
PACKAGE BODY: APPS.BOMPKMUD
12.2.2