Search Results cst_item_costs
Overview
The CST_ITEM_COSTS table is a core data object within the Bills of Material (BOM) module of Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2. It functions as the primary repository for item cost summaries, serving as the central ledger for storing and managing the current, frozen, or pending cost of inventory items within a specific cost type and organization. This table is fundamental to the Oracle Cost Management system, enabling critical business processes such as inventory valuation, cost roll-ups for manufactured items, variance analysis, and profitability reporting. Its integrity is maintained through a primary key constraint and several foreign key relationships that enforce data consistency across the costing schema.
Key Information Stored
The table's structure is defined by its primary key, which uniquely identifies a cost record through a combination of INVENTORY_ITEM_ID, COST_TYPE_ID, and ORGANIZATION_ID. This design allows for multiple cost types (e.g., Frozen, Average, Pending) per item per organization. Key columns include ITEM_COST, which stores the total unit cost, and LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, and CREATED_BY for audit trails. The COST_UPDATE_ID column links to the CST_COST_UPDATES table, tracking the specific cost update transaction that last modified the cost. Other significant columns may include MATERIAL_COST, MATERIAL_OVERHEAD_COST, RESOURCE_COST, OUTSIDE_PROCESSING_COST, and OVERHEAD_COST, which break down the total item cost into its constituent elements, though these are not explicitly listed in the provided metadata.
Common Use Cases and Queries
A primary use case is retrieving the current standard cost for inventory valuation or sales order pricing. A typical query joins CST_ITEM_COSTS with MTL_SYSTEM_ITEMS_B and CST_COST_TYPES.
- Sample Query for Item Costs: SELECT msib.segment1 item_code, cic.item_cost, cct.cost_type FROM bom.cst_item_costs cic, inv.mtl_system_items_b msib, bom.cst_cost_types cct WHERE cic.inventory_item_id = msib.inventory_item_id AND cic.organization_id = msib.organization_id AND cic.cost_type_id = cct.cost_type_id AND cct.cost_type = 'Frozen' AND msib.segment1 = '<ITEM>' AND cic.organization_id = <ORG_ID>;
- Cost Roll-Up Analysis: The table is queried to validate costs after a cost roll-up process for a manufactured assembly.
- Reporting: It serves as the foundation for standard cost reports, inventory valuation reports, and gross margin analysis by providing the definitive cost basis.
Related Objects
As indicated by the foreign keys, CST_ITEM_COSTS has integral relationships with several other core tables. It references CST_COST_TYPES via COST_TYPE_ID to define the costing method. It references MTL_SYSTEM_ITEMS_B via INVENTORY_ITEM_ID and ORGANIZATION_ID to identify the item. It references CST_COST_UPDATES via COST_UPDATE_ID for transaction history. Crucially, it is the parent table for CST_ITEM_COST_DETAILS, which holds the granular, element-level cost breakdowns (material, resource, overhead, etc.) that sum to the ITEM_COST in this summary table. This relationship is essential for detailed cost analysis and troubleshooting.
-
Table: CST_ITEM_COSTS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_ITEM_COSTS, object_name:CST_ITEM_COSTS, status:VALID, product: BOM - Bills of Material , description: Item cost summary , implementation_dba_data: BOM.CST_ITEM_COSTS ,
-
Table: CST_ITEM_COSTS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_ITEM_COSTS, object_name:CST_ITEM_COSTS, status:VALID, product: BOM - Bills of Material , description: Item cost summary , implementation_dba_data: BOM.CST_ITEM_COSTS ,
-
View: CST_DEFAULT_COST_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DEFAULT_COST_VIEW, object_name:CST_DEFAULT_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Default item cost : SINGLE-ORG view , implementation_dba_data: APPS.CST_DEFAULT_COST_VIEW ,
-
View: CST_DEFAULT_COST_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DEFAULT_COST_VIEW, object_name:CST_DEFAULT_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Default item cost : SINGLE-ORG view , implementation_dba_data: APPS.CST_DEFAULT_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_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 ,
-
Concurrent Program: CSTPMSCC
12.1.1
execution_filename: CSTPUMEC.set_cost_controls , product: BOM - Bills of Material , user_name: CSTPMSCC , description: Set Cost Controls , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
Concurrent Program: CSTPMSCC
12.2.2
execution_filename: CSTPUMEC.set_cost_controls , product: BOM - Bills of Material , user_name: CSTPMSCC , description: Set Cost Controls , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
Table: CST_ITEM_COST_DETAILS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_ITEM_COST_DETAILS, object_name:CST_ITEM_COST_DETAILS, status:VALID, product: BOM - Bills of Material , description: Item cost detail information , implementation_dba_data: BOM.CST_ITEM_COST_DETAILS ,
-
Table: CST_ITEM_COST_DETAILS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_ITEM_COST_DETAILS, object_name:CST_ITEM_COST_DETAILS, status:VALID, product: BOM - Bills of Material , description: Item cost detail information , implementation_dba_data: BOM.CST_ITEM_COST_DETAILS ,
-
Table: CST_COST_UPDATES
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_COST_UPDATES, object_name:CST_COST_UPDATES, status:VALID, product: BOM - Bills of Material , description: Cost update history , implementation_dba_data: BOM.CST_COST_UPDATES ,
-
View: CST_TOTAL_COST_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_TOTAL_COST_VIEW, object_name:CST_TOTAL_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Total item cost view : SINGLE-ORG view , implementation_dba_data: APPS.CST_TOTAL_COST_VIEW ,
-
View: CST_TOTAL_COST_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_TOTAL_COST_VIEW, object_name:CST_TOTAL_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Total item cost view : SINGLE-ORG view , implementation_dba_data: APPS.CST_TOTAL_COST_VIEW ,
-
Table: CST_COST_UPDATES
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_COST_UPDATES, object_name:CST_COST_UPDATES, status:VALID, product: BOM - Bills of Material , description: Cost update history , implementation_dba_data: BOM.CST_COST_UPDATES ,
-
View: CST_CQL_CIC_ITEM_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_CQL_CIC_ITEM_COSTS_V, object_name:CST_CQL_CIC_ITEM_COSTS_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_CQL_CIC_ITEM_COSTS_V ,
-
View: CST_CQL_CIC_ITEM_COSTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_CQL_CIC_ITEM_COSTS_V, object_name:CST_CQL_CIC_ITEM_COSTS_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_CQL_CIC_ITEM_COSTS_V ,
-
Table: CST_COST_TYPES
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_COST_TYPES, object_name:CST_COST_TYPES, status:VALID, product: BOM - Bills of Material , description: Stores cost type definitions , implementation_dba_data: BOM.CST_COST_TYPES ,
-
Table: CST_COST_TYPES
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_COST_TYPES, object_name:CST_COST_TYPES, status:VALID, product: BOM - Bills of Material , description: Stores cost type definitions , implementation_dba_data: BOM.CST_COST_TYPES ,
-
View: CSTFV_STANDARD_ITEM_COST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_STANDARD_ITEM_COST, object_name:CSTFV_STANDARD_ITEM_COST, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_STANDARD_ITEM_COST ,
-
View: CSTBV_STANDARD_ITEM_COST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_STANDARD_ITEM_COST, object_name:CSTBV_STANDARD_ITEM_COST, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_STANDARD_ITEM_COST ,
-
View: CSTBV_STANDARD_ITEM_COST
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_STANDARD_ITEM_COST, object_name:CSTBV_STANDARD_ITEM_COST, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_STANDARD_ITEM_COST ,
-
View: CSTFV_STANDARD_ITEM_COST
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_STANDARD_ITEM_COST, object_name:CSTFV_STANDARD_ITEM_COST, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_STANDARD_ITEM_COST ,
-
View: CST_ITEM_COSTS_FOR_GL_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ITEM_COSTS_FOR_GL_VIEW, object_name:CST_ITEM_COSTS_FOR_GL_VIEW, status:VALID, product: BOM - Bills of Material , description: Item costs depending on costing method : SINGLE-ORG view , implementation_dba_data: APPS.CST_ITEM_COSTS_FOR_GL_VIEW ,
-
View: CST_ITEM_COSTS_FOR_GL_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ITEM_COSTS_FOR_GL_VIEW, object_name:CST_ITEM_COSTS_FOR_GL_VIEW, status:VALID, product: BOM - Bills of Material , description: Item costs depending on costing method : SINGLE-ORG view , implementation_dba_data: APPS.CST_ITEM_COSTS_FOR_GL_VIEW ,
-
View: CST_ITEM_COST_TYPE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ITEM_COST_TYPE_V, object_name:CST_ITEM_COST_TYPE_V, status:VALID, product: BOM - Bills of Material , description: Item cost information for a cost type in an organization : SINGLE-ORG view , implementation_dba_data: APPS.CST_ITEM_COST_TYPE_V ,
-
View: CST_ITEM_COST_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ITEM_COST_TYPE_V, object_name:CST_ITEM_COST_TYPE_V, status:VALID, product: BOM - Bills of Material , description: Item cost information for a cost type in an organization : SINGLE-ORG view , implementation_dba_data: APPS.CST_ITEM_COST_TYPE_V ,
-
View: CST_CG_ITEM_COSTS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_CG_ITEM_COSTS_VIEW, object_name:CST_CG_ITEM_COSTS_VIEW, status:VALID, product: BOM - Bills of Material , description: This level, previous level and total elemental costs in an average costing organization. , implementation_dba_data: APPS.CST_CG_ITEM_COSTS_VIEW ,
-
View: CST_CG_ITEM_COSTS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_CG_ITEM_COSTS_VIEW, object_name:CST_CG_ITEM_COSTS_VIEW, status:VALID, product: BOM - Bills of Material , description: This level, previous level and total elemental costs in an average costing organization. , implementation_dba_data: APPS.CST_CG_ITEM_COSTS_VIEW ,
-
View: CST_XLA_INV_SYSTEM_ITEMS_REF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_INV_SYSTEM_ITEMS_REF_V, object_name:CST_XLA_INV_SYSTEM_ITEMS_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_INV_SYSTEM_ITEMS_REF_V ,
-
View: CST_XLA_INV_SYSTEM_ITEMS_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_INV_SYSTEM_ITEMS_REF_V, object_name:CST_XLA_INV_SYSTEM_ITEMS_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_INV_SYSTEM_ITEMS_REF_V ,