Get Started with Redwood for Oracle Cloud HCM Begin Now
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
Getting extra employees in BI report those are not direct or indirect reports of logged in manager
Summary:
Created BIP report to get direct indirect reports of manager however we are getting few extra employee those are not direct or indirect of logged in user (line manager) ..see below query. If anyone can help to resolve this issue by tweak in below code
Content (required):
SELECT distinct
(
SELECT person_number
FROM fusion.per_all_people_f
WHERE person_id = a.person_id
AND TRUNC(sysdate) BETWEEN effective_Start_date AND effective_end_Date
)
Person_number
FROM fusion.per_manager_hrchy_dn a
WHERE TRUNC(sysdate) BETWEEN a.effective_Start_date AND a.effective_end_Date
start with (manager_id in (select person_id
0