Search Results billable_labor_hours
Overview
PA_PA_VIEW is a reporting view in the Oracle EBS Projects (PA) module, documented in ETRM as spanning releases 12.1.1 and 12.2.2. Its purpose, per the metadata description, is to present "Actual cost and revenue totals for projects and tasks by PA Period." The view aggregates transactional and budgetary amounts at the project, task, and PA Period grain, making it suitable for period-based reporting, reconciliation, and downstream integration where summarized project financials are required rather than individual expenditure or event lines.
The description carries the qualifier "10SC Only." This indicates that the view is not a standard, generally available Oracle Projects object but rather one associated with a specific deployment context (a "10SC" localization or custom/solution bundle). The implementation note states "Not implemented in this database," reinforcing that the object may not exist in every 12.1.1 or 12.2.2 environment and its presence should be verified before use. The document is marked Oracle Proprietary, Confidential Information.
The user's search term, budgeted_revenue, maps directly to a column exposed by this view, which is the primary reason it surfaces for that keyword. PA_PA_VIEW is therefore most relevant to anyone seeking period-level budgeted revenue figures stored alongside actual revenue and cost totals.
Underlying Base Objects
The view text selects exclusively from a single source: PA_ACCUM_VIEW. It performs no joins; instead it aggregates (SUM) the accumulated amounts and groups them by PROJECT_ID, TASK_ID, PA_PERIOD, PA_START_DATE, and PA_END_DATE. PA_ACCUM_VIEW is the Projects accumulation view that consolidates project cost, revenue, billing, and budget data across the subledger and budget structures.
The ETRM metadata lists the referenced base objects as "none documented" and the owner field as blank, which is consistent with the "Not implemented in this database" note. In practice, the true lineage passes through PA_ACCUM_VIEW to the underlying Projects accumulation tables and, ultimately, to the project/task definition and period tables. Because the view only ever reads from PA_ACCUM_VIEW, any change to that object's definition propagates to PA_PA_VIEW.
Key Columns
The view exposes seventeen columns; the most operationally significant include:
- PROJECT_ID – Project identifier; grouping key linking to PA_PROJECTS.
- TASK_ID – Task identifier within the project; grouping key linking to PA_TASKS.
- PA_PERIOD – The PA Period name or identifier to which the rows are aggregated.
- PA_START_DATE / PA_END_DATE – Start and end dates of the corresponding PA Period.
- TOTAL_REVENUE – Total actual revenue accumulated for the period.
- TOTAL_RAW_COST / TOTAL_BURDEN_COST – Actual raw and burdened cost totals.
- TOTAL_QUANTITY / TOTAL_LABOR_HOURS – Aggregated quantity and labor hour totals.
- BILLABLE_RAW_COST / BILLABLE_BURDEN_COST / BILLABLE_QUANTITY / BILLABLE_LABOR_HOURS – The billable subset of cost, quantity, and hours.
- BUDGETED_COST – Budgeted cost for the project/task/period.
- BUDGETED_REVENUE – Budgeted revenue, the column matched by the user's search term.
- BUDGETED_LABOR_HOURS – Budgeted labor hours.
All monetary, quantity, and hour totals are wrapped in ROUND with no decimal argument, so values are returned as whole numbers, which is important to note for reconciliation and precision-sensitive reporting.
Common Use Cases and Queries
Because the view delivers period-grouped actual versus budgeted figures, it supports budget-to-actual variance analysis, period-over-period revenue tracking, and integration extracts. A representative query retrieving budgeted and actual revenue by project and period is:
SELECT project_id, task_id, pa_period, pa_start_date, pa_end_date, total_revenue, budgeted_revenue FROM pa_pa_view WHERE project_id = :project_id ORDER BY pa_period;- Variance:
SELECT project_id, pa_period, budgeted_revenue - total_revenue AS revenue_variance FROM pa_pa_view; - Labor utilization:
SELECT project_id, pa_period, total_labor_hours, billable_labor_hours, budgeted_labor_hours FROM pa_pa_view WHERE task_id = :task_id;
Before relying on the view, confirm its existence in the target database, given the "Not implemented in this database" and "10SC Only" notes. Where PA_PA_VIEW is absent, equivalent results can be obtained by replicating its aggregation directly against PA_ACCUM_VIEW.
-
View: PA_PA_VIEW
12.1.1
product: PA - Projects , description: 10SC Only - Actual cost and revenue totals for projects and tasks by PA Period , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXP_TYPE_PA_VIEW
12.1.1
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by PA Period and expenditure type , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXP_TYPE_GL_VIEW
12.1.1
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by GL Period and expenditure type , implementation_dba_data: Not implemented in this database ,
-
View: PA_PA_VIEW
12.2.2
product: PA - Projects , description: 10SC Only - Actual cost and revenue totals for projects and tasks by PA Period , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXP_CAT_GL_VIEW
12.2.2
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by GL Period and expenditure category , implementation_dba_data: Not implemented in this database ,
-
View: PA_GL_VIEW
12.2.2
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by GL Period. , implementation_dba_data: Not implemented in this database ,
-
View: PA_REV_CAT_PA_VIEW
12.1.1
product: PA - Projects , description: 10SC Only- Actual and budgeted cost/revenue for projects and tasks by PA Period and revenue category/event type class , implementation_dba_data: Not implemented in this database ,
-
View: PA_REV_CAT_GL_VIEW
12.1.1
product: PA - Projects , description: 10SC Only - Actual and budgeted cost/revenue for projects and tasks by GL Period and revenue category/event type class , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXP_TYPE_GL_VIEW
12.2.2
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by GL Period and expenditure type , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXP_TYPE_PA_VIEW
12.2.2
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by PA Period and expenditure type , implementation_dba_data: Not implemented in this database ,
-
View: PA_REV_CAT_GL_VIEW
12.2.2
product: PA - Projects , description: 10SC Only - Actual and budgeted cost/revenue for projects and tasks by GL Period and revenue category/event type class , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXP_CAT_PA_VIEW
12.1.1
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by PA Period and expenditure category , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXP_CAT_GL_VIEW
12.1.1
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by GL Period and expenditure category , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXP_CAT_PA_VIEW
12.2.2
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by PA Period and expenditure category , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXP_ORG_PA_VIEW
12.1.1
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by PA Period and expenditure organization , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXP_ORG_PA_VIEW
12.2.2
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by PA Period and expenditure organization , implementation_dba_data: Not implemented in this database ,
-
View: PA_GL_VIEW
12.1.1
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by GL Period. , implementation_dba_data: Not implemented in this database ,
-
View: PA_REV_CAT_PA_VIEW
12.2.2
product: PA - Projects , description: 10SC Only- Actual and budgeted cost/revenue for projects and tasks by PA Period and revenue category/event type class , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXP_ORG_GL_VIEW
12.1.1
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by GL Period and expenditure organization , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXP_ORG_GL_VIEW
12.2.2
product: PA - Projects , description: R10SC Only - Actual cost and revenue totals for projects and tasks by GL Period and expenditure organization , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PA_TXN_ACCUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TXN_ACCUM_V, object_name:PA_TXN_ACCUM_V, status:VALID,
-
VIEW: APPS.PA_ACT_BY_PA_PERIOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACT_BY_PA_PERIOD_V, object_name:PA_ACT_BY_PA_PERIOD_V, status:VALID,
-
VIEW: APPS.PA_TXN_ACCUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TXN_ACCUM_V, object_name:PA_TXN_ACCUM_V, status:VALID,
-
VIEW: APPS.PA_ACT_BY_PA_PERIOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACT_BY_PA_PERIOD_V, object_name:PA_ACT_BY_PA_PERIOD_V, status:VALID,
-
VIEW: APPS.PA_ACT_BY_GL_PERIOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACT_BY_GL_PERIOD_V, object_name:PA_ACT_BY_GL_PERIOD_V, status:VALID,
-
VIEW: APPS.PA_ACT_BY_GL_PERIOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACT_BY_GL_PERIOD_V, object_name:PA_ACT_BY_GL_PERIOD_V, status:VALID,
-
View: PA_ACT_BY_PA_PERIOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACT_BY_PA_PERIOD_V, object_name:PA_ACT_BY_PA_PERIOD_V, status:VALID, product: PA - Projects , description: Actual cost and revenue totals for lowest level tasks and resources by PA period. , implementation_dba_data: APPS.PA_ACT_BY_PA_PERIOD_V ,
-
View: PA_ACT_BY_PA_PERIOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACT_BY_PA_PERIOD_V, object_name:PA_ACT_BY_PA_PERIOD_V, status:VALID, product: PA - Projects , description: Actual cost and revenue totals for lowest level tasks and resources by PA period. , implementation_dba_data: APPS.PA_ACT_BY_PA_PERIOD_V ,
-
View: PA_ACT_BY_GL_PERIOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACT_BY_GL_PERIOD_V, object_name:PA_ACT_BY_GL_PERIOD_V, status:VALID, product: PA - Projects , description: Actual cost and revenue totals for lowest level tasks and resources by GL period. , implementation_dba_data: APPS.PA_ACT_BY_GL_PERIOD_V ,
-
View: PA_ACT_BY_GL_PERIOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACT_BY_GL_PERIOD_V, object_name:PA_ACT_BY_GL_PERIOD_V, status:VALID, product: PA - Projects , description: Actual cost and revenue totals for lowest level tasks and resources by GL period. , implementation_dba_data: APPS.PA_ACT_BY_GL_PERIOD_V ,
-
Lookup Type: ACCUMULATION_COLUMN
12.1.1
product: PA - Projects , meaning: Accumulation Column , description: Accumulation_Column ,
-
View: PA_TXN_ACCUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TXN_ACCUM_V, object_name:PA_TXN_ACCUM_V, status:VALID, product: PA - Projects , description: This view displays detail information for a given transaction by various transaction attributes , implementation_dba_data: APPS.PA_TXN_ACCUM_V ,
-
View: PA_ACCUM_VIEW
12.1.1
product: PA - Projects , description: 10SC Only , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: PROJECT AMOUNT OPTION
12.2.2
product: PA - Projects , meaning: Project Amount Option , description: Project Amount Option ,
-
View: PA_ACCUM_VIEW
12.2.2
product: PA - Projects , description: 10SC Only , implementation_dba_data: Not implemented in this database ,
-
Lookup Type: ACCUMULATION_COLUMN
12.2.2
product: PA - Projects , meaning: Accumulation Column , description: Accumulation_Column ,
-
View: PA_TXN_ACCUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TXN_ACCUM_V, object_name:PA_TXN_ACCUM_V, status:VALID, product: PA - Projects , description: This view displays detail information for a given transaction by various transaction attributes , implementation_dba_data: APPS.PA_TXN_ACCUM_V ,
-
Lookup Type: PROJECT AMOUNT OPTION
12.1.1
product: PA - Projects , meaning: Project Amount Option , description: Project Amount Option ,
-
PACKAGE: APPS.PA_BUDGET_CORE1
12.1.1
-
PACKAGE: APPS.PA_BUDGET_CORE1
12.2.2
-
VIEW: APPS.PJI_XTD_ACT_CMT_BY_TASK_V
12.2.2
-
VIEW: APPS.PJI_XTD_ACT_CMT_BY_RSRC_V
12.2.2
-
VIEW: APPS.PJI_XTD_ACT_CMT_BY_RSRC_V
12.1.1
-
VIEW: APPS.PJI_XTD_ACT_CMT_BY_TASK_V
12.1.1
-
View: PJI_XTD_ACT_CMT_BY_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_XTD_ACT_CMT_BY_TASK_V, object_name:PJI_XTD_ACT_CMT_BY_TASK_V, status:VALID, product: PJI - Project Intelligence , description: PJI_XTD_ACT_CMT_BY_TASK_V is a view that displays actual cost, revenue totals, and commitments for PTD, QTD, YTD, and ITD by task. The view is mainly used by external project management systems that import actuals from Oracle Projects. , implementation_dba_data: APPS.PJI_XTD_ACT_CMT_BY_TASK_V ,
-
View: PJI_XTD_ACT_CMT_BY_TASK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_XTD_ACT_CMT_BY_TASK_V, object_name:PJI_XTD_ACT_CMT_BY_TASK_V, status:VALID, product: PJI - Project Intelligence(Obsolete) , description: PJI_XTD_ACT_CMT_BY_TASK_V is a view that displays actual cost, revenue totals, and commitments for PTD, QTD, YTD, and ITD by task. The view is mainly used by external project management systems that import actuals from Oracle Projects. , implementation_dba_data: APPS.PJI_XTD_ACT_CMT_BY_TASK_V ,
-
View: PJI_XTD_ACT_CMT_BY_RSRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_XTD_ACT_CMT_BY_RSRC_V, object_name:PJI_XTD_ACT_CMT_BY_RSRC_V, status:VALID, product: PJI - Project Intelligence , description: PJI_XTD_ACT_CMT_BY_RSRC_V is a view that displays actual cost, revenue totals, and commitments for PTD, QTD, YTD, and ITD by task, and resource. The view is mainly used by external project management systems that import actuals from Oracle , implementation_dba_data: APPS.PJI_XTD_ACT_CMT_BY_RSRC_V ,
-
VIEW: APPS.PJI_XTD_PLN_BY_TASK_V
12.1.1
-
VIEW: APPS.PJI_XTD_PLN_BY_TASK_V
12.2.2
-
View: PJI_XTD_ACT_CMT_BY_RSRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_XTD_ACT_CMT_BY_RSRC_V, object_name:PJI_XTD_ACT_CMT_BY_RSRC_V, status:VALID, product: PJI - Project Intelligence(Obsolete) , description: PJI_XTD_ACT_CMT_BY_RSRC_V is a view that displays actual cost, revenue totals, and commitments for PTD, QTD, YTD, and ITD by task, and resource. The view is mainly used by external project management systems that import actuals from Oracle , implementation_dba_data: APPS.PJI_XTD_ACT_CMT_BY_RSRC_V ,