Search Results bom_op_sequences_interface
Overview
BOM_OP_SEQUENCES_INTERFACE is the open interface staging table for routing (operation sequence) data in Oracle Bills of Material. It serves as the inbound conduit through which externally generated or legacy routing revisions, operation sequences, and their associated resource and instruction assignments are loaded into Oracle EBS before being validated and converted into the permanent routing tables. The table exists in both release 12.1.1 and 12.2.2, resides in the BOM schema, and is documented as VALID. Its business purpose is to decouple source-system data generation from the EBS routing import process, allowing bulk staging, error identification, and re-processing without directly touching production routing structures.
Under the heuristic Data Vault classification applied to this object, BOM_OP_SEQUENCES_INTERFACE is modeled as a standalone entity. In Data Vault terms, it behaves most like a staging satellite with no enforced parent hub or link within the warehouse model — it is a transient landing construct rather than a normalized relationship table. Analysts should treat it as an interface satellite: rows carry descriptive attributes keyed by an interface transaction identifier, and are short-lived once the import program has processed them.
Key Information Stored
The table contains 98 documented columns. The most operationally significant are summarized below.
- OPERATION_SEQUENCE_ID — the surrogate primary key for the interface row, uniquely identifying each staged operation.
- TRANSACTION_ID — the documented business-key candidate, enforced by unique index BOM_OP_SEQUENCES_INTERFACE_U1; it groups related interface rows submitted in a single load.
- ROUTING_SEQUENCE_ID / OPERATION_SEQ_NUM / NEW_OPERATION_SEQ_NUM — identify the routing header and the sequence position of the operation, including a revised sequence for change scenarios.
- ASSEMBLY_ITEM_ID, ASSEMBLY_ITEM_NUMBER, ORGANIZATION_ID, ORGANIZATION_CODE — the assembly and inventory organization context for the routing revision.
- DEPARTMENT_ID / DEPARTMENT_CODE — the department owning the operation; DEPARTMENT_ID carries a foreign key to BOM_DEPARTMENTS.
- STANDARD_OPERATION_ID / OPERATION_CODE — references the reusable standard operation; STANDARD_OPERATION_ID has a foreign key to WSM_OPERATION_DETAILS.
- EFFECTIVITY_DATE, IMPLEMENTATION_DATE, DISABLE_DATE, CHANGE_NOTICE — date-effectivity and engineering-change context for the routing revision.
- RESOURCE_ID1-3 / RESOURCE_CODE1-3 / INSTRUCTION_CODE1-3 — slot-based resource and instruction assignments attached to the operation.
- PROCESS_FLAG, TRANSACTION_TYPE, PROCESS_OP_SEQ_ID, PROCESS_CODE — control the import program's processing mode and outcome.
- ATTRIBUTE1-15, ATTRIBUTE_CATEGORY — the standard DFF extensibility block.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent-program audit trail.
Common Use Cases and Queries
Typical usage revolves around pre-import validation, error diagnosis, and reconciliation after the routing import concurrent program runs.
- Locating unprocessed rows:
SELECT * FROM BOM_OP_SEQUENCES_INTERFACE WHERE PROCESS_FLAG IS NULL OR PROCESS_FLAG = 1; - Grouping all rows for a batch:
SELECT * FROM BOM_OP_SEQUENCES_INTERFACE WHERE TRANSACTION_ID = :txn; - Joining to departments and standard operations to confirm reference validity prior to import:
SELECT a.operation_seq_num, b.department_code, c.operation_code FROM BOM_OP_SEQUENCES_INTERFACE a, BOM_DEPARTMENTS b, WSM_OPERATION_DETAILS c WHERE a.department_id = b.department_id(+) AND a.standard_operation_id = c.operation_id(+) AND a.transaction_id = :txn; - Identifying rejected interface rows by audit of the import request: filter on REQUEST_ID and inspect PROCESS_FLAG errors.
- Post-load reconciliation: count transactions staged versus operations successfully created in the base routing tables.
Related Objects
- BOM_DEPARTMENTS — referenced via DEPARTMENT_ID; validates the operation's owning department.
- WSM_OPERATION_DETAILS — referenced via STANDARD_OPERATION_ID; supplies the reusable standard operation definition.
- BOM_OPERATION_SEQUENCES — the permanent routing operation table into which validated interface rows are converted.
- BOM_OPERATION_RESOURCES / BOM_OPERATION_INSTRUCTIONS — receive resource and instruction assignments after import.
- BOM_ROUTINGS_INTERFACE — the companion interface for routing headers, keyed by the same transaction context.
- MTL_SYSTEM_ITEMS_B — supplies ASSEMBLY_ITEM_ID and ORGANIZATION_ID context.
-
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_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 ,
-
APPS.BOMPASGR SQL Statements
12.1.1
-
SYNONYM: APPS.BOM_OP_SEQUENCES_INTERFACE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BOM_OP_SEQUENCES_INTERFACE, status:VALID,
-
SYNONYM: APPS.BOM_OP_SEQUENCES_INTERFACE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_OP_SEQUENCES_INTERFACE, status:VALID,
-
APPS.BOMPASGR SQL Statements
12.2.2
-
APPS.BOMPVALR SQL Statements
12.1.1
-
APPS.BOMPVALR SQL Statements
12.2.2
-
VIEW: BOM.BOM_OP_SEQUENCES_INTERFACE#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_OP_SEQUENCES_INTERFACE#, status:VALID,
-
APPS.BOM_RTG_OPEN_INTERFACE SQL Statements
12.1.1
-
TRIGGER: APPS.ROUTING_CREATE_INTF_HDR
12.2.2
owner:APPS, object_type:TRIGGER, object_name:ROUTING_CREATE_INTF_HDR, status:VALID,
-
TRIGGER: APPS.ROUTING_CREATE_INTF_HDR
12.1.1
owner:APPS, object_type:TRIGGER, object_name:ROUTING_CREATE_INTF_HDR, status:VALID,
-
APPS.BOM_RTG_OPEN_INTERFACE SQL Statements
12.2.2
-
PACKAGE BODY: APPS.BOMPASGR
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOMPASGR, status:VALID,
-
PACKAGE BODY: APPS.BOMPASGR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOMPASGR, status:VALID,
-
APPS.BOM_RTG_OI_UTIL SQL Statements
12.1.1
-
APPS.BOM_RTG_OI_UTIL SQL Statements
12.2.2
-
APPS.BOMPLDCB SQL Statements
12.1.1
-
APPS.BOMPLDCB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.BOM_RTG_OPEN_INTERFACE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_RTG_OPEN_INTERFACE, status:VALID,
-
PACKAGE BODY: APPS.BOM_RTG_OPEN_INTERFACE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_RTG_OPEN_INTERFACE, status:VALID,
-
PACKAGE BODY: APPS.BOMPLDCB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOMPLDCB, status:VALID,
-
PACKAGE BODY: APPS.BOMPLDCB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOMPLDCB, status:VALID,
-
PACKAGE BODY: APPS.EGO_IMPORT_BATCH_PURGE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EGO_IMPORT_BATCH_PURGE_PKG, status:VALID,
-
PACKAGE BODY: APPS.BOMPASGR
12.2.2
-
PACKAGE BODY: APPS.BOM_RTG_OI_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_RTG_OI_UTIL, status:VALID,
-
PACKAGE BODY: APPS.BOM_RTG_OI_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_RTG_OI_UTIL, status:VALID,
-
PACKAGE BODY: APPS.BOMPVALR
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOMPVALR, status:VALID,
-
PACKAGE BODY: APPS.BOM_ROUTINGINTERFACE_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_ROUTINGINTERFACE_PUB, status:VALID,
-
PACKAGE BODY: APPS.BOM_ROUTINGINTERFACE_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_ROUTINGINTERFACE_PUB, status:VALID,
-
PACKAGE BODY: APPS.BOMPPRCB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOMPPRCB, status:VALID,
-
PACKAGE BODY: APPS.BOMPASGR
12.1.1
-
PACKAGE BODY: APPS.BOMPPRCB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOMPPRCB, status:VALID,
-
PACKAGE BODY: APPS.BOMPVALR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOMPVALR, status:VALID,
-
PACKAGE BODY: APPS.ENG_LAUNCH_ECO_OI_PK
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ENG_LAUNCH_ECO_OI_PK, status:VALID,
-
VIEW: BOM.BOM_OP_SEQUENCES_INTERFACE#
12.2.2
-
PACKAGE BODY: APPS.ENG_LAUNCH_ECO_OI_PK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ENG_LAUNCH_ECO_OI_PK, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.BOM_IMPORT_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_IMPORT_PUB, status:VALID,
-
PACKAGE BODY: APPS.BOM_IMPORT_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_IMPORT_PUB, status:VALID,
-
PACKAGE BODY: APPS.CTO_UPDATE_BOM_RTG_PK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CTO_UPDATE_BOM_RTG_PK, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
TABLE: BOM.BOM_INTERFACE_DELETE_GROUPS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_INTERFACE_DELETE_GROUPS, object_name:BOM_INTERFACE_DELETE_GROUPS, status:VALID,
-
TABLE: BOM.BOM_INTERFACE_DELETE_GROUPS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_INTERFACE_DELETE_GROUPS, object_name:BOM_INTERFACE_DELETE_GROUPS, status:VALID,
-
PACKAGE BODY: APPS.CTO_UPDATE_BOM_RTG_PK
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CTO_UPDATE_BOM_RTG_PK, status:VALID,
-
APPS.BOMPPRCB SQL Statements
12.1.1
-
APPS.BOMPPRCB SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2