DBA Data[Home] [Help]

APPS.PER_APPLICANT_PKG dependencies on HR_PERSON

Line 427: hr_person.generate_number( p_current_employee => 'N',

423: hr_utility.set_location('Entering: '|| g_package || l_proc, 1);
424: END IF;
425:
426: if ( p_method_of_apl_num_gen = 'A' and p_applicant_number is null) then
427: hr_person.generate_number( p_current_employee => 'N',
428: p_current_applicant => 'Y',
429: p_current_npw => 'N',
430: p_business_group_id => p_business_group_id,
431: p_person_id => null,

Line 446: hr_person.validate_unique_number ( p_person_id => NULL,

442: hr_utility.set_location(g_package || l_proc, 10);
443: END IF;
444:
445: -- Check that the number is unique
446: hr_person.validate_unique_number ( p_person_id => NULL,
447: p_business_group_id => p_business_group_id,
448: p_employee_number => NULL,
449: p_applicant_number => p_applicant_number,
450: p_npw_number => NULL,

Line 773: ,p_person_type_id => hr_person_type_usage_info.get_default_person_type_id

769: if p_person_type_id is null then
770: hr_per_type_usage_internal.maintain_person_type_usage
771: ( p_effective_date => p_effective_start_date
772: ,p_person_id => p_person_id
773: ,p_person_type_id => hr_person_type_usage_info.get_default_person_type_id
774: ( p_Business_Group_Id
775: ,'APL')
776: );
777: else

Line 1341: -- proc as a new API procedure hr_person_api.delete_person

1337:
1338: end lock_row ;
1339: --
1340: -- Fix for 3908271 starts here. Comment out the delete
1341: -- proc as a new API procedure hr_person_api.delete_person
1342: -- is avilable for deleting a person.
1343: --
1344: /*
1345: procedure delete_row ( p_person_id in number,

Line 1352: hr_person.applicant_default_deletes( p_person_id => p_person_id,

1348: --
1349: check_delete_allowed ( p_person_id => p_person_id,
1350: p_session_date => p_session_date ) ;
1351: --
1352: hr_person.applicant_default_deletes( p_person_id => p_person_id,
1353: p_form_call => TRUE);
1354: --
1355: end delete_row ;
1356: */

Line 2288: -- Now the form is using API proc hr_person_api.delete_person which

2284: close c2 ;
2285: --
2286: -- Fix for 3908271 starts here.
2287: -- The Applicant Quick entry form is using this validation proc.
2288: -- Now the form is using API proc hr_person_api.delete_person which
2289: -- includes the strong predel validations. So comment out here.
2290: --
2291: /*
2292: -- Standard strong delete check

Line 2293: hr_person.strong_predel_validation ( p_person_id => p_person_id,

2289: -- includes the strong predel validations. So comment out here.
2290: --
2291: /*
2292: -- Standard strong delete check
2293: hr_person.strong_predel_validation ( p_person_id => p_person_id,
2294: p_session_date => p_session_date ) ;
2295: */
2296: --
2297: -- Fix for 3908271 ends here.