DBA Data[Home] [Help]

VIEW: APPS.PA_RES_GRP_FC_RESULTS_V

Source

View Text - Preformatted

SELECT project_id , budget_version_id, decode(parent_member_id ,null ,resource_list_member_id,0, resource_list_member_id,parent_member_id), start_date, end_date, sum(budget), sum(actuals), sum(encumbrances) from pa_project_bal_v group by budget_version_id, project_id, decode(parent_member_id ,null ,resource_list_member_id,0, resource_list_member_id,parent_member_id), start_date, end_date
View Text - HTML Formatted

SELECT PROJECT_ID
, BUDGET_VERSION_ID
, DECODE(PARENT_MEMBER_ID
, NULL
, RESOURCE_LIST_MEMBER_ID
, 0
, RESOURCE_LIST_MEMBER_ID
, PARENT_MEMBER_ID)
, START_DATE
, END_DATE
, SUM(BUDGET)
, SUM(ACTUALS)
, SUM(ENCUMBRANCES)
FROM PA_PROJECT_BAL_V GROUP BY BUDGET_VERSION_ID
, PROJECT_ID
, DECODE(PARENT_MEMBER_ID
, NULL
, RESOURCE_LIST_MEMBER_ID
, 0
, RESOURCE_LIST_MEMBER_ID
, PARENT_MEMBER_ID)
, START_DATE
, END_DATE