Search Results pac_period_name
Overview
APPS.CSTBV_PAC_ITEM_COST_DETAILS is a Business Intelligence System (BIS) view in the Oracle E-Business Suite Applications schema. It exposes the detailed cost of an inventory item for a given period and cost group, with costs broken out by cost element and by level. The view is registered in FND Design Data as BOM.CSTBV_PAC_ITEM_COST_DETAILS and is documented as VALID in both Oracle EBS 12.1.1 and 12.2.2.
The naming convention reflects its purpose: "CST" denotes Cost Management, "BV" identifies a Business Intelligence System view, and "PAC" refers to the Periodic Average Cost (PAC) costing method. The view presents periodic average cost results in a denormalized, report-friendly form, making it suitable for costing analysis, period-close reconciliation, and integration with external reporting or BI tools without requiring callers to join the underlying transactional cost tables directly. The view is read-only; it is not referenced by any other database object.
Underlying Base Objects
The view is defined over six base objects in the APPS schema, each referenced through a synonym:
- CST_PAC_ITEM_COSTS — the primary source of item cost rows by period and cost group.
- CST_PAC_ITEM_COST_DETAILS — supplies the element- and level-level cost breakdown.
- CST_PAC_PERIODS — provides the PAC period definition, including the period name.
- CST_COST_ELEMENTS — resolves the cost element identifier to its name.
- CST_COST_GROUPS — resolves the cost group identifier to its name.
- MTL_SYSTEM_ITEMS — supplies the item identifier and item name key flexfield information.
Because the view joins these objects, it consolidates identifiers from the cost engine with descriptive attributes from the item master, cost element, and cost group setups, eliminating the need for consumers to reconstruct these joins manually.
Key Columns
- COST_LAYER_ID — identifier of the cost layer to which the row belongs.
- COST_ELEMENT_ID / COST_ELEMENT_NAME — the cost element (for example, material, material overhead, resource, or overhead) and its descriptive name.
- LEVEL_TYPE_ID / _LA:LEVEL_TYPE — the cost level identifier and its underlying lookup attribute, indicating the level at which the cost is held.
- PAC_PERIOD_ID / PAC_PERIOD_NAME — the PAC period identifier and the period name, the latter being the attribute most commonly searched by users.
- COST_GROUP_ID / COST_GROUP_NAME — the cost group identifier and name.
- INVENTORY_ITEM_ID / _KF:ITEM_NAME — the inventory item identifier and the item name key flexfield.
- ITEM_COST — the total cost of the item for the combination of period, cost group, element, and level.
- ITEM_BUY_COST — the buy (purchased) portion of the item cost.
- ITEM_MAKE_COST — the make (manufactured) portion of the item cost.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, UPDATED_BY — standard audit columns.
Common Use Cases and Queries
Typical uses include periodic average cost analysis, cost element and cost level breakdown reporting, period-over-period cost comparison, and reconciliation of PAC results for a period or cost group. Because PAC_PERIOD_NAME is exposed directly, users can filter on the period name without joining to CST_PAC_PERIODS.
To retrieve all costs for a single PAC period:
SELECT INVENTORY_ITEM_ID, COST_ELEMENT_NAME, COST_GROUP_NAME, ITEM_COST, ITEM_BUY_COST, ITEM_MAKE_COST FROM APPS.CSTBV_PAC_ITEM_COST_DETAILS WHERE PAC_PERIOD_NAME = :period_name;
To report the cost breakdown for one item across periods:
SELECT PAC_PERIOD_NAME, COST_GROUP_NAME, COST_ELEMENT_NAME, ITEM_COST FROM APPS.CSTBV_PAC_ITEM_COST_DETAILS WHERE INVENTORY_ITEM_ID = :item_id ORDER BY PAC_PERIOD_NAME;
To aggregate buy and make components for a period and cost group:
SELECT COST_GROUP_NAME, SUM(ITEM_BUY_COST) BUY_TOTAL, SUM(ITEM_MAKE_COST) MAKE_TOTAL FROM APPS.CSTBV_PAC_ITEM_COST_DETAILS WHERE PAC_PERIOD_NAME = :period_name GROUP BY COST_GROUP_NAME;
Access is grant-based through the APPS schema, consistent with standard Oracle EBS security practice for cost reporting objects.
-
VIEW: APPS.CSTBV_PAC_ITEM_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_ITEM_COST_DETAILS, object_name:CSTBV_PAC_ITEM_COST_DETAILS, status:VALID,
-
VIEW: APPS.CSTBV_RCV_ACQ_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COSTS, object_name:CSTBV_RCV_ACQ_COSTS, status:VALID,
-
VIEW: APPS.CSTBV_RCV_ACQ_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COSTS, object_name:CSTBV_RCV_ACQ_COSTS, status:VALID,
-
VIEW: APPS.CSTBV_PAC_ITEM_COST_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_ITEM_COST_DETAILS, object_name:CSTBV_PAC_ITEM_COST_DETAILS, status:VALID,
-
VIEW: APPS.CSTBV_PAC_ITEM_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_ITEM_COSTS, object_name:CSTBV_PAC_ITEM_COSTS, status:VALID,
-
VIEW: APPS.CSTBV_PAC_QUANTITY_LAYERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_QUANTITY_LAYERS, object_name:CSTBV_PAC_QUANTITY_LAYERS, status:VALID,
-
VIEW: APPS.CSTBV_PAC_ITEM_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_ITEM_COSTS, object_name:CSTBV_PAC_ITEM_COSTS, status:VALID,
-
VIEW: APPS.CSTFV_PAC_QUANTITY_LAYERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_QUANTITY_LAYERS, object_name:CSTFV_PAC_QUANTITY_LAYERS, status:VALID,
-
VIEW: APPS.CSTBV_PAC_QUANTITY_LAYERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_QUANTITY_LAYERS, object_name:CSTBV_PAC_QUANTITY_LAYERS, status:VALID,
-
VIEW: APPS.CSTBV_RCV_ACQ_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COST_DETAILS, object_name:CSTBV_RCV_ACQ_COST_DETAILS, status:VALID,
-
VIEW: APPS.CSTFV_RCV_ACQ_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COSTS, object_name:CSTFV_RCV_ACQ_COSTS, status:VALID,
-
VIEW: APPS.CSTFV_PAC_QUANTITY_LAYERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_QUANTITY_LAYERS, object_name:CSTFV_PAC_QUANTITY_LAYERS, status:VALID,
-
VIEW: APPS.CSTBV_RCV_ACQ_COST_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COST_DETAILS, object_name:CSTBV_RCV_ACQ_COST_DETAILS, status:VALID,
-
VIEW: APPS.CSTBV_PAC_PERIOD_BALANCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_PERIOD_BALANCES, object_name:CSTBV_PAC_PERIOD_BALANCES, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.CSTFV_RCV_ACQ_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COSTS, object_name:CSTFV_RCV_ACQ_COSTS, status:VALID,
-
VIEW: APPS.CSTBV_PAC_PERIOD_BALANCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_PERIOD_BALANCES, object_name:CSTBV_PAC_PERIOD_BALANCES, status:VALID,
-
VIEW: APPS.CSTFV_PAC_PERIOD_BALANCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_PERIOD_BALANCES, object_name:CSTFV_PAC_PERIOD_BALANCES, status:VALID,
-
VIEW: APPS.CSTFV_RCV_ACQ_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COST_DETAILS, object_name:CSTFV_RCV_ACQ_COST_DETAILS, status:VALID,
-
VIEW: APPS.CSTFV_PAC_PERIOD_BALANCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_PERIOD_BALANCES, object_name:CSTFV_PAC_PERIOD_BALANCES, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.CSTFV_RCV_ACQ_COST_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COST_DETAILS, object_name:CSTFV_RCV_ACQ_COST_DETAILS, status:VALID,
-
VIEW: APPS.CSTFV_PAC_ITEM_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_ITEM_COSTS, object_name:CSTFV_PAC_ITEM_COSTS, status:VALID,
-
VIEW: APPS.CSTFV_PAC_ITEM_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_ITEM_COSTS, object_name:CSTFV_PAC_ITEM_COSTS, status:VALID,
-
View: CSTFV_PAC_QUANTITY_LAYERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_QUANTITY_LAYERS, object_name:CSTFV_PAC_QUANTITY_LAYERS, status:VALID, product: BOM - Bills of Material , description: Stores the layer quantity of an item by period , implementation_dba_data: APPS.CSTFV_PAC_QUANTITY_LAYERS ,
-
View: CSTBV_PAC_QUANTITY_LAYERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_QUANTITY_LAYERS, object_name:CSTBV_PAC_QUANTITY_LAYERS, status:VALID, product: BOM - Bills of Material , description: This shows the layer quantity of an item by period , implementation_dba_data: APPS.CSTBV_PAC_QUANTITY_LAYERS ,
-
View: CSTBV_RCV_ACQ_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COSTS, object_name:CSTBV_RCV_ACQ_COSTS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTBV_RCV_ACQ_COSTS ,
-
View: CSTFV_PAC_QUANTITY_LAYERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_QUANTITY_LAYERS, object_name:CSTFV_PAC_QUANTITY_LAYERS, status:VALID, product: BOM - Bills of Material , description: Stores the layer quantity of an item by period , implementation_dba_data: APPS.CSTFV_PAC_QUANTITY_LAYERS ,
-
View: CSTBV_PAC_QUANTITY_LAYERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_QUANTITY_LAYERS, object_name:CSTBV_PAC_QUANTITY_LAYERS, status:VALID, product: BOM - Bills of Material , description: This shows the layer quantity of an item by period , implementation_dba_data: APPS.CSTBV_PAC_QUANTITY_LAYERS ,
-
View: CSTBV_RCV_ACQ_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COSTS, object_name:CSTBV_RCV_ACQ_COSTS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTBV_RCV_ACQ_COSTS ,
-
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_PAC_ITEM_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_ITEM_COSTS, object_name:CSTBV_PAC_ITEM_COSTS, status:VALID, product: BOM - Bills of Material , description: This shows the item cost and quantity in a period and cost group. , implementation_dba_data: APPS.CSTBV_PAC_ITEM_COSTS ,
-
View: CSTFV_PAC_ITEM_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_ITEM_COSTS, object_name:CSTFV_PAC_ITEM_COSTS, status:VALID, product: BOM - Bills of Material , description: Stores the item cost and quantity in a period and cost group. , implementation_dba_data: APPS.CSTFV_PAC_ITEM_COSTS ,
-
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_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_ITEM_COSTS, object_name:CSTFV_PAC_ITEM_COSTS, status:VALID, product: BOM - Bills of Material , description: Stores the item cost and quantity in a period and cost group. , implementation_dba_data: APPS.CSTFV_PAC_ITEM_COSTS ,
-
View: CSTBV_PAC_ITEM_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_ITEM_COST_DETAILS, object_name:CSTBV_PAC_ITEM_COST_DETAILS, status:VALID, product: BOM - Bills of Material , description: This shows the details of the cost of an item in a period and cost group. The costs are stored by element and level. , implementation_dba_data: APPS.CSTBV_PAC_ITEM_COST_DETAILS ,
-
View: CSTFV_RCV_ACQ_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COSTS, object_name:CSTFV_RCV_ACQ_COSTS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTFV_RCV_ACQ_COSTS ,
-
View: CSTBV_PAC_ITEM_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_ITEM_COSTS, object_name:CSTBV_PAC_ITEM_COSTS, status:VALID, product: BOM - Bills of Material , description: This shows the item cost and quantity in a period and cost group. , implementation_dba_data: APPS.CSTBV_PAC_ITEM_COSTS ,
-
View: CSTBV_PAC_ITEM_COST_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_ITEM_COST_DETAILS, object_name:CSTBV_PAC_ITEM_COST_DETAILS, status:VALID, product: BOM - Bills of Material , description: This shows the details of the cost of an item in a period and cost group. The costs are stored by element and level. , implementation_dba_data: APPS.CSTBV_PAC_ITEM_COST_DETAILS ,
-
View: CSTFV_RCV_ACQ_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COSTS, object_name:CSTFV_RCV_ACQ_COSTS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTFV_RCV_ACQ_COSTS ,
-
View: CSTBV_RCV_ACQ_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COST_DETAILS, object_name:CSTBV_RCV_ACQ_COST_DETAILS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTBV_RCV_ACQ_COST_DETAILS ,
-
View: CSTBV_RCV_ACQ_COST_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_RCV_ACQ_COST_DETAILS, object_name:CSTBV_RCV_ACQ_COST_DETAILS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTBV_RCV_ACQ_COST_DETAILS ,
-
View: CSTBV_PAC_PERIOD_BALANCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_PERIOD_BALANCES, object_name:CSTBV_PAC_PERIOD_BALANCES, status:VALID, product: BOM - Bills of Material , description: CSTBV_PAC_PERIOD_BALANCES stores the WIP balances for all entities withina cost group by period. , implementation_dba_data: APPS.CSTBV_PAC_PERIOD_BALANCES ,
-
View: CSTBV_PAC_PERIOD_BALANCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_PERIOD_BALANCES, object_name:CSTBV_PAC_PERIOD_BALANCES, status:VALID, product: BOM - Bills of Material , description: CSTBV_PAC_PERIOD_BALANCES stores the WIP balances for all entities withina cost group by period. , implementation_dba_data: APPS.CSTBV_PAC_PERIOD_BALANCES ,
-
View: CSTFV_PAC_PERIOD_BALANCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_PERIOD_BALANCES, object_name:CSTFV_PAC_PERIOD_BALANCES, status:VALID, product: BOM - Bills of Material , description: CSTFV_PAC_PERIOD_BALANCES stores the WIP balances for all entities withina cost group by period. , implementation_dba_data: APPS.CSTFV_PAC_PERIOD_BALANCES ,
-
View: CSTFV_PAC_PERIOD_BALANCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_PERIOD_BALANCES, object_name:CSTFV_PAC_PERIOD_BALANCES, status:VALID, product: BOM - Bills of Material , description: CSTFV_PAC_PERIOD_BALANCES stores the WIP balances for all entities withina cost group by period. , implementation_dba_data: APPS.CSTFV_PAC_PERIOD_BALANCES ,
-
View: CSTFV_RCV_ACQ_COST_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COST_DETAILS, object_name:CSTFV_RCV_ACQ_COST_DETAILS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTFV_RCV_ACQ_COST_DETAILS ,
-
View: CSTFV_RCV_ACQ_COST_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_RCV_ACQ_COST_DETAILS, object_name:CSTFV_RCV_ACQ_COST_DETAILS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CSTFV_RCV_ACQ_COST_DETAILS ,
-
eTRM - BOM Tables and Views
12.1.1
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - BOM Tables and Views
12.2.2
description: Table to map wip transactions to their corresponding event types. ,