Search Results bom_mixed_model_map_header
Overview
BOM_MIXED_MODEL_MAP_HEADER is a Bills of Material (BOM) application table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores the header information for a mixed model map. Mixed model mapping is used in repetitive manufacturing environments to associate a production line or process with a family item, defining how demand for a product family is distributed across a line and time horizon. The table is owned by the BOM schema and resides at the core of the mixed model map definition, with each row representing one map definition header.
From a Data Vault modeling perspective, the metadata classifies this object as satellite-leaning. This heuristic suggests the table behaves primarily as a descriptive satellite, holding attributes and effective-dated context around a business key rather than acting as an independent hub or as a pure junction link. Modelers should treat the combination of LINE_ID, FAMILY_ITEM_ID, ORGANIZATION_ID, and PROCESS_OR_LINEOP as the principal business key candidate.
Key Information Stored
The table contains 26 documented columns. The most significant are described below.
- MIXED_MODEL_MAP_ID — Surrogate primary key (BOM_MIXED_MODEL_MAP_HEADER_PK) and the unique key enforced by BOM_MIXED_MODEL_MAP_HEADER_U1. It is the value propagated to child tables.
- LINE_ID, FAMILY_ITEM_ID, ORGANIZATION_ID, PROCESS_OR_LINEOP — Together these form the business-key candidate enforced by unique index BOM_MIXED_MODEL_MAP_HEADER_U2, identifying the line, family item, inventory organization, and process or line operation.
- DEMAND_TYPE and DEMAND_CODE — Classify the type and source of demand being mapped.
- START_DATE and END_DATE — Effective dating for the map header, enabling date-ranged planning definitions.
- DEMAND_DAYS and HOURS_PER_DAY — Define the planning horizon and daily capacity used to distribute demand.
- BOOST_PERCENT — Percentage uplift applied during demand distribution across the mixed model.
- SORT_ORDER and TIME_TYPE / TIME_UOM — Control processing sequence and the unit of measure for time-based attributes.
- IPK_VALUE — Internal planning key value associated with the map.
- SAVE_FLAG — Indicator controlling persistence of the map definition.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — Standard Oracle EBS audit and concurrent program who-columns.
Common Use Cases and Queries
Typical uses include auditing mixed model map definitions, resolving which family items are mapped to which production lines, and joining header data to child process and resource detail tables for repetitive planning reports.
A representative query retrieving active map headers for an organization:
- SELECT mmmh.mixed_model_map_id, mmmh.line_id, mmmh.family_item_id, mmmh.start_date, mmmh.end_date FROM bom.bom_mixed_model_map_header mmmh WHERE mmmh.organization_id = :org_id AND SYSDATE BETWEEN mmmh.start_date AND NVL(mmmh.end_date, SYSDATE + 1);
To resolve the family item description, join to MTL_SYSTEM_ITEMS_B on FAMILY_ITEM_ID and ORGANIZATION_ID. To enumerate line processes for a given map, join to BOM_MIXED_MODEL_MAP_PROCESSES on MIXED_MODEL_MAP_ID. Reporting on effective-dated definitions benefits from filtering using START_DATE and END_DATE, while demand distribution analysis uses DEMAND_DAYS, HOURS_PER_DAY, and BOOST_PERCENT.
Related Objects
The following objects are the most significant relationship partners for this table.
- MTL_SYSTEM_ITEMS_B — Referenced by the foreign key on FAMILY_ITEM_ID and ORGANIZATION_ID; supplies the family item definition and organization context.
- BOM_MIXED_MODEL_MAP_PROCESSES — Child table referencing MIXED_MODEL_MAP_ID; holds process-level detail for each map header.
- BOM_MIXED_MODEL_MAP_RES — Child table also referencing MIXED_MODEL_MAP_ID; stores resource-level detail associated with the map.
- BOM_MIXED_MODEL_MAP_HEADER_PK / U1 / U2 — Primary, surrogate unique, and composite business-key unique constraints governing row identity.
- BOM schema views and concurrent programs — Reporting and planning programs that read the header and its detail children to drive repetitive manufacturing demand distribution.
-
Table: BOM_MIXED_MODEL_MAP_HEADER
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_HEADER, object_name:BOM_MIXED_MODEL_MAP_HEADER, status:VALID, product: BOM - Bills of Material , description: Header information for a mixed model map , implementation_dba_data: BOM.BOM_MIXED_MODEL_MAP_HEADER ,
-
Table: BOM_MIXED_MODEL_MAP_HEADER
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_HEADER, object_name:BOM_MIXED_MODEL_MAP_HEADER, status:VALID, product: BOM - Bills of Material , description: Header information for a mixed model map , implementation_dba_data: BOM.BOM_MIXED_MODEL_MAP_HEADER ,
-
VIEW: BOM.BOM_MIXED_MODEL_MAP_HEADER#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_MIXED_MODEL_MAP_HEADER#, status:VALID,
-
SYNONYM: APPS.BOM_MIXED_MODEL_MAP_HEADER
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_MIXED_MODEL_MAP_HEADER, status:VALID,
-
SYNONYM: APPS.BOM_MIXED_MODEL_MAP_HEADER
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BOM_MIXED_MODEL_MAP_HEADER, status:VALID,
-
VIEW: BOM.BOM_MIXED_MODEL_MAP_HEADER#
12.2.2
-
TABLE: BOM.BOM_MIXED_MODEL_MAP_HEADER
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_HEADER, object_name:BOM_MIXED_MODEL_MAP_HEADER, status:VALID,
-
TABLE: BOM.BOM_MIXED_MODEL_MAP_HEADER
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_HEADER, object_name:BOM_MIXED_MODEL_MAP_HEADER, status:VALID,
-
Table: BOM_MIXED_MODEL_MAP_PROCESSES
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_PROCESSES, object_name:BOM_MIXED_MODEL_MAP_PROCESSES, status:VALID, product: BOM - Bills of Material , description: Processes or line operations and summary information for mixed model maps , implementation_dba_data: BOM.BOM_MIXED_MODEL_MAP_PROCESSES ,
-
Table: BOM_MIXED_MODEL_MAP_PROCESSES
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_PROCESSES, object_name:BOM_MIXED_MODEL_MAP_PROCESSES, status:VALID, product: BOM - Bills of Material , description: Processes or line operations and summary information for mixed model maps , implementation_dba_data: BOM.BOM_MIXED_MODEL_MAP_PROCESSES ,
-
PACKAGE BODY: APPS.BOM_MIXED_MODEL_MAP_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_MIXED_MODEL_MAP_PVT, status:VALID,
-
PACKAGE BODY: APPS.BOM_MIXED_MODEL_MAP_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_MIXED_MODEL_MAP_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
Table: MTL_SYSTEM_ITEMS_B
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B, object_name:MTL_SYSTEM_ITEMS_B, status:VALID, product: INV - Inventory , description: Inventory item definitions , implementation_dba_data: INV.MTL_SYSTEM_ITEMS_B ,
-
Table: MTL_SYSTEM_ITEMS_B
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B, object_name:MTL_SYSTEM_ITEMS_B, status:VALID, product: INV - Inventory , description: Inventory item definitions , implementation_dba_data: INV.MTL_SYSTEM_ITEMS_B ,
-
APPS.BOM_MIXED_MODEL_MAP_PVT SQL Statements
12.2.2
-
APPS.BOM_MIXED_MODEL_MAP_PVT dependencies on BOM_MIXED_MODEL_MAP_HEADER
12.2.2
-
APPS.BOM_MIXED_MODEL_MAP_PVT SQL Statements
12.1.1
-
APPS.BOM_MIXED_MODEL_MAP_PVT dependencies on BOM_MIXED_MODEL_MAP_HEADER
12.1.1
-
PACKAGE BODY: APPS.BOM_MIXED_MODEL_MAP_PVT
12.1.1
-
PACKAGE BODY: APPS.BOM_MIXED_MODEL_MAP_PVT
12.2.2
-
eTRM - BOM Tables and Views
12.2.2
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - BOM Tables and Views
12.1.1
description: Table to map wip transactions to their corresponding event types. ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - BOM Tables and Views
12.2.2
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - BOM Tables and Views
12.1.1
description: Table to map wip transactions to their corresponding event types. ,
-
12.1.1 DBA Data
12.1.1