DBA Data[Home] [Help]

APPS.PA_UTILS3 dependencies on HR_ORGANIZATION_UNITS

Line 219: Hr_Organization_Units O

215: --FP M To reduce dependency on HR, changing the per_people_x to per_all_people_f
216: --and added the date check
217: --Per_People_X P,
218: Per_All_People_F P,
219: Hr_Organization_Units O
220: Where
221: P.Person_Id = P_Inc_By_Per_Id
222: and O.Organization_Id = P.Business_Group_Id
223: and trunc(P_exp_date) between trunc(p.effective_start_date) and trunc(p.effective_end_date);

Line 423: l_Business_Group_Name Hr_Organization_Units.Name%TYPE;

419:
420: Function GetEmpNum (P_Person_Id IN NUMBER,P_ei_date IN DATE DEFAULT sysdate ) RETURN per_people_f.employee_number%TYPE --bug 9853319
421: Is
422: l_emp_Number Per_People_F.employee_number%TYPE;
423: l_Business_Group_Name Hr_Organization_Units.Name%TYPE;
424: Begin
425:
426: If P_Person_Id > 0 THEN
427: GetCachedEmpInfo (P_Inc_By_Per_Id => P_Person_id,

Line 600: Hr_Organization_Units O

596: Into
597: l_emp_Number
598: From
599: Per_All_People_F P,
600: Hr_Organization_Units O
601: Where
602: P.Person_Id = P_Person_Id
603: and O.Organization_Id = P.Business_Group_Id
604: and trunc(P_ei_date) > = trunc(p.effective_start_date)