DBA Data[Home] [Help]

APPS.HR_CCMGR_SS dependencies on PER_ALL_PEOPLE_F

Line 14: From per_all_people_f s, per_all_assignments_f paf

10:
11: -- Cursors
12: cursor c_supDetails (p_id Number) IS
13: Select s.full_name, s.person_id
14: From per_all_people_f s, per_all_assignments_f paf
15: Where paf.person_id = p_id
16: and paf.supervisor_id = s.person_id
17: and paf.primary_flag = 'Y'
18: and s.current_employee_flag = 'Y'

Line 30: + decode(decode(HR_SECURITY.VIEW_ALL ,'Y' , 'TRUE', HR_SECURITY.SHOW_RECORD('PER_ALL_PEOPLE_F', PAP.PERSON_ID, PAP.PERSON_TYPE_ID, PAP.EMPLOYEE_NUMBER,PAP.APPLICANT_NUMBER)

26: fnd_date.canonical_to_date(cm.ORG_INFORMATION3) start_Date,
27: fnd_date.canonical_to_date(cm.ORG_INFORMATION4) end_Date,
28: decode((decode(decode(HR_SECURITY.VIEW_ALL ,'Y' , 'TRUE', HR_SECURITY.SHOW_RECORD('HR_ALL_ORGANIZATION_UNITS', HAO.ORGANIZATION_ID)
29: ),'TRUE',0,1)+ decode(decode(hr_general.get_xbg_profile,'Y', hao.business_group_id , hr_general.get_business_group_id),hao.business_group_id,0,1)
30: + decode(decode(HR_SECURITY.VIEW_ALL ,'Y' , 'TRUE', HR_SECURITY.SHOW_RECORD('PER_ALL_PEOPLE_F', PAP.PERSON_ID, PAP.PERSON_TYPE_ID, PAP.EMPLOYEE_NUMBER,PAP.APPLICANT_NUMBER)
31: ),'TRUE',0,1) + decode(decode(hr_general.get_xbg_profile,'Y',pap.business_group_id , hr_general.get_business_group_id),pap.business_group_id,0,1)),0,'Y','N') hasUpdateAccess
32: from hr_organization_information cm,per_all_people_f pap
33: ,hr_all_organization_units hao ,hr_all_organization_units_tl haotl
34: where cm.org_information_context = 'Organization Name Alias'

Line 32: from hr_organization_information cm,per_all_people_f pap

28: decode((decode(decode(HR_SECURITY.VIEW_ALL ,'Y' , 'TRUE', HR_SECURITY.SHOW_RECORD('HR_ALL_ORGANIZATION_UNITS', HAO.ORGANIZATION_ID)
29: ),'TRUE',0,1)+ decode(decode(hr_general.get_xbg_profile,'Y', hao.business_group_id , hr_general.get_business_group_id),hao.business_group_id,0,1)
30: + decode(decode(HR_SECURITY.VIEW_ALL ,'Y' , 'TRUE', HR_SECURITY.SHOW_RECORD('PER_ALL_PEOPLE_F', PAP.PERSON_ID, PAP.PERSON_TYPE_ID, PAP.EMPLOYEE_NUMBER,PAP.APPLICANT_NUMBER)
31: ),'TRUE',0,1) + decode(decode(hr_general.get_xbg_profile,'Y',pap.business_group_id , hr_general.get_business_group_id),pap.business_group_id,0,1)),0,'Y','N') hasUpdateAccess
32: from hr_organization_information cm,per_all_people_f pap
33: ,hr_all_organization_units hao ,hr_all_organization_units_tl haotl
34: where cm.org_information_context = 'Organization Name Alias'
35: and cm.ORG_INFORMATION2 = p_id
36: and cm.ORG_INFORMATION2 = to_char(pap.person_id)

Line 440: From per_all_people_f

436: if (p_ccmgr_tbl(I).manager is not Null and p_ccmgr_tbl(I).manager_id is Null) Then
437: Begin
438: hr_utility.set_location(l_proc ,35);
439: Select person_id into p_ccmgr_tbl(I).manager_id
440: From per_all_people_f
441: where full_name = p_ccmgr_tbl(I).manager
442: and current_employee_flag = 'Y'
443: and trunc(sysdate) between effective_start_date and effective_end_date;
444: