Search Results wms_dispatched_tasks_history




Overview

BOM.BOM_RESOURCES is the master definition table for resources, overheads, material cost codes, and material overheads within Oracle E-Business Suite Release 12.1.1 and 12.2.2. Records in this table represent the billable and absorbing cost entities that drive standard and actual cost rollups, work-in-process (WIP) transactions, capacity planning, and activity-based costing across the BOM, CST, WIP, and PA modules.

Each row defines a single resource or overhead for a specific organization, together with its cost element, basis type, default activity, absorption account, and rate variance account. Because a resource may be defined independently per organization and cost code type, the table supports multi-org and multi-currency costing configurations. In heuristic Data Vault terms, the mined foreign key topology classifies this object as a hub: it holds the unique RESOURCE_ID business entity around which numerous dependent cost and transaction records (links and satellites) are organized. The physical schema documents 57 columns and two unique indexes.

Key Information Stored

The surrogate primary key is RESOURCE_ID, enforced by BOM_RESOURCES_PK. Two unique business-key candidates are documented: BOM_RESOURCES_U1 (ORGANIZATION_ID, RESOURCE_CODE, COST_CODE_TYPE) and BOM_RESOURCES_U2 (RESOURCE_ID). The most significant columns include:

Common Use Cases and Queries

Typical query patterns resolve resources for a given organization, join overheads to their basis resources, and reconcile WIP or standard cost detail back to the resource master. Representative SQL includes:

  • Listing all active resources in an organization: SELECT resource_code, description FROM bom_resources WHERE organization_id = :org AND disable_date IS NULL;
  • Joining cost detail to resource names: SELECT c.resource_id, r.resource_code, c.resource_rate FROM cst_item_cost_details c JOIN bom_resources r ON r.resource_id = c.resource_id;
  • Identifying overhead costs and their basis: SELECT resource_code, default_basis_type, absorption_account FROM bom_resources WHERE cost_code_type = 'OVERHEAD';
  • Reporting standard rates by cost element: join to CST_RESOURCE_COSTS on RESOURCE_ID.
  • Auditing resource disablement and re-enablement windows using DISABLE_DATE and the WHO columns.

Related Objects

The FK topology confirms BOM_RESOURCES as a central hub. The most significant related objects are:

  • Table: BOM_RESOURCES 12.2.2

    owner:BOM,  object_type:TABLE,  fnd_design_data:BOM.BOM_RESOURCES,  object_name:BOM_RESOURCES,  status:VALID,  product: BOM - Bills of Materialdescription: Resources, overheads, material cost codes, and material overheads ,  implementation_dba_data: BOM.BOM_RESOURCES

  • Table: BOM_RESOURCES 12.1.1

    owner:BOM,  object_type:TABLE,  fnd_design_data:BOM.BOM_RESOURCES,  object_name:BOM_RESOURCES,  status:VALID,  product: BOM - Bills of Materialdescription: Resources, overheads, material cost codes, and material overheads ,  implementation_dba_data: BOM.BOM_RESOURCES