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: APPS.PA_STATUS_EI_BASE_V
12.1.1
-
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: APPS.PA_STATUS_EI_BASE_V
12.2.2
-
VIEW: PA.PA_PROJECT_EXP_ITEM_ACCUM#
12.2.2
-
VIEW: WSH.WSH_FREIGHT_COSTS#
12.2.2
-
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_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_R
12.1.1
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: WSH.WSH_FREIGHT_COSTS_INTERFACE#
12.2.2
-
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.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_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_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: FTE.FTE_FREIGHT_COSTS_TEMP#
12.2.2
-
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_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: PJI_ACT_CMT_BY_PERIOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_ACT_CMT_BY_PERIOD_V, object_name:PJI_ACT_CMT_BY_PERIOD_V, status:VALID, product: PJI - Project Intelligence , description: PJI_ACT_CMT_BY_PERIOD_V is a view that displays actual cost, revenue totals, and commitment for lowest level tasks and resources by PA, and GL periods. The view is mainly used by external project management systems that import actuals from , implementation_dba_data: APPS.PJI_ACT_CMT_BY_PERIOD_V ,
-
View: PJI_ACT_CMT_BY_PERIOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_ACT_CMT_BY_PERIOD_V, object_name:PJI_ACT_CMT_BY_PERIOD_V, status:VALID, product: PJI - Project Intelligence(Obsolete) , description: PJI_ACT_CMT_BY_PERIOD_V is a view that displays actual cost, revenue totals, and commitment for lowest level tasks and resources by PA, and GL periods. The view is mainly used by external project management systems that import actuals from , implementation_dba_data: APPS.PJI_ACT_CMT_BY_PERIOD_V ,
-
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_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_ACT_CMT_BY_PERIOD_V
12.1.1
-
VIEW: APPS.PJI_ACT_CMT_BY_PERIOD_V
12.2.2
-
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,
-
TABLE: WSH.WSH_FREIGHT_COSTS_INTERFACE
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_FREIGHT_COSTS_INTERFACE, object_name:WSH_FREIGHT_COSTS_INTERFACE, status:VALID,
-
View: PJI_AC_ACT_CMT_BY_RSRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_AC_ACT_CMT_BY_RSRC_V, object_name:PJI_AC_ACT_CMT_BY_RSRC_V, status:VALID, product: PJI - Project Intelligence(Obsolete) , description: This view displays actual costs, revenue, and commitments for PA and GL periods by task and resources. The view is used by external project management systems that import financial data from Oracle Projects. , implementation_dba_data: APPS.PJI_AC_ACT_CMT_BY_RSRC_V ,
-
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: PJI_AC_ACT_CMT_BY_RSRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_AC_ACT_CMT_BY_RSRC_V, object_name:PJI_AC_ACT_CMT_BY_RSRC_V, status:VALID, product: PJI - Project Intelligence , description: This view displays actual costs, revenue, and commitments for PA and GL periods by task and resources. The view is used by external project management systems that import financial data from Oracle Projects. , implementation_dba_data: APPS.PJI_AC_ACT_CMT_BY_RSRC_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: 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 ,
-
TABLE: WSH.WSH_FREIGHT_COSTS_INTERFACE
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_FREIGHT_COSTS_INTERFACE, object_name:WSH_FREIGHT_COSTS_INTERFACE, status:VALID,
-
View: PJI_PRD_ACT_CMT_BY_RSRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_PRD_ACT_CMT_BY_RSRC_V, object_name:PJI_PRD_ACT_CMT_BY_RSRC_V, status:VALID, product: PJI - Project Intelligence , description: PJI_PRD_PLN_BY_RSRC_V is a view that displays budget cost and revenue totals for PA, and GL periods by task, and resources. The view is mainly used by external project management systems that import actuals from Oracle Projects , implementation_dba_data: APPS.PJI_PRD_ACT_CMT_BY_RSRC_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_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: PJI_AC_ACT_CMT_BY_TASK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_AC_ACT_CMT_BY_TASK_V, object_name:PJI_AC_ACT_CMT_BY_TASK_V, status:VALID, product: PJI - Project Intelligence(Obsolete) , description: This view displays actual costs, revenue, and commitments for PA and GL periods by task. The view is used by external project management systems that import financial data from Oracle Projects. , implementation_dba_data: APPS.PJI_AC_ACT_CMT_BY_TASK_V ,