Search Results cst_cost_elements
Overview
The CST_COST_ELEMENTS table is a foundational master data table within Oracle E-Business Suite (EBS) Bills of Material (BOM) and Cost Management modules. It serves as the central repository for defining the elemental cost components that constitute the total cost of an item. These cost elements, such as Material, Material Overhead, Resource, Overhead, and Outside Processing, are the fundamental building blocks for both standard and actual costing methodologies. The table's primary role is to provide a validated list of cost types that are referenced extensively throughout the inventory, work in process (WIP), and costing transaction tables to ensure consistent cost categorization and accurate financial accounting.
Key Information Stored
The table's structure is designed to uniquely identify and describe each permissible cost element. The primary key is the system-generated COST_ELEMENT_ID, which serves as the internal numeric identifier used in foreign key relationships across the application. The unique key constraint is on the COST_ELEMENT column, which stores the descriptive name or code for the element (e.g., 'Material', 'Resource'). While the provided ETRM excerpt does not list all columns, typical columns in this table include a description field, a disabling flag, and potentially a user-defined flexfield structure. The integrity enforced by these keys ensures that all transactional cost details are posted against a valid, predefined cost element.
Common Use Cases and Queries
This table is central to any reporting or analysis that breaks down item costs by their constituent elements. A primary use case is analyzing the detailed cost composition of an item, especially within the context of Periodic Average Costing (PAC), as indicated by the user's search for "mtl_pac_cost_subelements". Common queries involve joining CST_COST_ELEMENTS to detailed cost tables to translate numeric IDs into meaningful names. For example, to report on the cost elements used in PAC layers, one would join to MTL_PAC_COST_SUBELEMENTS or CST_PAC_ITEM_COST_DETAILS. A fundamental SQL pattern is:
SELECT cce.COST_ELEMENT, mpcd.*
FROM MTL_PAC_COST_SUBELEMENTS mpcd,
CST_COST_ELEMENTS cce
WHERE mpcd.COST_ELEMENT_ID = cce.COST_ELEMENT_ID
AND mpcd.INVENTORY_ITEM_ID = :p_item_id;
This table is also crucial for configuring cost elements for new items, validating cost rollup structures, and troubleshooting cost accounting entries by identifying the nature of posted charges.
Related Objects
CST_COST_ELEMENTS has a wide array of dependencies, as evidenced by its numerous foreign key relationships. These relationships fall into several key functional areas:
- Resource & Routing Definition: Linked to
BOM_RESOURCESto define the cost element for a resource. - Standard & Average Cost Details: Referenced by
CST_ITEM_COST_DETAILS,CST_LAYER_COST_DETAILS,CST_STD_COST_ADJ_VALUES, andCST_PAC_ITEM_COST_DETAILS. - Transaction Costing: Integral to transaction cost capture in
MTL_CST_TXN_COST_DETAILS,MTL_CST_ACTUAL_COST_DETAILS,MTL_TRANSACTION_ACCOUNTS, and their interface and PAC equivalents (MTL_PAC_TXN_COST_DETAILS,MTL_PAC_ACTUAL_COST_DETAILS). - Work in Process (WIP) Costing: Used by
WIP_PAC_ACTUAL_COST_DETAILS,WIP_REQ_OPERATION_COST_DETAILS, andWIP_SCRAP_VALUES. - Sub-element & Elemental Cost Tracking: Directly linked to the table referenced in the user's search,
MTL_PAC_COST_SUBELEMENTS, as well asMTL_ACTUAL_COST_SUBELEMENTandCST_ELEMENTAL_COSTS. - Accounting & Asset Tracking: Referenced in
CST_AE_LINESfor accounting entries andCST_EAM_BALANCE_BY_ACCOUNTSfor Enterprise Asset Management.
-
Table: CST_COST_ELEMENTS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_COST_ELEMENTS, object_name:CST_COST_ELEMENTS, status:VALID, product: BOM - Bills of Material , description: Cost elements definition , implementation_dba_data: BOM.CST_COST_ELEMENTS ,
-
Table: CST_COST_ELEMENTS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_COST_ELEMENTS, object_name:CST_COST_ELEMENTS, status:VALID, product: BOM - Bills of Material , description: Cost elements definition , implementation_dba_data: BOM.CST_COST_ELEMENTS ,
-
Table: CST_ELEMENTAL_COSTS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_ELEMENTAL_COSTS, object_name:CST_ELEMENTAL_COSTS, status:VALID, product: BOM - Bills of Material , description: Standard elemental cost history , implementation_dba_data: BOM.CST_ELEMENTAL_COSTS ,
-
Table: CST_PAC_ITEM_COST_DETAILS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_ITEM_COST_DETAILS, object_name:CST_PAC_ITEM_COST_DETAILS, status:VALID, product: BOM - Bills of Material , description: Stores the details of the item cost in a period and organization cost group. , implementation_dba_data: BOM.CST_PAC_ITEM_COST_DETAILS ,
-
Table: CST_EAM_BALANCE_BY_ACCOUNTS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_EAM_BALANCE_BY_ACCOUNTS, object_name:CST_EAM_BALANCE_BY_ACCOUNTS, status:VALID, product: BOM - Bills of Material , description: Estimated Cost Information by WIP Accounting Class Accounts , implementation_dba_data: BOM.CST_EAM_BALANCE_BY_ACCOUNTS ,
-
Table: CST_LAYER_COST_DETAILS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_LAYER_COST_DETAILS, object_name:CST_LAYER_COST_DETAILS, status:VALID, product: BOM - Bills of Material , description: Detailed cost information by element and level , implementation_dba_data: BOM.CST_LAYER_COST_DETAILS ,
-
Table: CST_ELEMENTAL_COSTS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_ELEMENTAL_COSTS, object_name:CST_ELEMENTAL_COSTS, status:VALID, product: BOM - Bills of Material , description: Standard elemental cost history , implementation_dba_data: BOM.CST_ELEMENTAL_COSTS ,
-
View: CSTBV_COST_ELEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_COST_ELEMENTS, object_name:CSTBV_COST_ELEMENTS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_COST_ELEMENTS ,
-
Table: CST_STD_COST_ADJ_VALUES
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_STD_COST_ADJ_VALUES, object_name:CST_STD_COST_ADJ_VALUES, status:VALID, product: BOM - Bills of Material , description: Standard cost adjustment value computed by standard cost update , implementation_dba_data: BOM.CST_STD_COST_ADJ_VALUES ,
-
View: CST_AVG_ELEM_COSTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AVG_ELEM_COSTS_V, object_name:CST_AVG_ELEM_COSTS_V, status:VALID, product: BOM - Bills of Material , description: Used by average cost update form , implementation_dba_data: APPS.CST_AVG_ELEM_COSTS_V ,
-
Table: CST_ITEM_CST_DTLS_INTERFACE
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_ITEM_CST_DTLS_INTERFACE, object_name:CST_ITEM_CST_DTLS_INTERFACE, status:VALID, product: BOM - Bills of Material , description: Open interface table for item cost detail information , implementation_dba_data: BOM.CST_ITEM_CST_DTLS_INTERFACE ,
-
Table: CST_EAM_BALANCE_BY_ACCOUNTS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_EAM_BALANCE_BY_ACCOUNTS, object_name:CST_EAM_BALANCE_BY_ACCOUNTS, status:VALID, product: BOM - Bills of Material , description: Estimated Cost Information by WIP Accounting Class Accounts , implementation_dba_data: BOM.CST_EAM_BALANCE_BY_ACCOUNTS ,
-
Table: CST_PAC_ITEM_COST_DETAILS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_ITEM_COST_DETAILS, object_name:CST_PAC_ITEM_COST_DETAILS, status:VALID, product: BOM - Bills of Material , description: Stores the details of the item cost in a period and organization cost group. , implementation_dba_data: BOM.CST_PAC_ITEM_COST_DETAILS ,
-
View: CSTFV_COST_ELEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_COST_ELEMENTS, object_name:CSTFV_COST_ELEMENTS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_COST_ELEMENTS ,
-
View: CSTBV_COST_ELEMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_COST_ELEMENTS, object_name:CSTBV_COST_ELEMENTS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_COST_ELEMENTS ,
-
Table: CST_LAYER_COST_DETAILS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_LAYER_COST_DETAILS, object_name:CST_LAYER_COST_DETAILS, status:VALID, product: BOM - Bills of Material , description: Detailed cost information by element and level , implementation_dba_data: BOM.CST_LAYER_COST_DETAILS ,
-
View: CST_CAT_ELE_EXP_ASSOCS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_CAT_ELE_EXP_ASSOCS_V, object_name:CST_CAT_ELE_EXP_ASSOCS_V, status:VALID, product: BOM - Bills of Material , description: View table used for "Category Associations" form. , implementation_dba_data: APPS.CST_CAT_ELE_EXP_ASSOCS_V ,
-
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 ,
-
View: CSTFV_COST_ELEMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_COST_ELEMENTS, object_name:CSTFV_COST_ELEMENTS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_COST_ELEMENTS ,
-
Table: CST_STD_COST_ADJ_VALUES
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_STD_COST_ADJ_VALUES, object_name:CST_STD_COST_ADJ_VALUES, status:VALID, product: BOM - Bills of Material , description: Standard cost adjustment value computed by standard cost update , implementation_dba_data: BOM.CST_STD_COST_ADJ_VALUES ,
-
View: CST_INV_LAYER_COST_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_INV_LAYER_COST_DETAILS_V, object_name:CST_INV_LAYER_COST_DETAILS_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_INV_LAYER_COST_DETAILS_V ,
-
View: CST_XLA_RES_OVH_REF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_RES_OVH_REF_V, object_name:CST_XLA_RES_OVH_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_RES_OVH_REF_V ,
-
View: CST_CAT_ELE_EXP_ASSOCS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_CAT_ELE_EXP_ASSOCS_V, object_name:CST_CAT_ELE_EXP_ASSOCS_V, status:VALID, product: BOM - Bills of Material , description: View table used for "Category Associations" form. , implementation_dba_data: APPS.CST_CAT_ELE_EXP_ASSOCS_V ,
-
Table: CST_AE_LINES
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_AE_LINES, object_name:CST_AE_LINES, status:VALID, product: BOM - Bills of Material , description: Stores debits and credits for Periodic Distributions , implementation_dba_data: BOM.CST_AE_LINES ,
-
Table: CST_AE_LINES
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_AE_LINES, object_name:CST_AE_LINES, status:VALID, product: BOM - Bills of Material , description: Stores debits and credits for Periodic Distributions , implementation_dba_data: BOM.CST_AE_LINES ,
-
View: CST_LAYER_COST_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_LAYER_COST_DETAILS_V, object_name:CST_LAYER_COST_DETAILS_V, status:VALID, product: BOM - Bills of Material , description: Costs by layer, level and cost element , implementation_dba_data: APPS.CST_LAYER_COST_DETAILS_V ,
-
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 ,
-
View: CST_AVG_ELEM_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_AVG_ELEM_COSTS_V, object_name:CST_AVG_ELEM_COSTS_V, status:VALID, product: BOM - Bills of Material , description: Used by average cost update form , implementation_dba_data: APPS.CST_AVG_ELEM_COSTS_V ,
-
Table: CST_ITEM_CST_DTLS_INTERFACE
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_ITEM_CST_DTLS_INTERFACE, object_name:CST_ITEM_CST_DTLS_INTERFACE, status:VALID, product: BOM - Bills of Material , description: Open interface table for item cost detail information , implementation_dba_data: BOM.CST_ITEM_CST_DTLS_INTERFACE ,
-
View: CST_XLA_RES_OVH_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_RES_OVH_REF_V, object_name:CST_XLA_RES_OVH_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_RES_OVH_REF_V ,
-
View: CST_INV_LAYER_COST_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_INV_LAYER_COST_DETAILS_V, object_name:CST_INV_LAYER_COST_DETAILS_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_INV_LAYER_COST_DETAILS_V ,
-
View: CSTFV_ITM_CST_GRP_UNT_CST_DTL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_ITM_CST_GRP_UNT_CST_DTL, object_name:CSTFV_ITM_CST_GRP_UNT_CST_DTL, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_ITM_CST_GRP_UNT_CST_DTL ,
-
View: CSTFV_ITM_CST_GRP_UNT_CST_DTL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_ITM_CST_GRP_UNT_CST_DTL, object_name:CSTFV_ITM_CST_GRP_UNT_CST_DTL, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_ITM_CST_GRP_UNT_CST_DTL ,
-
View: CST_ELEMENT_COST_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ELEMENT_COST_VIEW, object_name:CST_ELEMENT_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Item cost by element : SINGLE-ORG view , implementation_dba_data: APPS.CST_ELEMENT_COST_VIEW ,
-
View: CSTBV_ITM_CST_GRP_UNT_CST_DTL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_ITM_CST_GRP_UNT_CST_DTL, object_name:CSTBV_ITM_CST_GRP_UNT_CST_DTL, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_ITM_CST_GRP_UNT_CST_DTL ,
-
View: CST_ELEMENT_OPYLD_COST_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ELEMENT_OPYLD_COST_VIEW, object_name:CST_ELEMENT_OPYLD_COST_VIEW, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_ELEMENT_OPYLD_COST_VIEW ,
-
View: CST_ELEMENT_ACTIVITY_COST_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ELEMENT_ACTIVITY_COST_VIEW, object_name:CST_ELEMENT_ACTIVITY_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Item cost by element and activity : SINGLE-ORG view , implementation_dba_data: APPS.CST_ELEMENT_ACTIVITY_COST_VIEW ,
-
View: CST_ELEMENT_ACTIVITY_COST_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ELEMENT_ACTIVITY_COST_VIEW, object_name:CST_ELEMENT_ACTIVITY_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Item cost by element and activity : SINGLE-ORG view , implementation_dba_data: APPS.CST_ELEMENT_ACTIVITY_COST_VIEW ,
-
View: CST_LAYER_COST_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_LAYER_COST_DETAILS_V, object_name:CST_LAYER_COST_DETAILS_V, status:VALID, product: BOM - Bills of Material , description: Costs by layer, level and cost element , implementation_dba_data: APPS.CST_LAYER_COST_DETAILS_V ,
-
View: CST_PERIOD_VALUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PERIOD_VALUE_V, object_name:CST_PERIOD_VALUE_V, status:VALID, product: BOM - Bills of Material , description: Used by the View WIP Value form to generate temporary information : SINGLE-ORG view , implementation_dba_data: APPS.CST_PERIOD_VALUE_V ,
-
View: CST_PERIOD_VALUE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PERIOD_VALUE_V, object_name:CST_PERIOD_VALUE_V, status:VALID, product: BOM - Bills of Material , description: Used by the View WIP Value form to generate temporary information : SINGLE-ORG view , implementation_dba_data: APPS.CST_PERIOD_VALUE_V ,
-
View: CST_ELEMENT_DEPT_COST_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ELEMENT_DEPT_COST_VIEW, object_name:CST_ELEMENT_DEPT_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Item cost by element and department : SINGLE-ORG view , implementation_dba_data: APPS.CST_ELEMENT_DEPT_COST_VIEW ,
-
View: CST_ELEMENT_OP_COST_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ELEMENT_OP_COST_VIEW, object_name:CST_ELEMENT_OP_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Item cost by element and operation : SINGLE-ORG view , implementation_dba_data: APPS.CST_ELEMENT_OP_COST_VIEW ,
-
View: CST_ELEMENT_CODE_COST_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_ELEMENT_CODE_COST_VIEW, object_name:CST_ELEMENT_CODE_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Item cost by element and subelement : SINGLE-ORG view , implementation_dba_data: APPS.CST_ELEMENT_CODE_COST_VIEW ,
-
View: CSTFV_ITM_STD_CST_UPD_ELM_HST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_ITM_STD_CST_UPD_ELM_HST, object_name:CSTFV_ITM_STD_CST_UPD_ELM_HST, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_ITM_STD_CST_UPD_ELM_HST ,
-
View: CSTFV_ITM_STD_CST_UPD_ELM_HST
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_ITM_STD_CST_UPD_ELM_HST, object_name:CSTFV_ITM_STD_CST_UPD_ELM_HST, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_ITM_STD_CST_UPD_ELM_HST ,
-
View: CSTFV_PAC_ITEM_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_ITEM_COST_DETAILS, object_name:CSTFV_PAC_ITEM_COST_DETAILS, status:VALID, product: BOM - Bills of Material , description: Stores the cost details of an item in a period and cost group. , implementation_dba_data: APPS.CSTFV_PAC_ITEM_COST_DETAILS ,
-
View: CSTFV_PAC_ITEM_COST_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_ITEM_COST_DETAILS, object_name:CSTFV_PAC_ITEM_COST_DETAILS, status:VALID, product: BOM - Bills of Material , description: Stores the cost details of an item in a period and cost group. , implementation_dba_data: APPS.CSTFV_PAC_ITEM_COST_DETAILS ,
-
View: CSTBV_ITM_STD_CST_UPD_ELM_HST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_ITM_STD_CST_UPD_ELM_HST, object_name:CSTBV_ITM_STD_CST_UPD_ELM_HST, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_ITM_STD_CST_UPD_ELM_HST ,
-
View: CSTBV_ITM_CST_GRP_UNT_CST_DTL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_ITM_CST_GRP_UNT_CST_DTL, object_name:CSTBV_ITM_CST_GRP_UNT_CST_DTL, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_ITM_CST_GRP_UNT_CST_DTL ,