Search Results billable_burdened_cost
Overview
APPS.PA_STATUS_EI_BASE_V is a reporting view in Oracle EBS Projects (PA) that aggregates expenditure item–level project status amounts, grouped by expenditure item, project accounting start date, and PA period. Its role is to consolidate the task-level and resource-level status base views into a single, unified result set so that downstream status inquiry and reporting logic can query one consistent source of truth. The view is defined as the UNION ALL of PA_STATUS_TASK_EI_BASE_V and PA_STATUS_RSRC_EI_BASE_V, and it is referenced by the PA_STATUS package, which drives the project status generation and reporting process.
Because it is a base reporting view rather than a transaction table, it carries no independent data of its own. All figures it exposes are derived at runtime from its two child views. In the Oracle EBS 12.1.1 and 12.2.2 releases, this view supports the project status and expenditure inquiry flows where users examine cost, burden, billable, and revenue amounts on a period-by-period basis. The inclusion of the PA_PERIOD column makes it particularly relevant to users searching for pa_period, since period-level aggregation is central to project performance reporting.
Underlying Base Objects
The ETRM metadata documents the view as referencing three objects: the PA_STATUS package and two views, PA_STATUS_TASK_EI_BASE_V and PA_STATUS_RSRC_EI_BASE_V. The view text confirms that the SELECT statements draw exclusively from these two base views. Each branch of the UNION ALL aggregates the same set of measures over the same grouping keys (EXPENDITURE_ITEM_ID, PA_START_DATE, PA_PERIOD), and returns identical column lists, allowing Oracle to combine them without column mismatch. The PA_STATUS package is the consuming object that calls this view during project status compilation, so changes to either child view or to the expenditure item data beneath them flow through to any report that relies on PA_STATUS_EI_BASE_V.
Key Columns
- EXPENDITURE_ITEM_ID — Identifier of the expenditure item; a primary grouping key.
- PA_START_DATE — Project accounting start date associated with the item; used as a grouping key for time-based reporting.
- PA_PERIOD — The PA accounting period name; central to period-by-period rollups and the column most commonly filtered for period reporting.
- QUANTITY — Total quantity of the expenditure item.
- RAW_COST — Unburdened cost amount.
- BURDENED_COST — Cost including burden (overhead) amounts.
- BILLABLE_QUANTITY, BILLABLE_RAW_COST, BILLABLE_BURDENED_COST — Billable portions of quantity, raw cost, and burdened cost.
- REVENUE — Revenue amount attributed to the item.
- DENOM_RAW_COST, DENOM_BURDENED_COST — Denominator cost figures used in burden and rate calculations.
- ACCT_RAW_COST, ACCT_BURDENED_COST — Accounted (GL-relevant) raw and burdened cost amounts.
Common Use Cases and Queries
A frequent scenario is retrieving period-specific cost and revenue for a given expenditure item. The following query summarizes the measures for a single item across periods:
SELECT expenditure_item_id, pa_period, SUM(raw_cost), SUM(burdened_cost),
SUM(billable_raw_cost), SUM(revenue)
FROM apps.pa_status_ei_base_v
WHERE expenditure_item_id = :p_ei_id
GROUP BY expenditure_item_id, pa_period
ORDER BY pa_period;
Another common requirement is to report all activity within a specific PA period, which is the pattern implied by the pa_period search leading to this view:
SELECT expenditure_item_id, pa_start_date, SUM(raw_cost), SUM(burdened_cost)
FROM apps.pa_status_ei_base_v
WHERE pa_period = :p_pa_period
GROUP BY expenditure_item_id, pa_start_date;
Because the view performs aggregation internally, additional grouping or filtering should be applied with care; the SUM() functions shown above are used to re-aggregate across the UNION ALL branches if a report requires a single, consolidated line per expenditure item and period. Users should also account for the UNION ALL behavior, which preserves rows from both the task and resource branches rather than eliminating duplicates, so a distinct or grouped query may be needed for reconciliation reporting.
-
VIEW: APPS.PA_STATUS_EI_BASE_V
12.1.1
-
VIEW: APPS.PA_STATUS_EI_BASE_V
12.2.2
-
View: PA_STATUS_EI_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_BASE_V, object_name:PA_STATUS_EI_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_EI_BASE_V ,
-
View: PA_STATUS_EI_BASE_V_R
12.1.1
product: PA - Projects , description: 10SC Only , implementation_dba_data: Not implemented in this database ,
-
View: PA_STATUS_EI_BASE_V_R
12.2.2
product: PA - Projects , description: 10SC Only , implementation_dba_data: Not implemented in this database ,
-
View: PA_STATUS_EI_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_BASE_V, object_name:PA_STATUS_EI_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_EI_BASE_V ,
-
VIEW: APPS.PJI_XTD_ACT_CMT_BY_TASK_V
12.2.2
-
VIEW: APPS.PA_STATUS_EI_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_BASE_V, object_name:PA_STATUS_EI_BASE_V, status:VALID,
-
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.PA_STATUS_TASK_EI_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_TASK_EI_BASE_V, object_name:PA_STATUS_TASK_EI_BASE_V, status:VALID,
-
VIEW: APPS.PA_STATUS_TASK_EI_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_TASK_EI_BASE_V, object_name:PA_STATUS_TASK_EI_BASE_V, status:VALID,
-
VIEW: APPS.PJI_XTD_ACT_CMT_BY_TASK_V
12.1.1
-
VIEW: APPS.PA_STATUS_EI_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_BASE_V, object_name:PA_STATUS_EI_BASE_V, status:VALID,
-
VIEW: APPS.PA_STATUS_RSRC_EI_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_EI_BASE_V, object_name:PA_STATUS_RSRC_EI_BASE_V, status:VALID,
-
View: PA_STATUS_RSRC_EI_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_EI_BASE_V, object_name:PA_STATUS_RSRC_EI_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_RSRC_EI_BASE_V ,
-
View: PA_STATUS_RSRC_EI_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_EI_BASE_V, object_name:PA_STATUS_RSRC_EI_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_RSRC_EI_BASE_V ,
-
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: 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: 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: APPS.PA_STATUS_RSRC_EI_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_EI_BASE_V, object_name:PA_STATUS_RSRC_EI_BASE_V, status:VALID,
-
VIEW: APPS.PJI_XTD_PLN_BY_TASK_V
12.1.1
-
VIEW: APPS.PJI_XTD_PLN_BY_TASK_V
12.2.2
-
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: PA_STATUS_TASK_EI_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_TASK_EI_BASE_V, object_name:PA_STATUS_TASK_EI_BASE_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_TASK_EI_BASE_V ,
-
View: PA_STATUS_TASK_EI_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_TASK_EI_BASE_V, object_name:PA_STATUS_TASK_EI_BASE_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_TASK_EI_BASE_V ,
-
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: APPS.PA_STATUS_EI_DRIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_DRIVE_V, object_name:PA_STATUS_EI_DRIVE_V, status:VALID,
-
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 ,
-
VIEW: APPS.PA_STATUS_EI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_V, object_name:PA_STATUS_EI_V, status:VALID,
-
VIEW: APPS.PJI_XTD_PLN_BY_RSRC_V
12.2.2
-
VIEW: APPS.PJI_XTD_PLN_BY_RSRC_V
12.1.1
-
VIEW: APPS.PA_STATUS_TASK_EI_BASE_V
12.1.1
-
View: PJI_XTD_PLN_BY_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_XTD_PLN_BY_TASK_V, object_name:PJI_XTD_PLN_BY_TASK_V, status:VALID, product: PJI - Project Intelligence , description: PJI_XTD_PLN_BY_TASK_V is a view that displays budget cost and revenue totals 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_PLN_BY_TASK_V ,
-
VIEW: APPS.PA_STATUS_RSRC_EI_BASE_V
12.2.2
-
VIEW: APPS.PA_STATUS_EI_DRIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_DRIVE_V, object_name:PA_STATUS_EI_DRIVE_V, status:VALID,
-
View: PJI_XTD_PLN_BY_RSRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_XTD_PLN_BY_RSRC_V, object_name:PJI_XTD_PLN_BY_RSRC_V, status:VALID, product: PJI - Project Intelligence , description: PJI_XTD_PLN_BY_RSRC_V is a view that displays budget cost and revenue totals 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 Projects. , implementation_dba_data: APPS.PJI_XTD_PLN_BY_RSRC_V ,
-
View: PJI_XTD_PLN_BY_TASK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_XTD_PLN_BY_TASK_V, object_name:PJI_XTD_PLN_BY_TASK_V, status:VALID, product: PJI - Project Intelligence(Obsolete) , description: PJI_XTD_PLN_BY_TASK_V is a view that displays budget cost and revenue totals 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_PLN_BY_TASK_V ,
-
VIEW: APPS.PA_STATUS_TASK_EI_BASE_V
12.2.2
-
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: APPS.PA_STATUS_EI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_V, object_name:PA_STATUS_EI_V, status:VALID,
-
VIEW: APPS.PA_STATUS_RSRC_EI_BASE_V
12.1.1
-
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 ,