Hi Team - Good Afternoon! Is there a way or subject area to get the project beginning balances and ending balances for a given month ? Thanks in advance.
Not sure with OTBI.
Might be possible with BIP DM Query.
SELECT hp.project_number, hp.name AS project_name, pt.task_number, pt.name AS task_name, -- Beginning balance: before start date SUM(CASE WHEN pei.expenditure_item_date < TO_DATE(:p_start_date, 'YYYY-MM-DD') THEN pei.raw_cost_amount ELSE 0 END) AS beginning_balance,
-- Ending balance: up to end date SUM(CASE WHEN pei.expenditure_item_date <= TO_DATE(:p_end_date, 'YYYY-MM-DD') THEN pei.raw_cost_amount ELSE 0 END) AS ending_balance
FROM pjc_expenditure_items_all pei JOIN pjc_projects_all_b hp ON pei.project_id = hp.project_id JOIN pjc_tasks pt ON pei.project_id = pt.project_id AND pei.task_id = pt.task_id WHERE pei.expenditure_item_date <= TO_DATE(:p_end_date, 'YYYY-MM-DD') AND pei.project_status_code = 'APPROVED' -- optional filter AND pei.raw_cost_amount IS NOT NULL -- safety filter GROUP BY hp.project_number, hp.name, pt.task_number, pt.name ORDER BY hp.project_number, pt.task_number;
Two parameters:
:p_start_date
:p_end_date
Hi, I'm new to OTBI & FDI and need your help. Is it possible to do a report to identify missing default expense account in FDI or OTBI? Thanks for your help.
We made some changes in the Fusion UI, and those changes were reflected correctly in OTBI but not in FDI. To refresh the data in FDI, the Oracle support team advised me to reload the relevant functional area (Absence Management). I navigated to Application Administration → Human Capital Management, selected Absence…
Hi Team We are using SCM- Maintenance subject areas for reporting . We enabled the Asset related DFFs (CSE_ASSETS_B) under Data Configuration successfully but the Asset DFFs are not reflecting under Descriptive Flexfield Folder . We do not see any Asset folder even under the Descriptive Flexfield folder . Please advise if…
Data are synchronized with Oracle HCM and I can see PN 2470, which was terminated in the past. If I add any assignment information I find no records, why?
In an analysis/report, when the Bottom Up Manager details are selected from the hierarchy, the Top Position Person record drops out. This is due to the fact that this top level position does not have a record in the Fusion table : PER_MANAGER_HRCHY_CF which is the source to load OAX$OAC.DW_MANAGER_CF_DH . The requirement…