Sunday 11 November 2018

Oracle Fusion SQL Query to Fetch Employees with Assigned Business Unit Information's

Oracle Fusion SQL Query to Fetch Employees with Assigned Business Unit Information's

In this Post , I am sharing the Oracle Cloud SQL query to Fetch the Employees with Assigned Business Unit Information's. You can refer this sql to Extract Active Employees with Assigned Business Unit Information.

Oracle Cloud  SQL Query to Fetch Employees.


SELECT papf.person_number,

hauft.NAME BusinessUnit

FROM HR_ORG_UNIT_CLASSIFICATIONS_F houcf,

HR_ALL_ORGANIZATION_UNITS_F haouf,

HR_ORGANIZATION_UNITS_F_TL hauft,

per_all_assignments_m paam,
per_all_people_f papf
 
WHERE haouf.ORGANIZATION_ID = houcf.ORGANIZATION_ID


AND haouf.ORGANIZATION_ID = hauft.ORGANIZATION_ID

AND haouf.EFFECTIVE_START_DATE BETWEEN houcf.EFFECTIVE_START_DATE AND houcf.EFFECTIVE_END_DATE

AND hauft.LANGUAGE = 'US'

AND hauft.EFFECTIVE_START_DATE = haouf.EFFECTIVE_START_DATE

AND hauft.EFFECTIVE_END_DATE = haouf.EFFECTIVE_END_DATE

AND SYSDATE BETWEEN hauft.effective_start_date AND hauft.effective_end_date

AND hauft.organization_id = paam.business_unit_id

and paam.person_id = papf.person_id

and paam.assignment_type = 'E'

and paam.effective_latest_change = 'Y'

and sysdate between paam.effective_start_date and paam.effective_end_date

and sysdate between papf.effective_start_date and papf.effective_end_date

and papf.person_number = nvl(:personnumber,papf.person_number)

 

0 comments:

Post a Comment

Contact us for any Collaboration, Project Support & On Job Support Work

Name

Email *

Message *