DBA Data[Home] [Help]

APPS.HR_FR_PERSON_API dependencies on HR_UTILITY

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

143: and c_effective_date
144: between per.effective_start_date and per.effective_end_date;
145: --
146: begin
147: hr_utility.set_location('Entering:'|| l_proc, 5);
148: --
149: -- Initialise local variables
150: --
151: l_effective_date := trunc(p_effective_date);

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

157: open check_legislation(p_person_id, l_effective_date);
158: fetch check_legislation into l_legislation_code;
159: if check_legislation%notfound then
160: close check_legislation;
161: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
162: hr_utility.raise_error;
163: end if;
164: close check_legislation;
165: hr_utility.set_location(l_proc, 20);

Line 162: hr_utility.raise_error;

158: fetch check_legislation into l_legislation_code;
159: if check_legislation%notfound then
160: close check_legislation;
161: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
162: hr_utility.raise_error;
163: end if;
164: close check_legislation;
165: hr_utility.set_location(l_proc, 20);
166: --

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

161: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
162: hr_utility.raise_error;
163: end if;
164: close check_legislation;
165: hr_utility.set_location(l_proc, 20);
166: --
167: -- Check that the legislation of the specified business group is 'GB'.
168: --
169: if l_legislation_code <> 'FR' then

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

166: --
167: -- Check that the legislation of the specified business group is 'GB'.
168: --
169: if l_legislation_code <> 'FR' then
170: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
171: hr_utility.set_message_token('LEG_CODE','FR');
172: hr_utility.raise_error;
173: end if;
174: hr_utility.set_location(l_proc, 30);

Line 171: hr_utility.set_message_token('LEG_CODE','FR');

167: -- Check that the legislation of the specified business group is 'GB'.
168: --
169: if l_legislation_code <> 'FR' then
170: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
171: hr_utility.set_message_token('LEG_CODE','FR');
172: hr_utility.raise_error;
173: end if;
174: hr_utility.set_location(l_proc, 30);
175: --

Line 172: hr_utility.raise_error;

168: --
169: if l_legislation_code <> 'FR' then
170: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
171: hr_utility.set_message_token('LEG_CODE','FR');
172: hr_utility.raise_error;
173: end if;
174: hr_utility.set_location(l_proc, 30);
175: --
176: -- Update the person record using the update_person BP

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

170: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
171: hr_utility.set_message_token('LEG_CODE','FR');
172: hr_utility.raise_error;
173: end if;
174: hr_utility.set_location(l_proc, 30);
175: --
176: -- Update the person record using the update_person BP
177: --
178: hr_person_api.update_person

Line 292: hr_utility.set_location(' Leaving:'||l_proc, 7);

288: ,p_assign_payroll_warning => p_assign_payroll_warning
289: ,p_orig_hire_warning => p_orig_hire_warning
290: );
291: --
292: hr_utility.set_location(' Leaving:'||l_proc, 7);
293: --
294: end update_fr_person;
295: --
296: end hr_fr_person_api;