DBA Data[Home] [Help]

APPS.HR_EMPLOYEE_APPLICANT_API dependencies on HR_EMPLOYEE_APPLICANT_API

Line 1: PACKAGE BODY hr_employee_applicant_api

1: PACKAGE BODY hr_employee_applicant_api
2: /* $Header: peemaapi.pkb 120.32.12020000.8 2013/02/27 12:57:06 karthmoh ship $ */
3: AS
4: --
5: -- Package variables

Line 7: g_package VARCHAR2(33) := 'hr_employee_applicant_api.';

3: AS
4: --
5: -- Package variables
6: --
7: g_package VARCHAR2(33) := 'hr_employee_applicant_api.';
8: --
9: -- #2264569
10: g_retain_apl varchar2(1) := 'R'; -- indicates Retain asg
11: g_convert_apl varchar2(1) := 'C'; -- Convert asg

Line 664: hr_employee_applicant_api.hire_to_employee_applicant

660: --
661: l_per_object_version_number:= p_per_object_version_number;
662: l_employee_number:= p_employee_number;
663: --
664: hr_employee_applicant_api.hire_to_employee_applicant
665: (p_validate => p_validate
666: ,p_hire_date => p_hire_date
667: ,p_person_id => p_person_id
668: ,p_per_object_version_number => l_per_object_version_number

Line 729: hr_employee_applicant_api.hire_to_employee_applicant

725: --
726: l_per_object_version_number:= p_per_object_version_number;
727: l_employee_number:= p_employee_number;
728: --
729: hr_employee_applicant_api.hire_to_employee_applicant
730: (p_validate => p_validate
731: ,p_hire_date => p_hire_date
732: ,p_person_id => p_person_id
733: ,p_per_object_version_number => l_per_object_version_number

Line 782: hr_employee_applicant_api.hire_to_employee_applicant

778: BEGIN
779:
780: hr_utility.set_location('Entering:'||l_proc,10);
781:
782: hr_employee_applicant_api.hire_to_employee_applicant
783: (p_validate => p_validate
784: ,p_hire_date => p_hire_date
785: ,p_person_id => p_person_id
786: ,p_per_object_version_number => p_per_object_version_number

Line 1612: hr_employee_applicant_api.hire_employee_applicant

1608: hr_utility.set_location('Entering:'|| l_proc, 10);
1609: --
1610: l_per_object_version_number:=p_per_object_version_number;
1611: --
1612: hr_employee_applicant_api.hire_employee_applicant
1613: (p_validate => p_validate
1614: ,p_hire_date => p_hire_date
1615: ,p_person_id => p_person_id
1616: ,p_primary_assignment_id => p_assignment_id

Line 1661: hr_employee_applicant_api.hire_employee_applicant

1657: BEGIN
1658:
1659: hr_utility.set_location('Entering:'|| l_proc, 10);
1660:
1661: hr_employee_applicant_api.hire_employee_applicant
1662: (p_validate => p_validate
1663: ,p_hire_date => p_hire_date
1664: ,p_person_id => p_person_id
1665: ,p_primary_assignment_id => p_primary_assignment_id

Line 3772: hr_utility.set_location('HR_EMPLOYEE_APPLICANT_API.HIRE_EMPLOYEE_APPLICANT',377);

3768: end loop;
3769:
3770: if nvl(l_fpt_hire_flag,'N') = 'Y' then
3771:
3772: hr_utility.set_location('HR_EMPLOYEE_APPLICANT_API.HIRE_EMPLOYEE_APPLICANT',377);
3773:
3774: -- loop through the future applications > hire date
3775: for apl in csr_get_apln_details(l_hire_date)
3776: loop

Line 4076: elsif p_table(l_index).process_flag = hr_employee_applicant_api.g_end_date_apl then

4072: if (l_index = 0) then
4073: return(-1);
4074: elsif p_table(l_index).process_flag is null then
4075: return(0);
4076: elsif p_table(l_index).process_flag = hr_employee_applicant_api.g_end_date_apl then
4077: return(1);
4078: else
4079: return(2);
4080: end if;

Line 4101: or p_table(l_index).process_flag = hr_employee_applicant_api.g_convert_apl) then

4097: l_index := locate_element(p_table, p_id);
4098: if (l_index = 0) then
4099: return(TRUE);
4100: elsif (p_table(l_index).process_flag is null
4101: or p_table(l_index).process_flag = hr_employee_applicant_api.g_convert_apl) then
4102: return(TRUE);
4103: else
4104: return(FALSE);
4105: end if;

Line 4110: return(hr_employee_applicant_api.locate_value(p_table

4106: end is_convert;
4107: --
4108: function retain_exists (p_table t_ApplTable) return boolean is
4109: begin
4110: return(hr_employee_applicant_api.locate_value(p_table
4111: ,hr_employee_applicant_api.g_retain_apl) <> 0 );
4112:
4113: end retain_exists;
4114: --

Line 4111: ,hr_employee_applicant_api.g_retain_apl) <> 0 );

4107: --
4108: function retain_exists (p_table t_ApplTable) return boolean is
4109: begin
4110: return(hr_employee_applicant_api.locate_value(p_table
4111: ,hr_employee_applicant_api.g_retain_apl) <> 0 );
4112:
4113: end retain_exists;
4114: --
4115: -- +-------------------------------------------------------------------------+

Line 6617: hr_utility.set_location('HR_EMPLOYEE_APPLICANT_API.HIRE_EMPLOYEE_APPLICANT',277);

6613: end loop;
6614:
6615: if nvl(l_fpt_hire_flag,'N') = 'Y' then
6616:
6617: hr_utility.set_location('HR_EMPLOYEE_APPLICANT_API.HIRE_EMPLOYEE_APPLICANT',277);
6618:
6619: -- loop through the future applications > hire date
6620: for apl in csr_get_apln_details(l_hire_date)
6621: loop

Line 6821: END hr_employee_applicant_api;

6817: raise;
6818: end hire_employee_applicant;
6819: --
6820: --
6821: END hr_employee_applicant_api;