Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 16 Oracle Analytics Lounge
- 216 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 79 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Not getting the Manager Person Number

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.
Best Answer
-
Hi Faizan,
Please check the sample query on below url and let me know if you face any issues:
Thanks.
1
Answers
-
Hi Faizan,
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?
Thanks.
1 -
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 ppnfWHERE 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_date1