Search Results include_in_rollup
Overview
BOM_STANDARD_OPERATIONS is a reference table in the Oracle E-Business Suite Bills of Material (BOM) module that stores the standard operation definitions used in manufacturing routing and work-in-process (WIP) execution. Each row represents a discrete manufacturing operation — for example, assembly, soldering, testing, or packaging — that can be attached to a routing sequence for a manufactured item or to a standard bill of material. The table is owned by the BOM schema and is validated as of Oracle EBS 12.1.1 and 12.2.2, containing 57 documented columns.
The object is organization-specific. The ORGANIZATION_ID column anchors every standard operation to the inventory organization defined in MTL_PARAMETERS, meaning that operation codes are defined and maintained per organization. Rows are further associated with a producing department (DEPARTMENT_ID) and, when applicable, a canonical WIP line (LINE_ID).
From a Data Vault modeling perspective, the heuristic classification mined from the foreign key structure is satellite-leaning. The table has the character of a business-vault satellite: it holds descriptive and functional attributes attached to a business key (the operation identity) rather than serving as a pure hub of distinct business entities or as a pure link between them. This classification is a modeling suggestion, not an Oracle-imposed structure.
Key Information Stored
The primary key of the table is BOM_STANDARD_OPERATIONS_PK, defined on the surrogate composite of LINE_ID, OPERATION_TYPE, and STANDARD_OPERATION_ID. Business-key uniqueness is enforced by two additional unique indexes: BOM_STANDARD_OPERATIONS_U1 on OPERATION_CODE, ORGANIZATION_ID, OPERATION_TYPE, and LINE_ID, and BOM_STANDARD_OPERATIONS_U2 on STANDARD_OPERATION_ID. The most significant columns include:
- STANDARD_OPERATION_ID — surrogate identifier for the standard operation; part of the primary key and the U2 business key.
- OPERATION_CODE — user-visible code that uniquely identifies the operation within an organization; part of U1.
- ORGANIZATION_ID — foreign key to MTL_PARAMETERS, scoping the operation to an inventory organization.
- OPERATION_TYPE — classifies the operation and participates in both the primary key and U1.
- LINE_ID — foreign key to WIP_LINES, tying the operation to a work-in-process line.
- DEPARTMENT_ID — foreign key to BOM_DEPARTMENTS, assigning the responsible department.
- OPERATION_DESCRIPTION — free-text description of the operation.
- SEQUENCE_NUM — default sequencing position used when the operation is added to a routing.
- MINIMUM_TRANSFER_QUANTITY — quantity at which material may be transferred to the next operation.
- COUNT_POINT_TYPE — indicates whether the operation acts as a count point for WIP completion transactions.
- BACKFLUSH_FLAG — controls whether components are backflushed at this operation.
- YIELD and OPERATION_YIELD_ENABLED — expected yield percentage and its enablement.
- VALUE_ADDED — identifies whether the operation adds value for cost-rollup purposes.
- INCLUDE_IN_ROLLUP — determines participation in cost rollup calculations.
- USE_ORG_SETTINGS — indicates whether organizational defaults override the operation-level settings.
Standard Who columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN) and the concurrent program columns (REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE) are present, along with fifteen descriptive flexfield attribute columns.
Common Use Cases and Queries
Typical usage centers on routing maintenance, WIP transaction validation, and cost rollup reporting. A common query retrieves the operations defined within a specific organization, joined to their departments:
- Listing all operations for an organization:
SELECT operation_code, operation_description, department_id FROM bom_standard_operations WHERE organization_id = :org_id ORDER BY operation_code; - Resolving department and line context:
SELECT bso.operation_code, bd.department_code, wl.line_code FROM bom_standard_operations bso, bom_departments bd, wip_lines wl WHERE bso.department_id = bd.department_id AND bso.line_id = wl.line_id AND bso.organization_id = :org_id; - Identifying count-point and backflush operations for WIP planning:
SELECT operation_code, count_point_type, backflush_flag FROM bom_standard_operations WHERE organization_id = :org_id AND backflush_flag = 'Y'; - Cost rollup exclusion analysis:
SELECT operation_code, include_in_rollup, value_added FROM bom_standard_operations WHERE organization_id = :org_id AND include_in_rollup = 'N';
Reporting scenarios include routing standardisation reviews, yield analysis by department, and auditing of operations that appear in routings referenced by open work orders.
Related Objects
The documented foreign key relationships identify the core dependencies of BOM_STANDARD_OPERATIONS:
- BOM_DEPARTMENTS — referenced through DEPARTMENT_ID; supplies the department that performs the operation.
- MTL_PARAMETERS — referenced through ORGANIZATION_ID; defines the owning inventory organization and its defaults.
- WIP_LINES — referenced through LINE_ID; provides the WIP line associated with the operation.
- FLM_MMM_OPERATIONS — a dependent table that references LINE_ID, OPERATION_TYPE, and STANDARD_OPERATION_ID from BOM_STANDARD_OPERATIONS; it is the primary downstream consumer of this data.
Additional operational dependencies, though not enumerated as foreign keys in the supplied metadata, include the routing and operation sequencing tables within the BOM module, as well as the WIP transaction and costing tables that consume operation attributes during shop-floor execution and cost rollup.
-
Table: BOM_STANDARD_OPERATIONS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS, object_name:BOM_STANDARD_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: Standard operations , implementation_dba_data: BOM.BOM_STANDARD_OPERATIONS ,
-
Table: ENG_REVISED_OPERATIONS
12.2.2
owner:ENG, object_type:TABLE, fnd_design_data:ENG.ENG_REVISED_OPERATIONS, object_name:ENG_REVISED_OPERATIONS, status:VALID, product: ENG - Engineering , description: Revised Operations , implementation_dba_data: ENG.ENG_REVISED_OPERATIONS ,
-
Table: BOM_OP_SEQUENCES_INTERFACE
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OP_SEQUENCES_INTERFACE, object_name:BOM_OP_SEQUENCES_INTERFACE, status:VALID, product: BOM - Bills of Material , description: Routing operation interface data , implementation_dba_data: BOM.BOM_OP_SEQUENCES_INTERFACE ,
-
Table: BOM_RTG_OPERATION_TEMP
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_RTG_OPERATION_TEMP, object_name:BOM_RTG_OPERATION_TEMP, status:VALID, product: BOM - Bills of Material , description: Used in XML Routing Import Process , implementation_dba_data: BOM.BOM_RTG_OPERATION_TEMP ,
-
Table: BOM_OPERATION_SEQUENCES
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES, object_name:BOM_OPERATION_SEQUENCES, status:VALID, product: BOM - Bills of Material , description: Routing operations , implementation_dba_data: BOM.BOM_OPERATION_SEQUENCES ,
-
Table: BOM_OP_SEQUENCES_ARCHIVE
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OP_SEQUENCES_ARCHIVE, object_name:BOM_OP_SEQUENCES_ARCHIVE, status:VALID, product: BOM - Bills of Material , description: Routing operations , implementation_dba_data: BOM.BOM_OP_SEQUENCES_ARCHIVE ,
-
Table: BOM_OPERATION_SEQUENCES
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES, object_name:BOM_OPERATION_SEQUENCES, status:VALID, product: BOM - Bills of Material , description: Routing operations , implementation_dba_data: BOM.BOM_OPERATION_SEQUENCES ,
-
Table: BOM_OP_SEQUENCES_ARCHIVE
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OP_SEQUENCES_ARCHIVE, object_name:BOM_OP_SEQUENCES_ARCHIVE, status:VALID, product: BOM - Bills of Material , description: Routing operations , implementation_dba_data: BOM.BOM_OP_SEQUENCES_ARCHIVE ,
-
Table: BOM_OPERATION_SEQUENCES_TEMP
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_TEMP, object_name:BOM_OPERATION_SEQUENCES_TEMP, status:VALID, product: BOM - Bills of Material , implementation_dba_data: BOM.BOM_OPERATION_SEQUENCES_TEMP ,
-
Table: BOM_RTG_OPERATION_TEMP
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_RTG_OPERATION_TEMP, object_name:BOM_RTG_OPERATION_TEMP, status:VALID, product: BOM - Bills of Material , description: Used in XML Routing Import Process , implementation_dba_data: BOM.BOM_RTG_OPERATION_TEMP ,
-
Table: BOM_STANDARD_OPERATIONS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS, object_name:BOM_STANDARD_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: Standard operations , implementation_dba_data: BOM.BOM_STANDARD_OPERATIONS ,
-
Table: ENG_REVISED_OPERATIONS
12.1.1
owner:ENG, object_type:TABLE, fnd_design_data:ENG.ENG_REVISED_OPERATIONS, object_name:ENG_REVISED_OPERATIONS, status:VALID, product: ENG - Engineering , description: Revised Operations , implementation_dba_data: ENG.ENG_REVISED_OPERATIONS ,
-
Table: BOM_OPERATION_SEQUENCES_TEMP
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_TEMP, object_name:BOM_OPERATION_SEQUENCES_TEMP, status:VALID, product: BOM - Bills of Material , implementation_dba_data: BOM.BOM_OPERATION_SEQUENCES_TEMP ,
-
Table: BOM_OP_SEQUENCES_INTERFACE
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OP_SEQUENCES_INTERFACE, object_name:BOM_OP_SEQUENCES_INTERFACE, status:VALID, product: BOM - Bills of Material , description: Routing operation interface data , implementation_dba_data: BOM.BOM_OP_SEQUENCES_INTERFACE ,
-
VIEW: BOM.BOM_RTG_OPERATION_TEMP#
12.2.2
-
VIEW: BOM.BOM_STANDARD_OPERATIONS#
12.2.2
-
VIEW: ENG.ENG_REVISED_OPERATIONS#
12.2.2
-
VIEW: WSM.WSM_COPY_OPERATIONS#
12.2.2
-
VIEW: BOM.BOM_OPERATION_SEQUENCES#
12.2.2
-
VIEW: BOM.BOM_OP_SEQUENCES_ARCHIVE#
12.2.2
-
VIEW: BOM.BOM_OP_SEQUENCES_INTERFACE#
12.2.2
-
VIEW: WSM.WSM_LOT_JOB_DTL_INTERFACE#
12.2.2
-
VIEW: ENG.ENG_REVISED_OPERATIONS#
12.2.2
owner:ENG, object_type:VIEW, object_name:ENG_REVISED_OPERATIONS#, status:VALID,
-
VIEW: BOM.BOM_STANDARD_OPERATIONS#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_STANDARD_OPERATIONS#, status:VALID,
-
VIEW: BOM.BOM_RTG_OPERATION_TEMP#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_RTG_OPERATION_TEMP#, status:VALID,
-
VIEW: WSM.WSM_COPY_OPERATIONS#
12.2.2
owner:WSM, object_type:VIEW, object_name:WSM_COPY_OPERATIONS#, status:VALID,
-
VIEW: BOM.BOM_OPERATION_SEQUENCES#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_OPERATION_SEQUENCES#, status:VALID,
-
VIEW: BOM.BOM_OP_SEQUENCES_ARCHIVE#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_OP_SEQUENCES_ARCHIVE#, status:VALID,
-
TABLE: BOM.BOM_OPERATION_SEQUENCES_TEMP
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_TEMP, object_name:BOM_OPERATION_SEQUENCES_TEMP, status:VALID,
-
TABLE: BOM.BOM_OPERATION_SEQUENCES_TEMP
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_TEMP, object_name:BOM_OPERATION_SEQUENCES_TEMP, status:VALID,
-
VIEW: BOM.BOM_OP_SEQUENCES_INTERFACE#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_OP_SEQUENCES_INTERFACE#, status:VALID,
-
TABLE: BOM.BOM_RTG_OPERATION_TEMP
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_RTG_OPERATION_TEMP, object_name:BOM_RTG_OPERATION_TEMP, status:VALID,
-
TABLE: ENG.ENG_REVISED_OPERATIONS
12.1.1
owner:ENG, object_type:TABLE, fnd_design_data:ENG.ENG_REVISED_OPERATIONS, object_name:ENG_REVISED_OPERATIONS, status:VALID,
-
TABLE: ENG.ENG_REVISED_OPERATIONS
12.2.2
owner:ENG, object_type:TABLE, fnd_design_data:ENG.ENG_REVISED_OPERATIONS, object_name:ENG_REVISED_OPERATIONS, status:VALID,
-
TABLE: BOM.BOM_RTG_OPERATION_TEMP
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_RTG_OPERATION_TEMP, object_name:BOM_RTG_OPERATION_TEMP, status:VALID,
-
VIEW: WSM.WSM_LOT_JOB_DTL_INTERFACE#
12.2.2
owner:WSM, object_type:VIEW, object_name:WSM_LOT_JOB_DTL_INTERFACE#, status:VALID,
-
TABLE: BOM.BOM_STANDARD_OPERATIONS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS, object_name:BOM_STANDARD_OPERATIONS, status:VALID,
-
VIEW: APPS.ENG_REVISED_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_OPERATIONS_V, object_name:ENG_REVISED_OPERATIONS_V, status:VALID,
-
VIEW: APPS.ENG_REVISED_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_OPERATIONS_V, object_name:ENG_REVISED_OPERATIONS_V, status:VALID,
-
TABLE: BOM.BOM_STANDARD_OPERATIONS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS, object_name:BOM_STANDARD_OPERATIONS, status:VALID,
-
APPS.BOM_RTG_EXP SQL Statements
12.2.2
-
View: BOM_OPERATION_SEQUENCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_V, object_name:BOM_OPERATION_SEQUENCES_V, status:VALID, product: BOM - Bills of Material , description: Operations , implementation_dba_data: APPS.BOM_OPERATION_SEQUENCES_V ,
-
APPS.BOM_OP_SEQ_UTIL SQL Statements
12.1.1
-
View: BOM_OPERATION_SEQUENCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_V, object_name:BOM_OPERATION_SEQUENCES_V, status:VALID, product: BOM - Bills of Material , description: Operations , implementation_dba_data: APPS.BOM_OPERATION_SEQUENCES_V ,
-
APPS.ENG_GLOBALS SQL Statements
12.1.1
-
APPS.BOM_OP_SEQ_UTIL SQL Statements
12.2.2
-
APPS.BOM_RTG_EXP SQL Statements
12.1.1
-
TABLE: BOM.BOM_OP_SEQUENCES_ARCHIVE
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OP_SEQUENCES_ARCHIVE, object_name:BOM_OP_SEQUENCES_ARCHIVE, status:VALID,
-
TABLE: BOM.BOM_OP_SEQUENCES_ARCHIVE
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OP_SEQUENCES_ARCHIVE, object_name:BOM_OP_SEQUENCES_ARCHIVE, status:VALID,
-
View: ENG_REVISED_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_OPERATIONS_V, object_name:ENG_REVISED_OPERATIONS_V, status:VALID, product: ENG - Engineering , description: Pending and implemented revised operations , implementation_dba_data: APPS.ENG_REVISED_OPERATIONS_V ,