DBA Data[Home] [Help]

APPS.HR_JP_PERSON_API dependencies on HR_UTILITY

Line 104: hr_utility.set_location('Entering:'|| l_proc, 5);

100: and c_effective_date
101: between per.effective_start_date and per.effective_end_date;
102: --
103: begin
104: hr_utility.set_location('Entering:'|| l_proc, 5);
105: --
106: -- Initialise local variables
107: --
108: l_effective_date := trunc(p_effective_date);

Line 118: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');

114: open check_legislation(p_person_id, l_effective_date);
115: fetch check_legislation into l_legislation_code;
116: if check_legislation%notfound then
117: close check_legislation;
118: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
119: hr_utility.raise_error;
120: end if;
121: close check_legislation;
122: hr_utility.set_location(l_proc, 20);

Line 119: hr_utility.raise_error;

115: fetch check_legislation into l_legislation_code;
116: if check_legislation%notfound then
117: close check_legislation;
118: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
119: hr_utility.raise_error;
120: end if;
121: close check_legislation;
122: hr_utility.set_location(l_proc, 20);
123: --

Line 122: hr_utility.set_location(l_proc, 20);

118: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
119: hr_utility.raise_error;
120: end if;
121: close check_legislation;
122: hr_utility.set_location(l_proc, 20);
123: --
124: -- Check that the legislation of the specified business group is 'JP'.
125: --
126: if l_legislation_code <> 'JP' then

Line 127: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');

123: --
124: -- Check that the legislation of the specified business group is 'JP'.
125: --
126: if l_legislation_code <> 'JP' then
127: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
128: hr_utility.set_message_token('LEG_CODE','JP');
129: hr_utility.raise_error;
130: end if;
131: hr_utility.set_location(l_proc, 30);

Line 128: hr_utility.set_message_token('LEG_CODE','JP');

124: -- Check that the legislation of the specified business group is 'JP'.
125: --
126: if l_legislation_code <> 'JP' then
127: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
128: hr_utility.set_message_token('LEG_CODE','JP');
129: hr_utility.raise_error;
130: end if;
131: hr_utility.set_location(l_proc, 30);
132: --

Line 129: hr_utility.raise_error;

125: --
126: if l_legislation_code <> 'JP' then
127: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
128: hr_utility.set_message_token('LEG_CODE','JP');
129: hr_utility.raise_error;
130: end if;
131: hr_utility.set_location(l_proc, 30);
132: --
133: -- Update the person record using the update_person BP

Line 131: hr_utility.set_location(l_proc, 30);

127: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
128: hr_utility.set_message_token('LEG_CODE','JP');
129: hr_utility.raise_error;
130: end if;
131: hr_utility.set_location(l_proc, 30);
132: --
133: -- Update the person record using the update_person BP
134: --
135: hr_person_api.update_person

Line 206: hr_utility.set_location('Leaving: '||l_proc, 40);

202: ,p_name_combination_warning => p_name_combination_warning
203: ,p_assign_payroll_warning => p_assign_payroll_warning
204: ,p_orig_hire_warning => p_orig_hire_warning
205: );
206: hr_utility.set_location('Leaving: '||l_proc, 40);
207: --
208: end update_jp_person;
209: --
210: end hr_jp_person_api;