Search Results bom_mixed_model_map_processes
Overview
BOM_MIXED_MODEL_MAP_PROCESSES is an Oracle EBS Bills of Material (BOM) table that stores the process or line-operation detail, together with aggregated summary metrics, for each mixed model map. Mixed model maps are used in mixed model production environments to balance work across lines, cells, and operations when multiple product models share capacity. This table captures, per operation, the loading requirements and assignments for machine and labor resources, takt time, and in-process kanban quantities that drive line-balancing decisions.
The table resides in the BOM schema and is classified as VALID in the ETRM 12.1.1 / 12.2.2 metadata. Its primary key constraint, BOM_MIXED_MODEL_MAP_PROC_PK, is composed of the columns MIXED_MODEL_MAP_ID, GROUP_NUMBER, and SEQUENCE_ID. A unique index, BOM_MIXED_MODEL_MAP_U1, covers the same three columns, confirming them as the business-key candidate. From a Data Vault modeling perspective, the metadata's heuristic classification is satellite-leaning: the table supplies descriptive and derived measures keyed to a parent map and a grouping/sequence, rather than acting as a standalone hub or pure transactional link.
Key Information Stored
- MIXED_MODEL_MAP_ID — Foreign key to BOM_MIXED_MODEL_MAP_HEADER; identifies the parent mixed model map and the first component of the composite primary key.
- GROUP_NUMBER and SEQUENCE_ID — Together with MIXED_MODEL_MAP_ID, they form the composite primary key and business-key candidate (unique index BOM_MIXED_MODEL_MAP_U1), positioning a process within the map's grouping and ordering.
- OPERATION_CODE — The operation or line operation to which the summary metrics apply.
- MACHINE_WEIGHTED_TIME, LABOR_WEIGHTED_TIME, and TOTAL_WEIGHTED_TIME — Weighted time measures used for resource balancing across the map.
- MACHINES_NEEDED, MACHINES_ASSIGNED, and MACHINES_NEEDED_DELTA — Machine capacity demand, assignment, and variance.
- LABOR_NEEDED, LABOR_ASSIGNED, and LABOR_NEEDED_DELTA — Labor demand, assignment, and variance.
- TAKT_TIME and TAKT_TIME_FOR_ASSIGNED — Takt time for the operation and for assigned resources, supporting line-rate analysis.
- IN_PROCESS_KANBAN and IN_PROCESS_KANBAN_DELTA — In-process kanban quantity and its variance.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — Standard audit columns maintained by the application.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — Concurrent program context that populated or last refreshed the rows.
The table documents 26 columns in the 12.2.2 physical schema; the surrogate row identity is the composite primary key rather than a single sequence-generated ID.
Common Use Cases and Queries
Typical use cases include line-balancing analysis, machine and labor capacity reporting, and takt-time monitoring for mixed model maps. Analysts join the table to its header to obtain map-level context and to BOM_MIXED_MODEL_MAP_CELLS where cell-level loading detail is required.
A representative query retrieves operations where assigned resources fall short of need:
- SELECT p.MIXED_MODEL_MAP_ID, p.OPERATION_CODE, p.MACHINES_NEEDED, p.MACHINES_ASSIGNED, p.MACHINES_NEEDED_DELTA, p.LABOR_NEEDED, p.LABOR_ASSIGNED, p.LABOR_NEEDED_DELTA FROM BOM.BOM_MIXED_MODEL_MAP_PROCESSES p WHERE p.MIXED_MODEL_MAP_ID = :map_id ORDER BY p.GROUP_NUMBER, p.SEQUENCE_ID;
Reporting commonly aggregates weighted time by operation to compare total weighted time against takt time, and to reconcile in-process kanban against its delta. Because REQUEST_ID and the program columns are populated by concurrent processes, purging or auditing refreshes can be scoped by PROGRAM_UPDATE_DATE.
Related Objects
- BOM_MIXED_MODEL_MAP_HEADER — Parent table; join on MIXED_MODEL_MAP_PROCESSES.MIXED_MODEL_MAP_ID = MAP_HEADER.MIXED_MODEL_MAP_ID.
- BOM_MIXED_MODEL_MAP_CELLS — Cell-level detail; the documented relationship maps MIXED_MODEL_MAP_ID, GROUP_NUMBER, and SEQUENCE_ID between the two tables.
- BOM_OPERATION_SEQUENCES / BOM_OPERATION_RESOURCES — Source of operation and resource definitions referenced by OPERATION_CODE.
- BOM_RESOURCES — Resource master used to interpret machine and labor assignments.
- BOM_DEPARTMENTS — Departments under which line operations are defined.
- MTL_SYSTEM_ITEMS_B — Item context for the models and maps being balanced.
- FND_CONCURRENT_REQUESTS — Resolves REQUEST_ID to the concurrent program execution that populated the row.
- FND_USER — Resolves CREATED_BY and LAST_UPDATED_BY to application users for audit reporting.
-
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 ,
-
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 ,
-
View: BOM_MIXED_MODEL_MAP_PROC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_PROC_V, object_name:BOM_MIXED_MODEL_MAP_PROC_V, status:VALID, product: BOM - Bills of Material , description: Contains process, line operation, and summary information for a mixed model map , implementation_dba_data: APPS.BOM_MIXED_MODEL_MAP_PROC_V ,
-
SYNONYM: APPS.BOM_MIXED_MODEL_MAP_PROCESSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_MIXED_MODEL_MAP_PROCESSES, status:VALID,
-
VIEW: APPS.BOM_MIXED_MODEL_MAP_PROC_V
12.1.1
-
VIEW: APPS.BOM_MIXED_MODEL_MAP_PROC_V
12.2.2
-
SYNONYM: APPS.BOM_MIXED_MODEL_MAP_PROCESSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BOM_MIXED_MODEL_MAP_PROCESSES, status:VALID,
-
View: BOM_MIXED_MODEL_MAP_PROC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_PROC_V, object_name:BOM_MIXED_MODEL_MAP_PROC_V, status:VALID, product: BOM - Bills of Material , description: Contains process, line operation, and summary information for a mixed model map , implementation_dba_data: APPS.BOM_MIXED_MODEL_MAP_PROC_V ,
-
VIEW: BOM.BOM_MIXED_MODEL_MAP_PROCESSES#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_MIXED_MODEL_MAP_PROCESSES#, status:VALID,
-
Table: BOM_MIXED_MODEL_MAP_CELLS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_CELLS, object_name:BOM_MIXED_MODEL_MAP_CELLS, status:VALID, product: BOM - Bills of Material , description: Matrix cell values for mixed model maps , implementation_dba_data: BOM.BOM_MIXED_MODEL_MAP_CELLS ,
-
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 ,
-
TABLE: BOM.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,
-
VIEW: BOM.BOM_MIXED_MODEL_MAP_PROCESSES#
12.2.2
-
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 ,
-
APPS.BOM_MIXED_MODEL_MAP_PVT SQL Statements
12.2.2
-
TABLE: BOM.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,
-
Table: BOM_MIXED_MODEL_MAP_CELLS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_CELLS, object_name:BOM_MIXED_MODEL_MAP_CELLS, status:VALID, product: BOM - Bills of Material , description: Matrix cell values for mixed model maps , implementation_dba_data: BOM.BOM_MIXED_MODEL_MAP_CELLS ,
-
APPS.BOM_MIXED_MODEL_MAP_PVT SQL Statements
12.1.1
-
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,
-
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,
-
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 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.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.BOM_MIXED_MODEL_MAP_PVT
12.1.1
-
PACKAGE BODY: APPS.BOM_MIXED_MODEL_MAP_PVT
12.2.2
-
VIEW: APPS.BOM_MIXED_MODEL_MAP_PROC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_PROC_V, object_name:BOM_MIXED_MODEL_MAP_PROC_V, status:VALID,
-
VIEW: APPS.BOM_MIXED_MODEL_MAP_PROC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_MIXED_MODEL_MAP_PROC_V, object_name:BOM_MIXED_MODEL_MAP_PROC_V, status:VALID,
-
APPS.BOM_MIXED_MODEL_MAP_PVT dependencies on BOM_MIXED_MODEL_MAP_PROCESSES
12.1.1
-
APPS.BOM_MIXED_MODEL_MAP_PVT dependencies on BOM_MIXED_MODEL_MAP_PROCESSES
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. ,
-
eTRM - BOM Tables and Views
12.2.2
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.1.1
description: Table to map wip transactions to their corresponding event types. ,
-
12.1.1 DBA Data
12.1.1