Search Results bom_resources_u2
Overview
BOM.BOM_RESOURCES is a foundational master table within the Oracle E-Business Suite Bills of Material schema. It stores the definitions of resources, overheads, material overheads, and material sub-elements used across manufacturing, costing, work-in-process (WIP), purchasing, and project accounting flows. The COST_ELEMENT_ID column determines whether a given row represents a resource, an overhead, or a material overhead, and resources are further classified as either material resources or outside processing resources.
Because BOM_RESOURCES is the authoritative parent for a large number of dependent transactional and costing tables, it functions as a central reference point for cost rollup, rate definition, and shop-floor resource charging. In Data Vault modeling terms, the mined foreign key structure characterizes this object as a hub: RESOURCE_ID acts as a stable business key to which many descriptive attributes and dependent satellites would attach. This classification is a modeling suggestion rather than a physical property of the EBS table itself.
The table resides in the APPS_TS_TX_DATA tablespace with PCTFREE 10, and its indexes are held in APPS_TS_TX_IDX. The object is documented as VALID in ETRM 12.2.2 with 57 columns under the BOM schema.
Key Information Stored
The most operationally significant columns include:
RESOURCE_ID— the surrogate primary key (BOM_RESOURCES_PK) and the target ofBOM_RESOURCES_U2, the unique index that supports the hub relationship.ORGANIZATION_ID— the organization that owns the resource; foreign keyed toMTL_PARAMETERS.RESOURCE_CODE— the short user-facing identifier for the resource.COST_CODE_TYPE— categories the cost code associated with the resource.COST_ELEMENT_ID— determines whether the row is a resource, overhead, or material overhead; referencesCST_COST_ELEMENTS.RESOURCE_TYPE,AUTOCHARGE_TYPE, andSTANDARD_RATE_FLAG— govern shop-floor charging behavior.DEFAULT_BASIS_TYPE— defines the default basis used during cost rollup.ABSORPTION_ACCOUNTandRATE_VARIANCE_ACCOUNT— GL accounts (foreign keyed toGL_CODE_COMBINATIONS) used for absorption and variance postings.UNIT_OF_MEASUREandFUNCTIONAL_CURRENCY_FLAG— identify the unit of measure; when the resource represents a currency,UNIT_OF_MEASUREholds the currency code of the set of books the organization points to.DEFAULT_ACTIVITY_ID— the default activity (foreign key toCST_ACTIVITIES).ALLOW_COSTS_FLAG— controls whether costs may be defined for the resource.DISABLE_DATEandDESCRIPTION— lifecycle and descriptive metadata.COMPETENCE_IDandRATING_LEVEL_ID— referencePER_COMPETENCESandPER_RATING_LEVELS, supporting skills-based resource assignment.
The two unique indexes, BOM_RESOURCES_U1 (ORGANIZATION_ID, RESOURCE_CODE, COST_CODE_TYPE) and BOM_RESOURCES_U2 (RESOURCE_ID), are the documented business-key candidates. The non-unique BOM_RESOURCES_N1 supports lookup by ORGANIZATION_ID and PURCHASE_ITEM_ID.
Common Use Cases and Queries
Typical usage centers on listing active resources for an organization, resolving the cost element for a resource, and joining resource definitions to the transactions that consume them.
SELECT RESOURCE_ID, RESOURCE_CODE, DESCRIPTION, RESOURCE_TYPE
FROM BOM.BOM_RESOURCES
WHERE ORGANIZATION_ID = :org_id
AND DISABLE_DATE IS NULL;
Cost rollup and overhead analysis frequently require joining BOM_RESOURCES to CST_ITEM_COST_DETAILS on RESOURCE_ID, while shop-floor reporting joins to WIP_OPERATION_RESOURCES and WIP_TRANSACTIONS. Purchasing reports use the PURCHASE_ITEM_ID linkage to PO_* tables, and project accounting uses PA_RESOURCE_ASSIGNMENTS and PA_RESOURCE_LIST_MEMBERS to bind billable costs.
Related Objects
BOM.BOM_RESOURCE_SETUPS— setup parameters per resource, joined onRESOURCE_ID.BOM.BOM_DEPARTMENT_RESOURCES— associates resources to departments viaRESOURCE_ID.CST.CST_ITEM_COST_DETAILS— item cost lines referencingRESOURCE_IDandBASIS_RESOURCE_ID.CST.CST_RESOURCE_COSTSandCST_RESOURCE_OVERHEADS— rate and overhead definitions for the resource.WIP.WIP_OPERATION_RESOURCESandWIP.WIP_TRANSACTIONS— shop-floor consumption keyed onRESOURCE_ID.MTL_MTL_PARAMETERS— organization definition referenced throughORGANIZATION_ID; also points back viaDEFAULT_MATERIAL_COST_ID.PO_DISTRIBUTIONS_ALLandPO_REQUISITION_LINES_ALL— referenceBOM_RESOURCE_IDfor outside processing.PA.PA_RESOURCE_ASSIGNMENTSandPA_RESOURCE_LIST_MEMBERS— project resource bindings viaBOM_RESOURCE_ID.
-
INDEX: BOM.BOM_RESOURCES_U2
12.1.1
owner:BOM, object_type:INDEX, object_name:BOM_RESOURCES_U2, status:VALID,
-
INDEX: BOM.BOM_RESOURCES_U2
12.2.2
owner:BOM, object_type:INDEX, object_name:BOM_RESOURCES_U2, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
TABLE: BOM.BOM_RESOURCES
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_RESOURCES, object_name:BOM_RESOURCES, status:VALID,
-
TABLE: BOM.BOM_RESOURCES
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_RESOURCES, object_name:BOM_RESOURCES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.CSTPSCCR dependencies on BOM_RESOURCES
12.2.2
-
APPS.CSTPSCCR dependencies on BOM_RESOURCES
12.1.1
-
APPS.CSTPSCCR SQL Statements
12.1.1
-
APPS.CSTPSCCR SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CSTPSCCR
12.1.1
-
PACKAGE BODY: APPS.CSTPSCCR
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. ,