DBA Data[Home] [Help]

APPS.HR_EMPLOYEE_API dependencies on PER_PER_BUS

Line 526: per_per_bus.chk_person_type

522: -- corresponds to type 'EMP', is currently active and is in the correct
523: -- business group, otherwise set person type to the active default for EMP
524: -- in the current business group.
525: --
526: per_per_bus.chk_person_type
527: (p_person_type_id => l_person_type_id
528: ,p_business_group_id => p_business_group_id
529: ,p_expected_sys_type => 'EMP'
530: );

Line 2988: per_per_bus.chk_person_type

2984: end;
2985: --
2986: -- derive and/or validate the person type
2987: --
2988: per_per_bus.chk_person_type
2989: (p_person_type_id => l_person_type_id,
2990: p_business_group_id => l_business_group_id,
2991: p_expected_sys_type => 'EMP');
2992: --

Line 3505: per_per_bus.chk_person_type

3501: --
3502: -- PTU : Following Code has been added
3503: -- Validate that the person_type_id passed is a flavour of 'APL' or derive the default
3504: --
3505: per_per_bus.chk_person_type
3506: (p_person_type_id => l_person_type_id,
3507: p_business_group_id => l_business_group_id,
3508: p_expected_sys_type => 'APL');
3509: --

Line 4122: per_per_bus.chk_person_type

4118: if g_debug then
4119: hr_utility.set_location(l_proc,110);
4120: end if;
4121: l_system_person_type := 'EMP';
4122: per_per_bus.chk_person_type
4123: (p_person_type_id => l_person_type_id
4124: ,p_business_group_id => l_per_details_rec.business_group_id
4125: ,p_expected_sys_type => l_system_person_type
4126: );