Search Results start_time_period_id
Overview
The PQH_BUDGET_PERIODS table is a core data object within the Oracle E-Business Suite Public Sector Human Resources (PQH) module. It serves as the central repository for defining the specific time periods associated with a budget. In the context of public sector budgeting, where financial planning is often tied to fiscal years, quarters, or other defined intervals, this table provides the critical temporal structure. It links budget details to the application's standard time periods, enabling precise allocation, tracking, and reporting of budgeted amounts over time. Its primary role is to establish the valid date range for which a budget is applicable, forming an essential component of the overall budget definition and control framework in Oracle EBS.
Key Information Stored
The table's structure is designed to manage the relationship between a budget and its active timeframe. The primary identifier is the system-generated BUDGET_PERIOD_ID. The most significant foreign key is BUDGET_DETAIL_ID, which links each period record to its parent budget definition in the PQH_BUDGET_DETAILS table. The temporal boundaries are defined by the START_TIME_PERIOD_ID and END_TIME_PERIOD_ID columns, both of which reference the standard PER_TIME_PERIODS table. This design allows a single budget detail record to be associated with one or more specific time periods, facilitating complex budgeting scenarios that may span multiple fiscal intervals or require period-specific allocations.
Common Use Cases and Queries
A primary use case is validating and reporting on budget availability within a given date range. Financial and HR analysts frequently query this table to determine which budgets are active during a specific payroll period or fiscal quarter. A common reporting pattern involves joining to PQH_BUDGET_DETAILS and PER_TIME_PERIODS to translate ID values into meaningful descriptions and dates. For instance, a query to list all budget periods for a specific budget would filter on BUDGET_DETAIL_ID and join to PER_TIME_PERIODS twice to retrieve the start and end period names. Administrators may also use this table to ensure no overlapping periods exist for a single budget detail, a critical check for maintaining data integrity. Sample SQL often follows this pattern:
- SELECT bp.budget_period_id, bp.budget_detail_id, start_period.period_name start_period, end_period.period_name end_period FROM pqh_budget_periods bp, per_time_periods start_period, per_time_periods end_period WHERE bp.start_time_period_id = start_period.time_period_id AND bp.end_time_period_id = end_period.time_period_id AND bp.budget_detail_id = :p_budget_detail_id;
Related Objects
PQH_BUDGET_PERIODS is a central node within the Public Sector HR budgeting schema. Its most direct relationship is with the PQH_BUDGET_DETAILS table, which holds the core budget definition; periods are child records to a budget detail. It has two foreign key dependencies on the foundational PER_TIME_PERIODS table to define its start and end points. Furthermore, the metadata indicates that the PQH_BUDGET_SETS table holds a foreign key reference (BUDGET_PERIOD_ID) back to this table, suggesting that budget sets are grouped or associated with specific budget periods. This network of relationships positions PQH_BUDGET_PERIODS as a key connector between budget amounts, time, and higher-level budget groupings.
-
Table: PQH_BUDGET_PERIODS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PQH.PQH_BUDGET_PERIODS, object_name:PQH_BUDGET_PERIODS, status:VALID, product: PQH - Public Sector HR , description: Period details for budget , implementation_dba_data: HR.PQH_BUDGET_PERIODS ,
-
Table: PQH_WORKSHEET_PERIODS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PQH.PQH_WORKSHEET_PERIODS, object_name:PQH_WORKSHEET_PERIODS, status:VALID, product: PQH - Public Sector HR , description: Period wise details of transaction data for budget version , implementation_dba_data: HR.PQH_WORKSHEET_PERIODS ,
-
Table: PQH_BUDGET_PERIODS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PQH.PQH_BUDGET_PERIODS, object_name:PQH_BUDGET_PERIODS, status:VALID, product: PQH - Public Sector HR , description: Period details for budget , implementation_dba_data: HR.PQH_BUDGET_PERIODS ,
-
Table: PQH_WORKSHEET_PERIODS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PQH.PQH_WORKSHEET_PERIODS, object_name:PQH_WORKSHEET_PERIODS, status:VALID, product: PQH - Public Sector HR , description: Period wise details of transaction data for budget version , implementation_dba_data: HR.PQH_WORKSHEET_PERIODS ,