DBA Data[Home] [Help]

APPS.HR_PROCESS_PERSON_SS dependencies on HR_APPLICANT_API

Line 2017: -- In case of hiring an applicant, we need to call the hr_applicant_api to

2013: END IF;
2014:
2015: --
2016:
2017: -- In case of hiring an applicant, we need to call the hr_applicant_api to
2018: -- make the applicant an employee and then update the BD record and made
2019: -- this call before is_basic_details_changed, so that the person_type_id
2020: -- is always changed and we write to transaction tables
2021:

Line 2029: --call the hr_applicant_api.hire_applicant in commit mode

2025: close gc_get_current_applicant_flag;
2026:
2027: l_per_object_version_number := l_ovn;
2028:
2029: --call the hr_applicant_api.hire_applicant in commit mode
2030: -- and get the person type and store it in transaction tables
2031:
2032: if (l_current_applicant_flag = 'Y' AND
2033: nvl(l_current_employee_flag, 'N') <> 'Y' AND

Line 2084: hr_applicant_api.hire_applicant(

2080: END IF;
2081:
2082:
2083:
2084: hr_applicant_api.hire_applicant(
2085: p_validate => false
2086: ,p_hire_date => p_effective_date
2087: ,p_person_id => p_person_id
2088: ,p_per_object_version_number => l_per_object_version_number

Line 5779: -- In case of hiring an applicant, we need to call the hr_applicant_api to

5775:
5776: IF l_person_id IS NOT NULL
5777: THEN
5778:
5779: -- In case of hiring an applicant, we need to call the hr_applicant_api to
5780: -- make the applicant an employee and then update the BD record
5781:
5782: hr_utility.set_location('Opening & Fetching gc_get_current_applicant_flag:'||l_proc,25);
5783: open gc_get_current_applicant_flag(l_person_id, l_effective_date);

Line 5827: --call the hr_applicant_api.hire_applicant in validate mode

5823: g_asg_object_version_number := l_aovn;
5824:
5825: end if;
5826: --code for rehire api ends
5827: --call the hr_applicant_api.hire_applicant in validate mode
5828: if (l_current_applicant_flag = 'Y'
5829: AND nvl(l_current_employee_flag, 'N') <> 'Y'
5830: AND nvl(l_current_npw_flag,'N') <> 'Y') then
5831:

Line 5907: hr_applicant_api.hire_applicant(

5903: END IF;
5904:
5905:
5906:
5907: hr_applicant_api.hire_applicant(
5908: p_validate => p_validate
5909: ,p_hire_date => l_effective_date
5910: ,p_person_id => l_person_id
5911: ,p_per_object_version_number => l_ovn