DBA Data[Home] [Help]

APPS.PER_PEOPLE4_PKG dependencies on PER_PEOPLE3_PKG

Line 295: per_people3_pkg.check_future_apl(p_person_id => p_person_id

291: end if;
292: --
293: -- Ensure there are no future applicant assignments
294: --
295: per_people3_pkg.check_future_apl(p_person_id => p_person_id
296: ,p_hire_date => greatest(p_hire_date
297: ,p_effective_start_date));
298: --
299: -- Insert the default applicant row and applicant

Line 345: per_people3_pkg.check_future_apl(p_person_id => p_person_id

341: ,p_effective_start_date);
342: --
343: -- Ensure there are no future applicant assignments
344: --
345: per_people3_pkg.check_future_apl(p_person_id => p_person_id
346: ,p_hire_date => greatest(p_hire_date
347: ,p_effective_start_date));
348: --
349: -- Insert the default period_of service and assignment

Line 392: per_people3_pkg.check_future_apl(p_person_id => p_person_id

388: end if;
389: --
390: -- Ensure there are no future applicant assignments
391: --
392: per_people3_pkg.check_future_apl(p_person_id => p_person_id
393: ,p_hire_date => greatest(p_hire_date
394: ,p_effective_start_date));
395: --
396: -- Check if the person have open term_assignment records. These can be

Line 414: per_people3_pkg.vacancy_chk(p_person_id => p_person_id

410: -- displaying relevant message.
411: -- on return l_vacancy_id starts the cursor at the
412: -- relevant point.
413: --
414: per_people3_pkg.vacancy_chk(p_person_id => p_person_id
415: ,p_fire_warning => l_fire_warning
416: ,p_vacancy_id => p_vacancy_id);
417: if l_fire_warning = 'Y' then
418: return;

Line 427: if (per_people3_pkg.chk_events_exist(p_person_id =>p_person_id

423: end if; -- End of VACANCY_CHECK
424: --
425: if p_status = 'BOOKINGS_EXIST' then
426: -- VT 09/18/96 #288087, #380280, #2172590
427: if (per_people3_pkg.chk_events_exist(p_person_id =>p_person_id
428: ,p_business_group_id =>p_business_group_id
429: ,p_hire_date => greatest(p_hire_date,p_session_date))) then
430: return;
431: else

Line 446: per_people3_pkg.get_accepted_appls(p_person_id => p_person_id

442: if p_status='GET_APPLS' then
443: --
444: -- Get all the accepted applicants
445: --
446: per_people3_pkg.get_accepted_appls(p_person_id => p_person_id
447: ,p_num_accepted_appls => l_num_accepted_appls
448: ,p_new_primary_id =>p_new_primary_id);
449: --
450: -- Get all current applicant assignments.

Line 452: per_people3_pkg.get_all_current_appls(p_person_id => p_person_id

448: ,p_new_primary_id =>p_new_primary_id);
449: --
450: -- Get all current applicant assignments.
451: --
452: per_people3_pkg.get_all_current_appls(p_person_id => p_person_id
453: ,p_num_appls => l_num_appls);
454: --
455: if p_system_person_type = 'EMP_APL' then
456: --

Line 684: per_people3_pkg.run_alu_ee(p_alu_mode => 'CHANGE_PQC'

680: -- Run the assignment_link_usages and Element_entry
681: -- code for Change of Personal qualifying conditions.
682: --
683: --
684: per_people3_pkg.run_alu_ee(p_alu_mode => 'CHANGE_PQC'
685: ,p_business_group_id=>p_business_group_id
686: ,p_person_id =>p_person_id
687: ,p_old_start =>p_s_hire_date
688: ,p_start_date => p_last_update_date

Line 703: per_people3_pkg.update_period(p_person_id =>p_person_id

699: --
700: -- Update the period of service for the employee
701: --
702: --
703: per_people3_pkg.update_period(p_person_id =>p_person_id
704: ,p_hire_date => p_s_hire_date
705: ,p_new_hire_date =>p_hire_date);
706: --
707: hr_utility.set_location('update_row - after update',3);

Line 756: per_people3_pkg.run_alu_ee(p_alu_mode => 'ASG_CRITERIA'

752: --
753: -- Run the assignment_link_usages and Element_entry
754: -- code for Assignment Criteria.
755: --
756: per_people3_pkg.run_alu_ee(p_alu_mode => 'ASG_CRITERIA'
757: ,p_business_group_id=>p_business_group_id
758: ,p_person_id =>p_person_id
759: ,p_old_start =>p_s_hire_date
760: ,p_start_date => p_hire_date);