Search Results resource_rate
Overview
The CSTBV_MFG_RESOURCE_COSTS view is a read-only database object owned by the APPS schema in Oracle E-Business Suite, classified under the BOM - Bills of Material product family. Its ETRM documentation designates it as "Retrofitted," indicating that the view was introduced or re-created to preserve backward compatibility with earlier EBS releases, including 12.1.1 and 12.2.2. Functionally, the view presents manufacturing resource cost information by joining cost type definitions, bill of material resource definitions, and resource cost records. It exposes the resource rate associated with a given resource, cost type, and organization, which makes it a convenient reporting surface for cost rollups, manufacturing overhead analysis, and rate verification. Because the view is defined WITH READ ONLY, it cannot be used for DML; its role is strictly to present a consolidated, denormalized projection of costing data to reports, interfaces, and integration layers that expect the legacy column list. This is significant in upgrade scenarios, where custom reports written against the older object continue to function without modification.
Underlying Base Objects
The view is defined over three base objects, each referenced through a synonym in the APPS schema:
- CST_COST_TYPES (aliased
CCT) — the cost type master, joined onCOST_TYPE_ID. Supplies the human-readableCOST_TYPEvalue. - BOM_RESOURCES (aliased
BR) — the manufacturing resource definition, joined onRESOURCE_ID. Supplies theRESOURCE_CODE. - CST_RESOURCE_COSTS (aliased
CRC) — the transactional resource cost table that stores the actualRESOURCE_RATEper cost type, resource, and organization. It is the driving table of the join.
The join predicates are CRC.COST_TYPE_ID = CCT.COST_TYPE_ID and CRC.RESOURCE_ID = BR.RESOURCE_ID. A notable predicate, '_SEC:CRC.ORGANIZATION_ID' IS NOT NULL, reflects the EBS security/partitioning convention applied to the organization context, effectively restricting results to rows where ORGANIZATION_ID is populated. All WHO columns originate from CST_RESOURCE_COSTS.
Key Columns
- COST_TYPE_ID — Identifier of the cost type (e.g., Frozen, Average, Standard).
- COST_TYPE_NAME — Descriptive name of the cost type from
CST_COST_TYPES. - RESOURCE_ID — Identifier of the manufacturing resource.
- RESOURCE_NAME — The resource code from
BOM_RESOURCES, identifying the resource (e.g., labor or machine). - RESOURCE_RATE — The cost rate assigned to the resource for the cost type and organization; the central costing value surfaced by the view.
- ORGANIZATION_ID — The inventory/operating organization to which the rate applies.
- CREATED_BY, CREATION_DATE, UPDATED_BY, UPDATED_DATE — WHO audit columns inherited from
CST_RESOURCE_COSTS, useful for change tracking and auditing.
Common Use Cases and Queries
The view is typically used in cost reporting, rate comparison across cost types, and validation of manufacturing resource rates prior to a cost rollup. A representative query returns resource rates for a specific organization and cost type:
- Listing all resource rates for an organization:
SELECT cost_type_name, resource_name, resource_rate FROM cstbv_mfg_resource_costs WHERE organization_id = :org_id ORDER BY cost_type_name, resource_name; - Comparing a resource's rate across cost types:
SELECT cost_type_name, resource_rate FROM cstbv_mfg_resource_costs WHERE resource_id = :resource_id AND organization_id = :org_id; - Auditing recently changed rates:
SELECT resource_name, resource_rate, last_update_date, last_updated_by FROM cstbv_mfg_resource_costs WHERE last_update_date > :cutoff_date; - Feeding external costing models: joining the view to
BOM_DEPARTMENTSor routing data to reconcile resource rates against standard costs.
Because the view is read-only, all maintenance of resource rates must be performed against the underlying CST_RESOURCE_COSTS table through supported costing forms or APIs.
-
View: CSTBV_MFG_RESOURCE_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_MFG_RESOURCE_COSTS, object_name:CSTBV_MFG_RESOURCE_COSTS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_MFG_RESOURCE_COSTS ,
-
View: CSTBV_MFG_RESOURCE_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_MFG_RESOURCE_COSTS, object_name:CSTBV_MFG_RESOURCE_COSTS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_MFG_RESOURCE_COSTS ,
-
View: CSTFV_MFG_RESOURCE_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_MFG_RESOURCE_COSTS, object_name:CSTFV_MFG_RESOURCE_COSTS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_MFG_RESOURCE_COSTS ,
-
View: CST_RESOURCE_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_RESOURCE_COSTS_V, object_name:CST_RESOURCE_COSTS_V, status:VALID, product: BOM - Bills of Material , description: Resource costs : SINGLE-ORG view , implementation_dba_data: APPS.CST_RESOURCE_COSTS_V ,
-
View: CST_RESOURCE_COSTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_RESOURCE_COSTS_V, object_name:CST_RESOURCE_COSTS_V, status:VALID, product: BOM - Bills of Material , description: Resource costs : SINGLE-ORG view , implementation_dba_data: APPS.CST_RESOURCE_COSTS_V ,
-
View: CSTFV_MFG_RESOURCE_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_MFG_RESOURCE_COSTS, object_name:CSTFV_MFG_RESOURCE_COSTS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_MFG_RESOURCE_COSTS ,
-
View: CST_DETAIL_COSTS_FOR_GL_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DETAIL_COSTS_FOR_GL_VIEW, object_name:CST_DETAIL_COSTS_FOR_GL_VIEW, status:VALID, product: BOM - Bills of Material , description: Item cost details used by General Ledger : SINGLE-ORG view , implementation_dba_data: APPS.CST_DETAIL_COSTS_FOR_GL_VIEW ,
-
View: CST_DEFAULT_DETAIL_COST_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DEFAULT_DETAIL_COST_VIEW, object_name:CST_DEFAULT_DETAIL_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Detailed item default cost : SINGLE-ORG view , implementation_dba_data: APPS.CST_DEFAULT_DETAIL_COST_VIEW ,
-
View: CST_DEFAULT_DETAIL_COST_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DEFAULT_DETAIL_COST_VIEW, object_name:CST_DEFAULT_DETAIL_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Detailed item default cost : SINGLE-ORG view , implementation_dba_data: APPS.CST_DEFAULT_DETAIL_COST_VIEW ,
-
View: CST_DETAIL_COSTS_FOR_GL_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DETAIL_COSTS_FOR_GL_VIEW, object_name:CST_DETAIL_COSTS_FOR_GL_VIEW, status:VALID, product: BOM - Bills of Material , description: Item cost details used by General Ledger : SINGLE-ORG view , implementation_dba_data: APPS.CST_DETAIL_COSTS_FOR_GL_VIEW ,
-
View: CST_ITEM_COST_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ITEM_COST_DETAILS_V, object_name:CST_ITEM_COST_DETAILS_V, status:VALID, product: BOM - Bills of Material , description: Item cost details for an organization : SINGLE-ORG view , implementation_dba_data: APPS.CST_ITEM_COST_DETAILS_V ,
-
View: CST_ITEM_COST_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ITEM_COST_DETAILS_V, object_name:CST_ITEM_COST_DETAILS_V, status:VALID, product: BOM - Bills of Material , description: Item cost details for an organization : SINGLE-ORG view , implementation_dba_data: APPS.CST_ITEM_COST_DETAILS_V ,
-
View: CST_DETAIL_COST_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DETAIL_COST_VIEW, object_name:CST_DETAIL_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Detail cost for reports : SINGLE-ORG view , implementation_dba_data: APPS.CST_DETAIL_COST_VIEW ,
-
View: CST_DETAIL_COST_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DETAIL_COST_VIEW, object_name:CST_DETAIL_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Detail cost for reports : SINGLE-ORG view , implementation_dba_data: APPS.CST_DETAIL_COST_VIEW ,