DBA Data[Home] [Help]

VIEW: APPS.IGW_REPORT_BUDGET_V

Source

View Text - Preformatted

SELECT distinct proposal_budget_category_code , proposal_budget_category , round(igw_report_processing.get_period_total(proposal_budget_category_code, 1)) period1_total , round(igw_report_processing.get_period_total(proposal_budget_category_code, 2)) period2_total , round(igw_report_processing.get_period_total(proposal_budget_category_code, 3)) period3_total , round(igw_report_processing.get_period_total(proposal_budget_category_code, 4)) period4_total , round(igw_report_processing.get_period_total(proposal_budget_category_code, 5)) period5_total from igw_report_budget where proposal_form_number = 'PHS 398' and budget_period_id = (select min(budget_period_id) from igw_report_budget)
View Text - HTML Formatted

SELECT DISTINCT PROPOSAL_BUDGET_CATEGORY_CODE
, PROPOSAL_BUDGET_CATEGORY
, ROUND(IGW_REPORT_PROCESSING.GET_PERIOD_TOTAL(PROPOSAL_BUDGET_CATEGORY_CODE
, 1)) PERIOD1_TOTAL
, ROUND(IGW_REPORT_PROCESSING.GET_PERIOD_TOTAL(PROPOSAL_BUDGET_CATEGORY_CODE
, 2)) PERIOD2_TOTAL
, ROUND(IGW_REPORT_PROCESSING.GET_PERIOD_TOTAL(PROPOSAL_BUDGET_CATEGORY_CODE
, 3)) PERIOD3_TOTAL
, ROUND(IGW_REPORT_PROCESSING.GET_PERIOD_TOTAL(PROPOSAL_BUDGET_CATEGORY_CODE
, 4)) PERIOD4_TOTAL
, ROUND(IGW_REPORT_PROCESSING.GET_PERIOD_TOTAL(PROPOSAL_BUDGET_CATEGORY_CODE
, 5)) PERIOD5_TOTAL
FROM IGW_REPORT_BUDGET
WHERE PROPOSAL_FORM_NUMBER = 'PHS 398'
AND BUDGET_PERIOD_ID = (SELECT MIN(BUDGET_PERIOD_ID)
FROM IGW_REPORT_BUDGET)