Hello All,
When I am running a BI Report to get the manager person number, but I am not getting the manager person number. Not sure why.
If suggest something, if someone know anything.
Hi Faizan,
Please check the sample query on below url and let me know if you face any issues:
https://fusionhcmconsulting.com/2022/11/bip-query-to-extract-supervisor-details/
Thanks.
Welcome to the Oracle Analytics community.
You have posted this question under an incorrect category. The "Oracle Analytics Videos" category is a gallery to display the Oracle Analytics community videos of demos, keynotes, events, tutorials, trainings and more!
You can check all the available categories under 'Forum' tab:
I believe your question is related to Fusion SaaS HCM - BIP report where you are unable to get the manager person number.
Hi @Gianni Ceresa ,
Hope you are doing well. Can you please help to move this thread under correct forum?
Try this
SELECT papf.person_number, papf_sup.person_number supervisor_no, ppnf.full_name supervisorname FROM per_all_people_f papf, per_all_assignments_m paam, per_assignment_supervisors_f pasf, per_all_people_f papf_sup, per_person_names_f ppnf
WHERE papf.person_id = paam.person_id AND paam.primary_assignment_flag = 'Y' AND paam.assignment_type = 'E' and paam.effective_latest_change = 'Y' AND papf.person_id = pasf.person_id AND pasf.manager_type = 'LINE_MANAGER' AND ppnf.person_id = pasf.manager_id AND papf_sup.person_id = pasf.manager_id AND ppnf.name_type = 'GLOBAL' and papf.person_number = nvl(:personnumber,papf.person_number) AND TRUNC(SYSDATE) BETWEEN pasf.effective_start_date AND pasf.effective_end_date AND TRUNC(SYSDATE) BETWEEN papf_sup.effective_start_date AND papf_sup.effective_end_date AND TRUNC(SYSDATE) BETWEEN ppnf.effective_start_date AND ppnf.effective_end_date AND TRUNC(SYSDATE) BETWEEN paam.effective_start_date AND paam.effective_end_date AND TRUNC(SYSDATE) BETWEEN paam.effective_start_date AND paam.effective_end_date
I created a XLSX template in Oracle Analytics Publisher Desktop 26.01.01 and uploaded the template to a BI Publisher report in OTBI. Things worked initially, but this morning when running the report I received an error: The report cannot be rendered because of an error, please contact the administrator. Error Detail:…
Hi All, I have a question regarding the BI Publisher Outputs. I have configured the rtf template output as Excel but when the XML Report Publisher program completes and I click on View Output, the output opens in a browser and renders as an HTML. Can some one please assist why this is so. The BI Publisher version is…
The issue is related to the NordPass browser extension installed via our corporate policy. Issue observed: Users were unable to upload custom BI Publisher templates in Oracle Fusion (BI Publisher / Oracle Analytics) using Microsoft Edge and Google Chrome. The upload dialog remained indefinitely at "Uploading, please…
Hi, We are scheduling a report to be sent out every week. We were wondering if it was possible to keep the latest date that the report ran as a parameter somewhere so that we could use that to only fetch the values in the report which have a latest update time of after the last run of the report? This way we'd only be…