Search Results additional_funding_count




Overview

PJI_AC_XBS_ACCUM_F_V is an APPS-owned database view within the Oracle E-Business Suite environment, historically associated with the Project Intelligence (PJI) product family. Project Intelligence was a business intelligence and analytics layer that sat over Oracle Projects and Oracle Financials, supplying pre-aggregated activity and financial measures for dashboards, ad hoc reporting, and analytic extracts. In EBS 12.1.1 and 12.2.2, the PJI product is documented as obsolete, meaning the seeded analytics functionality has been superseded by Oracle Business Intelligence Applications and related products; however, the underlying objects frequently remain present and valid in upgraded or legacy instances.

The view presents Project Intelligence numbers for activity data at the project level. It exposes a single denormalized row per combination of project, project organization, project element (WBS or task), time identifier, and currency, with numerous pre-computed amount and count measures. The presence of the UNBILLED_RECEIVABLES column is directly relevant to users searching for unbilled receivables reporting, since this view materializes that figure alongside related revenue, billing, funding, backlog, and cash measures.

Underlying Base Objects

Per the documented 12.2.2 metadata, the view is defined over a single referenced base object: PJI_AC_XBS_ACCUM_F, accessed through a synonym. PJI_AC_XBS_ACCUM_F is the Project Intelligence accumulation fact table that stores activity-level accumulations at the WBS (project element) rollup grain. The view is a thin projection with an explicit column list rather than a multi-table join; it does not add filtering or aggregation logic. Its principal structural transformation is the truncation of the CUSTOM1 through CUSTOM15 descriptive attribute set and the substitution of CAST(NULL AS NUMBER) for CUSTOM16 through CUSTOM30, which standardizes the shape of the custom column block for downstream consumers.

Key Columns

Common Use Cases and Queries

The view is typically queried for unbilled receivables analysis, revenue versus billing reconciliation, funding utilization, and backlog reporting. A representative query retrieving unbilled receivables by project and period is:

SELECT project_id, project_element_id, time_id, currency_code, revenue, unbilled_receivables FROM apps.pji_ac_xbs_accum_f_v WHERE unbilled_receivables <> 0 AND wbs_rollup_flag = 'Y' ORDER BY project_id, time_id;

Because the view carries no WHERE clause, users must supply their own filters, ordinarily restricting WBS_ROLLUP_FLAG or PRG_ROLLUP_FLAG to a single value to avoid mixing rollup levels, and constraining TIME_ID or CALENDAR_TYPE to the periods of interest. Given the obsolete status of the PJI product, organizations should confirm object validity in their environment and treat this view as a legacy data source for archival or migration reporting.