Search Results pji_source_flag
Overview
APPS.PJI_ACCUM_WBS_ACT_V is a union view in the Oracle EBS Projects (PA) schema that consolidates accumulated actual cost and revenue figures at the WBS/task level. It exposes ITD (inception-to-date) raw cost, burdened cost, and revenue for project tasks, and its defining characteristic is the use of the pji_source_flag column from PA_PROJECTS_ALL as a partitioning predicate between two data sources. The view is part of Oracle Project Portfolio Management's integration with external or legacy costing sources and is used in reporting and integration flows where accumulated amounts may originate either from the standard PA subsystem or from a staging table populated by an external feed.
For the searched term pji_source_flag, the defining role is explicit: it filters which branch of the UNION ALL returns data for a given project. When pji_source_flag IS NULL, the view draws from PA_ACCUM_WBS_ACT_V; when pji_source_flag = 'Y', it draws from PJI_FM_XBS_ACCUM_TMP1. This makes the flag a source-selection switch at the project level.
Underlying Base Objects
The documented base objects of this view are PA_ACCUM_WBS_ACT_V (a view), PA_PROJECTS_ALL (referenced as a synonym), PJI_FM_XBS_ACCUM_TMP1 (a synonym to a staging table), and the HR packages HR_GENERAL, HR_PERSON_NAME, and HR_SECURITY. The two branches are:
PA_ACCUM_WBS_ACT_V ACT, PA_PROJECTS_ALL PRJjoined onACT.PROJECT_ID = PRJ.PROJECT_ID, restricted byPJI_SOURCE_FLAG IS NULL. This branch supplies the standard Project Costing accumulated cost/revenue results.PJI_FM_XBS_ACCUM_TMP1 TMP, PA_PROJECTS_ALL PRJjoined onTMP.PROJECT_ID = PRJ.PROJECT_ID, restricted byPJI_SOURCE_FLAG = 'Y'. This branch substitutes the staging table's pre-computed raw cost, burdened cost, and revenue.
Because both branches are UNION ALL'd, a project contributes rows from exactly one source at any time, depending on its PA_PROJECTS_ALL.PJI_SOURCE_FLAG value. The HR packages listed in the metadata are dependencies of the underlying project security model rather than of the union logic itself.
Key Columns
PROJECT_ID— Project identifier, carried through from both branches and joined to PA_PROJECTS_ALL.TASK_ID— The WBS task identifier. In the first branch this isACT.TASK_ID; in the second it isTMP.PROJECT_ELEMENT_ID, so callers must expect the same semantic role from two differently named sources.RAW_COST— Inception-to-date raw (unburdened) cost; sourced fromRAW_COST_ITDorPOU_RAW_COST.BURDENED_COST— ITD burdened cost, including burden/overhead; fromBURDENED_COST_ITDorPOU_BRDN_COST.REVENUE— ITD revenue; fromREVENUE_ITDorPOU_REVENUE.
Note that PJI_SOURCE_FLAG itself is not projected as a column; it is used only as a filter predicate inside each branch.
Common Use Cases and Queries
Typical use is accumulated WBS-level cost and revenue reporting in a form that transparently reflects the external staging feed. A standard retrieval pattern is to select all columns, optionally joining to PA_PROJECTS_ALL for project attributes:
- Reporting accumulated raw, burdened cost, and revenue by project and task.
- Integration verification — comparing staging-table amounts against PA accumulated amounts for projects flagged with
PJI_SOURCE_FLAG = 'Y'. - Diagnostics where totals differ from PA_ACCUM_WBS_ACT_V because a project is sourced from the staging table.
A representative query:
SELECT v.project_id, v.task_id, v.raw_cost, v.burdened_cost, v.revenue FROM apps.pji_accum_wbs_act_v v WHERE v.project_id = :project_id ORDER BY v.task_id;- To identify staging-sourced projects:
SELECT project_id, pji_source_flag FROM apps.pa_projects_all WHERE pji_source_flag = 'Y';
Equivalent variants can aggregate totals, for example summing burdened_cost by project_id. The view is owned by APPS and should be referenced through the APPS synonym; it is read-only and derives entirely from its underlying sources.
-
VIEW: APPS.PJI_ACCUM_WBS_ACT_V
12.1.1
-
VIEW: APPS.PJI_ACCUM_RL_ACT_V
12.2.2
-
View: PJI_ACCUM_WBS_ACT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_ACCUM_WBS_ACT_V, object_name:PJI_ACCUM_WBS_ACT_V, status:VALID, product: PJI - Project Intelligence , implementation_dba_data: APPS.PJI_ACCUM_WBS_ACT_V ,
-
View: PJI_ACCUM_WBS_ACT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_ACCUM_WBS_ACT_V, object_name:PJI_ACCUM_WBS_ACT_V, status:VALID, product: PJI - Project Intelligence(Obsolete) , implementation_dba_data: APPS.PJI_ACCUM_WBS_ACT_V ,
-
VIEW: APPS.PJI_ACCUM_WBS_ACT_V
12.2.2
-
VIEW: APPS.PJI_ACCUM_RL_ACT_V
12.1.1
-
View: PJI_ACCUM_RL_ACT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_ACCUM_RL_ACT_V, object_name:PJI_ACCUM_RL_ACT_V, status:VALID, product: PJI - Project Intelligence , implementation_dba_data: APPS.PJI_ACCUM_RL_ACT_V ,
-
View: PJI_ACCUM_RL_ACT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_ACCUM_RL_ACT_V, object_name:PJI_ACCUM_RL_ACT_V, status:VALID, product: PJI - Project Intelligence(Obsolete) , implementation_dba_data: APPS.PJI_ACCUM_RL_ACT_V ,
-
VIEW: PA.PA_PROJECTS_ALL#
12.2.2
-
View: PA_PROJECTS
12.2.2
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECTS
12.1.1
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
APPS.PJI_EXTRACTION_UTIL SQL Statements
12.2.2
-
APPS.PA_PURGE_VALIDATE_PJRM SQL Statements
12.1.1
-
APPS.PA_PURGE_VALIDATE_PJRM SQL Statements
12.2.2
-
VIEW: PA.PA_PROJECTS_ALL#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_PROJECTS_ALL#, status:VALID,
-
TABLE: PA.PA_PROJECTS_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECTS_ALL, object_name:PA_PROJECTS_ALL, status:VALID,
-
PACKAGE BODY: APPS.PJI_EXTRACTION_UTIL
12.2.2
-
TABLE: PA.PA_PROJECTS_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECTS_ALL, object_name:PA_PROJECTS_ALL, status:VALID,
-
PACKAGE BODY: APPS.PA_PURGE_VALIDATE_PJRM
12.2.2
-
PACKAGE BODY: APPS.PA_PURGE_VALIDATE_PJRM
12.1.1
-
APPS.PJI_EXTRACTION_UTIL dependencies on FND_GLOBAL
12.2.2
-
APPS.PJI_PJP_SUM_ROLLUP dependencies on PJI_FP_AGGR_PJP0
12.1.1
-
APPS.PJI_PJP_SUM_ROLLUP dependencies on PA_PROJECTS_ALL
12.1.1
-
APPS.PA_PURGE_VALIDATE_PJRM dependencies on PA_PROJECTS_ALL
12.1.1
-
APPS.PJI_EXTRACTION_UTIL dependencies on PA_PROJECTS_ALL
12.2.2
-
APPS.PJI_PJP_SUM_ROLLUP dependencies on FND_GLOBAL
12.2.2
-
APPS.PA_PURGE_VALIDATE_PJRM dependencies on PA_PROJECTS_ALL
12.2.2
-
APPS.PJI_PJP_SUM_ROLLUP dependencies on PJI_FP_AGGR_PJP0
12.2.2
-
APPS.PA_PURGE_VALIDATE_PJRM dependencies on PA_PROJECTS
12.1.1
-
APPS.PJI_PJP_SUM_ROLLUP dependencies on PA_PROJECTS_ALL
12.2.2
-
APPS.PJI_PJP_SUM_ROLLUP dependencies on FND_GLOBAL
12.1.1
-
APPS.PA_PURGE_VALIDATE_PJRM dependencies on PA_PROJECTS
12.2.2
-
APPS.PA_PURGE_VALIDATE_PJRM dependencies on DUAL
12.1.1
-
APPS.PA_PURGE_VALIDATE_PJRM dependencies on DUAL
12.2.2
-
APPS.PJI_PJP_SUM_ROLLUP SQL Statements
12.1.1
-
APPS.PJI_PJP_SUM_ROLLUP SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PJI_PJP_SUM_ROLLUP
12.1.1
-
PACKAGE BODY: APPS.PJI_PJP_SUM_ROLLUP
12.2.2
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2