Search Results bom_standard_operations_uk1
Overview
The BOM_STANDARD_OPERATIONS table is a core data repository within the Oracle E-Business Suite Bills of Material (BOM) module. It serves as the master definition table for reusable manufacturing operation templates. These standard operations define common sequences of work, such as assembly, testing, or packaging, which can be consistently referenced across multiple routings and bills of material within a manufacturing organization. By centralizing this definition, the table enforces operational consistency, simplifies routing maintenance, and is integral to the process of defining how a product is manufactured.
Key Information Stored
The table stores the defining attributes for each standard operation template. Its structure is governed by two primary keys: one (BOM_STANDARD_OPERATIONS_PK) for unique row identification using LINE_ID, OPERATION_TYPE, and STANDARD_OPERATION_ID, and another (BOM_STANDARD_OPERATIONS_UK1) enforcing uniqueness of the OPERATION_CODE within a specific ORGANIZATION_ID. Key columns include OPERATION_CODE (the unique identifier for the operation), DESCRIPTION, and ORGANIZATION_ID to which the operation belongs. Critical relational columns are DEPARTMENT_ID, linking to the BOM_DEPARTMENTS table to define the responsible work area, and LINE_ID, linking to the WIP_LINES table to associate the operation with a specific production line.
Common Use Cases and Queries
This table is primarily accessed during the creation and maintenance of manufacturing routings. When defining a routing for an assembly, planners select from the pre-defined list of standard operations. Common reporting and validation queries include listing all standard operations for an organization or verifying operation details before assigning them to a routing. A typical query pattern is:
- SELECT operation_code, description, department_code FROM bom_standard_operations bso, bom_departments bd WHERE bso.department_id = bd.department_id AND bso.organization_id = :org_id ORDER BY operation_code;
Data integrity checks often involve ensuring that OPERATION_CODE and ORGANIZATION_ID combinations are unique, as mandated by the UK1 constraint.
Related Objects
BOM_STANDARD_OPERATIONS maintains critical relationships with several other EBS entities. As indicated by its foreign keys, it references BOM_DEPARTMENTS for departmental data, MTL_PARAMETERS for organization validation, and WIP_LINES for production line information. It is also referenced by the FLM_MMM_OPERATIONS table, which is part of the Flow Manufacturing module. Most importantly, standard operations defined in this table are referenced within routing operation sequences (typically in tables like BOM_OPERATION_ROUTINGS or BOM_OPERATION_SEQUENCES), forming the bridge between reusable templates and specific product manufacturing instructions.
-
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: 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 ,