Search Results billable_quantity
Overview
PA_STATUS_EI_BASE_V is an APPS-owned database view in the Oracle E-Business Suite Projects (PA) module. It is documented with a status of VALID and carries the terse product description "10SC Only," indicating it is part of the consolidated expenditure status reporting infrastructure used by the Project Status Inquiry and related cost/revenue summarization features. The view presents expenditure balances aggregated at the expenditure item level, keyed by the expenditure item, its start date, and the PA period. Its central role in reporting and integration is to provide a single, pre-aggregated source of expenditure item financials — quantity, raw and burdened cost, billable and revenue amounts, and accounting amounts — so that downstream inquiry screens, concurrent summarization programs, and custom extracts do not each have to recompute these figures from raw transaction tables. Because its first column is EXPENDITURE_ITEM_ID, the view is commonly located when users or developers search that identifier while tracing how expenditure item amounts are rolled up for status reporting.
Underlying Base Objects
The view is defined over internal base views rather than directly over transaction tables. Per the documented ETRM metadata for release 12.2.2, the referenced objects are PA_STATUS (PACKAGE), PA_STATUS_RSRC_EI_BASE_V (VIEW), and PA_STATUS_TASK_EI_BASE_V (VIEW). The view text confirms this structure: it performs a UNION ALL of two symmetric SELECT statements, one from PA_STATUS_TASK_EI_BASE_V and one from PA_STATUS_RSRC_EI_BASE_V. Each branch groups its source rows by EXPENDITURE_ITEM_ID, PA_START_DATE, and PA_PERIOD and applies SUM aggregates to the same set of measures. The UNION ALL therefore combines the task-level base with the resource-level base so that a single expenditure item's totals are presented once per period and start date, regardless of which base contributed the rows.
Key Columns
The column list exposes the expenditure item identifier together with its period and date context and seven families of aggregated amounts:
- EXPENDITURE_ITEM_ID — the unique identifier of the expenditure item; the primary grouping key and the column most often used to join back to PA_EXPENDITURE_ITEMS_ALL and related tables.
- PA_START_DATE and PA_PERIOD — the date and accounting period dimensions over which the amounts are summarized.
- QUANTITY and BILLABLE_QUANTITY — total and billable units of the expenditure item.
- RAW_COST, BURDENED_COST, BILLABLE_RAW_COST, and BILLABLE_BURDENED_COST — the cost and billable cost pairs, in both raw and burdened form.
- REVENUE — revenue associated with the expenditure item.
- DENOM_RAW_COST and DENOM_BURDENED_COST — denominator (labor rate derivation) cost bases.
- ACCT_RAW_COST and ACCT_BURDENED_COST — the accounted raw and burdened cost amounts.
Because every measure is wrapped in SUM, consumers receive one consolidated row per expenditure item, start date, and period, which is well suited to inquiry-style reporting where detail-level transactions are unnecessary.
Common Use Cases and Queries
Typical uses include Project Status Inquiry reconciliation, cost and revenue reporting, and integration extracts that need expenditure item balances rather than raw transactions. A representative query filters by expenditure item and period:
SELECT expenditure_item_id, pa_period, pa_start_date, quantity, raw_cost, burdened_cost, billable_raw_cost, billable_burdened_cost, revenue FROM apps.pa_status_ei_base_v WHERE expenditure_item_id = :p_ei_id;SELECT expenditure_item_id, SUM(burdened_cost), SUM(revenue) FROM apps.pa_status_ei_base_v WHERE pa_period = :p_period GROUP BY expenditure_item_id;
Joins are typically made to expenditure item and project tables on EXPENDITURE_ITEM_ID to resolve descriptive attributes. Given the documented "10SC Only" designation, the view should be validated against the target instance before being relied upon in production customizations.
-
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_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_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_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_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_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_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_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_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_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.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_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: 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: 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: 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: 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_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_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.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 ,
-
View: 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, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_EI_V ,
-
View: 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, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_EI_V ,
-
View: PA_STATUS_EI_DRIVE_V_R
12.2.2
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_STATUS_EI_DRIVE_V_R
12.1.1
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: 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, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_EI_DRIVE_V ,
-
View: 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, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_EI_DRIVE_V ,