Search Results bom_op_resources_view
Overview
BOM_OP_RESOURCES_VIEW is an APPS-owned database view in the Oracle E-Business Suite Bills of Material (BOM) module. It presents a flattened, reporting-ready representation of operation resources — the resources assigned to routing operations within a bill of materials. In EBS 12.1.1 and 12.2.2, routing data is distributed across several normalized base tables (routings, operation sequences, resources, and operation resource assignments), and reconstructing a readable view of these relationships requires multi-table joins. BOM_OP_RESOURCES_VIEW performs that consolidation, exposing resource assignments together with their parent routing, operation sequence, department, and assembly context in a single queryable object.
The view is catalogued in ETRM with a status of VALID and is documented as the "Operation resources view." Its primary role is to support reporting, data extraction, and integration scenarios where consumers need operation-resource detail without navigating the base schema directly. Because it joins descriptive flexfield and lookup-decoded values into the result set, it is particularly useful for ad hoc reporting and downstream interfaces.
Underlying Base Objects
The view is defined over the following documented objects, all referenced through APPS synonyms:
- BOM_OPERATION_RESOURCES — the primary assignment table linking resources to operation sequences; supplies assigned units, usage rates, schedule flags, and DFF attributes.
- BOM_RESOURCES — the resource master, supplying RESOURCE_CODE and organization context.
- BOM_OPERATION_SEQUENCES — the operation sequence records, supplying sequence numbers, descriptions, and effectivity/disable dates.
- BOM_OPERATIONAL_ROUTINGS — the routing header, supplying routing type, alternate designator, and assembly item linkage.
- BOM_DEPARTMENTS — supplies the DEPARTMENT_CODE.
- CST_ACTIVITIES — joined outer (ACT.ACTIVITY_ID(+)) to supply the ACTIVITY value.
- MTL_ITEM_FLEXFIELDS — a view supplying item number, padded item number, and description for the assembly.
- INV_MEANING_SEL — a package whose C_FND_LOOKUP_VL function decodes lookup codes into meanings.
The joins key resources to operation resources, operation resources to operation sequences, sequences to departments and routings, and routings to the item flexfield view by organization and assembly item. Lookup decoding is applied to autocharge type, standard rate flag, basis type, and schedule flag.
Key Columns
- ORGANIZATION_ID — the inventory organization owning the routing and resource assignment.
- ROUTING_TYPE / ALTERNATE_ROUTING_DESIGNATOR — the routing classification (e.g., primary or alternate) and the alternate identifier.
- ASSEMBLY_ITEM_ID / COMMON_ASSEMBLY_ITEM_ID — the assembly item; the view returns NVL(COMMON_ASSEMBLY_ITEM_ID, ASSEMBLY_ITEM_ID).
- ITEM_NUMBER / PADDED_ITEM_NUMBER / DESCRIPTION — descriptive item attributes from MTL_ITEM_FLEXFIELDS.
- DEPARTMENT_CODE — the department performing the operation.
- OPERATION_SEQ_NUM / OPERATION_DESCRIPTION / EFFECTIVITY_DATE / DISABLE_DATE — operation sequence detail and its effective period.
- RESOURCE_CODE / RESOURCE_SEQ_NUM — the resource and its sequencing within the operation.
- ASSIGNED_UNITS / USAGE_RATE_OR_AMOUNT / USAGE_RATE_OR_AMOUNT_INVERSE — resource consumption quantities and rates.
- AUTOCHARGE_TYPE, STANDARD_RATE_FLAG, BASIS_TYPE, SCHEDULE_FLAG — lookup-decoded control attributes.
- RESOURCE_OFFSET_PERCENT — the offset percentage governing resource scheduling relative to the operation.
- ACD_TYPE — activity cost/type indicator from CST_ACTIVITIES.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 — descriptive flexfield columns carried from BOM_OPERATION_RESOURCES.
Common Use Cases and Queries
Typical uses include routing resource reports, cost rollup feed extracts, and integration queries that need resource assignments per operation. A representative query lists resources for a given assembly in an organization:
SELECT operation_seq_num, department_code, resource_code, assigned_units, usage_rate_or_amount FROM bom_op_resources_view WHERE organization_id = :org_id AND assembly_item_id = :item_id ORDER BY operation_seq_num, resource_seq_num;SELECT resource_code, schedule_flag, basis_type, usage_rate_or_amount FROM bom_op_resources_view WHERE organization_id = :org_id AND routing_type = 1;SELECT department_code, operation_seq_num, COUNT(*) FROM bom_op_resources_view WHERE organization_id = :org_id GROUP BY department_code, operation_seq_num;
Because the lookup columns are decoded at runtime through INV_MEANING_SEL, results reflect current lookup meanings. Report consumers should filter by ORGANIZATION_ID and assembly item to avoid full-table scans across the underlying routing tables.
-
View: BOM_OP_RESOURCES_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OP_RESOURCES_VIEW, object_name:BOM_OP_RESOURCES_VIEW, status:VALID, product: BOM - Bills of Material , description: Operation resources view , implementation_dba_data: APPS.BOM_OP_RESOURCES_VIEW ,
-
View: BOM_OP_RESOURCES_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OP_RESOURCES_VIEW, object_name:BOM_OP_RESOURCES_VIEW, status:VALID, product: BOM - Bills of Material , description: Operation resources view , implementation_dba_data: APPS.BOM_OP_RESOURCES_VIEW ,
-
VIEW: APPS.BOM_OP_RESOURCES_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OP_RESOURCES_VIEW, object_name:BOM_OP_RESOURCES_VIEW, status:VALID,
-
VIEW: APPS.BOM_OP_RESOURCES_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OP_RESOURCES_VIEW, object_name:BOM_OP_RESOURCES_VIEW, status:VALID,
-
PACKAGE: APPS.INV_MEANING_SEL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:INV_MEANING_SEL, status:VALID,
-
PACKAGE: APPS.INV_MEANING_SEL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:INV_MEANING_SEL, status:VALID,
-
SYNONYM: APPS.CST_ACTIVITIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CST_ACTIVITIES, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.CST_ACTIVITIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CST_ACTIVITIES, status:VALID,
-
SYNONYM: APPS.BOM_OPERATION_RESOURCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BOM_OPERATION_RESOURCES, status:VALID,
-
SYNONYM: APPS.BOM_OPERATION_RESOURCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_OPERATION_RESOURCES, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.BOM_OPERATION_SEQUENCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_OPERATION_SEQUENCES, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.BOM_OPERATION_SEQUENCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BOM_OPERATION_SEQUENCES, status:VALID,
-
SYNONYM: APPS.BOM_OPERATIONAL_ROUTINGS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_OPERATIONAL_ROUTINGS, status:VALID,
-
SYNONYM: APPS.BOM_OPERATIONAL_ROUTINGS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BOM_OPERATIONAL_ROUTINGS, status:VALID,
-
SYNONYM: APPS.BOM_RESOURCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_RESOURCES, status:VALID,
-
SYNONYM: APPS.BOM_DEPARTMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BOM_DEPARTMENTS, status:VALID,
-
SYNONYM: APPS.BOM_DEPARTMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_DEPARTMENTS, status:VALID,
-
SYNONYM: APPS.BOM_RESOURCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BOM_RESOURCES, status:VALID,
-
VIEW: APPS.MTL_ITEM_FLEXFIELDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID,
-
VIEW: APPS.MTL_ITEM_FLEXFIELDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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 - INV Tables and Views
12.1.1
-
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 - INV Tables and Views
12.1.1