Search Results cst_pac_periods
Overview
The CST_PAC_PERIODS table is a core data structure within Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Bills of Material (BOM) product module. It serves as the master control table for Periodic Average Costing (PAC), a key inventory valuation method. Its primary role is to define and manage the open and closed costing periods for each legal entity within the organization. By establishing these discrete accounting periods, the table enables the system to accumulate and average material and manufacturing costs over a period, which are then used to value inventory transactions and balances. The integrity of the entire periodic costing process is anchored to the periods defined in this table.
Key Information Stored
The table's primary key is the system-generated PAC_PERIOD_ID, which uniquely identifies each costing period record. The most critical columns define the period's context and status. These include LEGAL_ENTITY, which links to HR_ALL_ORGANIZATION_UNITS to identify the organization; COST_TYPE_ID, which references CST_COST_TYPES to specify the average cost type; and PERIOD_SET_NAME and PERIOD_NAME, which link to GL_PERIODS to synchronize with the general ledger accounting calendar. Other essential columns track the period's operational state, such as the PERIOD_CLOSE_DATE and flags indicating whether the period is open for transaction processing, closed, permanently closed, or pending final closure. This structure ensures cost calculations are segregated and controlled by legal entity, cost type, and time period.
Common Use Cases and Queries
A primary use case is validating the status of a costing period before running critical processes like the Cost Processor or generating period-end reports. Administrators frequently query this table to list open periods or identify periods pending closure. Common SQL patterns include checking period status for a specific entity and cost type, or joining with GL_PERIODS for detailed reporting.
- Finding open periods for a legal entity:
SELECT period_name, period_start_date FROM cst_pac_periods WHERE legal_entity = :p_org_id AND cost_type_id = :p_cost_type AND open_flag = 'Y'; - Identifying periods with pending transactions before closure:
SELECT period_name FROM cst_pac_periods WHERE legal_entity = :p_org_id AND pending_close_flag = 'Y'; - Reporting on period statuses alongside GL dates:
SELECT cpp.period_name, glp.start_date, glp.end_date, cpp.open_flag FROM cst_pac_periods cpp, gl_periods glp WHERE cpp.period_set_name = glp.period_set_name AND cpp.period_name = glp.period_name;
Related Objects
CST_PAC_PERIODS has extensive relationships, acting as a parent table for numerous transactional and balance tables in the costing schema. As per the provided metadata, its primary key (PAC_PERIOD_ID) is referenced by key PAC working and storage tables, including CST_PAC_ITEM_COSTS, CST_PAC_QUANTITY_LAYERS, and WIP_PAC_PERIOD_BALANCES. It is also referenced by process control tables like CST_PAC_PROCESS_PHASES and detail tables for actual costs, such as MTL_PAC_ACTUAL_COST_DETAILS and WIP_PAC_ACTUAL_COST_DETAILS. Furthermore, it maintains foreign key relationships to foundational setup tables: CST_COST_TYPES (COST_TYPE_ID), HR_ALL_ORGANIZATION_UNITS (LEGAL_ENTITY), and GL_PERIODS (PERIOD_SET_NAME, PERIOD_NAME). This web of dependencies underscores its central role in the Periodic Average Costing architecture.
-
Table: CST_PAC_PERIODS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_PERIODS, object_name:CST_PAC_PERIODS, status:VALID, product: BOM - Bills of Material , description: Holds information about periodic costing open and closed periods for each legal entity. , implementation_dba_data: BOM.CST_PAC_PERIODS ,
-
Table: CST_PAC_PERIODS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_PERIODS, object_name:CST_PAC_PERIODS, status:VALID, product: BOM - Bills of Material , description: Holds information about periodic costing open and closed periods for each legal entity. , implementation_dba_data: BOM.CST_PAC_PERIODS ,
-
Table: CST_PAC_LOW_LEVEL_CODES
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_LOW_LEVEL_CODES, object_name:CST_PAC_LOW_LEVEL_CODES, status:VALID, product: BOM - Bills of Material , description: Stores low level codes for items for a given period and organization cost group. , implementation_dba_data: BOM.CST_PAC_LOW_LEVEL_CODES ,
-
Table: CST_PAC_EXPLOSION_TEMP
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_EXPLOSION_TEMP, object_name:CST_PAC_EXPLOSION_TEMP, status:VALID, product: BOM - Bills of Material , description: Stores distinct parent-child combinations of items for a given period and organization cost group. , implementation_dba_data: BOM.CST_PAC_EXPLOSION_TEMP ,
-
Table: CST_PAC_QUANTITY_LAYERS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_QUANTITY_LAYERS, object_name:CST_PAC_QUANTITY_LAYERS, status:VALID, product: BOM - Bills of Material , description: Stores the layer quantity of an item by period for periodic costing , implementation_dba_data: BOM.CST_PAC_QUANTITY_LAYERS ,
-
Table: CST_RCV_ACQ_COSTS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_RCV_ACQ_COSTS, object_name:CST_RCV_ACQ_COSTS, status:VALID, product: BOM - Bills of Material , description: Stores acquisition cost per period, organization cost group for periodic costing , implementation_dba_data: BOM.CST_RCV_ACQ_COSTS ,
-
Table: CST_PAC_ITEM_COSTS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_ITEM_COSTS, object_name:CST_PAC_ITEM_COSTS, status:VALID, product: BOM - Bills of Material , description: Stores the item cost and quantity in a period and organization cost group. , implementation_dba_data: BOM.CST_PAC_ITEM_COSTS ,
-
Table: CST_PAC_QUANTITY_LAYERS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_QUANTITY_LAYERS, object_name:CST_PAC_QUANTITY_LAYERS, status:VALID, product: BOM - Bills of Material , description: Stores the layer quantity of an item by period for periodic costing , implementation_dba_data: BOM.CST_PAC_QUANTITY_LAYERS ,
-
Table: CST_RCV_ACQ_COSTS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_RCV_ACQ_COSTS, object_name:CST_RCV_ACQ_COSTS, status:VALID, product: BOM - Bills of Material , description: Stores acquisition cost per period, organization cost group for periodic costing , implementation_dba_data: BOM.CST_RCV_ACQ_COSTS ,
-
Table: CST_PAC_ITEM_COSTS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_ITEM_COSTS, object_name:CST_PAC_ITEM_COSTS, status:VALID, product: BOM - Bills of Material , description: Stores the item cost and quantity in a period and organization cost group. , implementation_dba_data: BOM.CST_PAC_ITEM_COSTS ,
-
Table: CST_AE_HEADERS
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_AE_HEADERS, object_name:CST_AE_HEADERS, status:VALID, product: BOM - Bills of Material , description: Header Information for Periodic Accounting Distributions , implementation_dba_data: BOM.CST_AE_HEADERS ,
-
Table: CST_PAC_EXPLOSION_TEMP
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_EXPLOSION_TEMP, object_name:CST_PAC_EXPLOSION_TEMP, status:VALID, product: BOM - Bills of Material , description: Stores distinct parent-child combinations of items for a given period and organization cost group. , implementation_dba_data: BOM.CST_PAC_EXPLOSION_TEMP ,
-
Table: CST_PAC_LOW_LEVEL_CODES
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_LOW_LEVEL_CODES, object_name:CST_PAC_LOW_LEVEL_CODES, status:VALID, product: BOM - Bills of Material , description: Stores low level codes for items for a given period and organization cost group. , implementation_dba_data: BOM.CST_PAC_LOW_LEVEL_CODES ,
-
Table: CST_AE_HEADERS
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_AE_HEADERS, object_name:CST_AE_HEADERS, status:VALID, product: BOM - Bills of Material , description: Header Information for Periodic Accounting Distributions , implementation_dba_data: BOM.CST_AE_HEADERS ,
-
Table: CST_PAC_PROCESS_PHASES
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_PROCESS_PHASES, object_name:CST_PAC_PROCESS_PHASES, status:VALID, product: BOM - Bills of Material , description: Holds the status for each process phase in a particular period and organization cost group , implementation_dba_data: BOM.CST_PAC_PROCESS_PHASES ,
-
Table: CST_PAC_PROCESS_PHASES
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_PROCESS_PHASES, object_name:CST_PAC_PROCESS_PHASES, status:VALID, product: BOM - Bills of Material , description: Holds the status for each process phase in a particular period and organization cost group , implementation_dba_data: BOM.CST_PAC_PROCESS_PHASES ,
-
View: CSTBV_PAC_PERIODS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_PERIODS, object_name:CSTBV_PAC_PERIODS, status:VALID, product: BOM - Bills of Material , description: Information about periodic costing open and closed periods for each legal entity and cost group combination , implementation_dba_data: APPS.CSTBV_PAC_PERIODS ,
-
View: CSTFV_PAC_PERIODS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_PERIODS, object_name:CSTFV_PAC_PERIODS, status:VALID, product: BOM - Bills of Material , description: Information about open and closed periods , implementation_dba_data: APPS.CSTFV_PAC_PERIODS ,
-
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: 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_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: CSTBV_PAC_PERIODS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_PAC_PERIODS, object_name:CSTBV_PAC_PERIODS, status:VALID, product: BOM - Bills of Material , description: Information about periodic costing open and closed periods for each legal entity and cost group combination , implementation_dba_data: APPS.CSTBV_PAC_PERIODS ,
-
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.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_PERIODS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_PAC_PERIODS, object_name:CSTFV_PAC_PERIODS, status:VALID, product: BOM - Bills of Material , description: Information about open and closed periods , implementation_dba_data: APPS.CSTFV_PAC_PERIODS ,
-
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 ,
-
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: 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_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_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: CST_MGD_LIFO_ITEM_COSTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_MGD_LIFO_ITEM_COSTS_V, object_name:CST_MGD_LIFO_ITEM_COSTS_V, status:VALID, product: BOM - Bills of Material , description: View on which the Periodic Costing Item Inquiry form is based , implementation_dba_data: APPS.CST_MGD_LIFO_ITEM_COSTS_V ,
-
View: CST_MGD_LIFO_PERIODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_MGD_LIFO_PERIODS_V, object_name:CST_MGD_LIFO_PERIODS_V, status:VALID, product: BOM - Bills of Material , description: View to retrieve period information from pac period table restricted by mfg_lookups.lookup_type = CST_PAC_PERIOD_STATUS mfg_lookups.lookup_code = DECODE(pp.open_flag,'Y',2,'N',4,3) , implementation_dba_data: APPS.CST_MGD_LIFO_PERIODS_V ,
-
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_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: 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: CST_MGD_LIFO_ITEM_COSTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_MGD_LIFO_ITEM_COSTS_V, object_name:CST_MGD_LIFO_ITEM_COSTS_V, status:VALID, product: BOM - Bills of Material , description: View on which the Periodic Costing Item Inquiry form is based , implementation_dba_data: APPS.CST_MGD_LIFO_ITEM_COSTS_V ,
-
View: CST_MGD_LIFO_PERIODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_MGD_LIFO_PERIODS_V, object_name:CST_MGD_LIFO_PERIODS_V, status:VALID, product: BOM - Bills of Material , description: View to retrieve period information from pac period table restricted by mfg_lookups.lookup_type = CST_PAC_PERIOD_STATUS mfg_lookups.lookup_code = DECODE(pp.open_flag,'Y',2,'N',4,3) , implementation_dba_data: APPS.CST_MGD_LIFO_PERIODS_V ,
-
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: CST_PAC_PERIODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_PERIODS_V, object_name:CST_PAC_PERIODS_V, status:VALID, product: BOM - Bills of Material , description: Stores information about open and closed periods , implementation_dba_data: APPS.CST_PAC_PERIODS_V ,
-
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_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: 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: CST_PAC_PERIODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PAC_PERIODS_V, object_name:CST_PAC_PERIODS_V, status:VALID, product: BOM - Bills of Material , description: Stores information about open and closed periods , implementation_dba_data: APPS.CST_PAC_PERIODS_V ,
-
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 ,