DBA Data[Home] [Help]

APPS.HR_NZ_PERSON_API dependencies on HR_UTILITY

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

165: AND c_effective_date
166: BETWEEN per.effective_start_date and per.effective_end_date;
167: --
168: BEGIN
169: hr_utility.set_location('Entering:'|| l_proc, 5);
170: --
171: -- Initialise local variables
172: --
173: l_effective_date := TRUNC(p_effective_date);

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

179: OPEN check_legislation(p_person_id, l_effective_date);
180: FETCH check_legislation into l_legislation_code;
181: IF (check_legislation%NOTFOUND) THEN
182: CLOSE check_legislation;
183: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
184: hr_utility.raise_error;
185: END IF;
186: CLOSE check_legislation;
187: hr_utility.set_location(l_proc, 20);

Line 184: hr_utility.raise_error;

180: FETCH check_legislation into l_legislation_code;
181: IF (check_legislation%NOTFOUND) THEN
182: CLOSE check_legislation;
183: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
184: hr_utility.raise_error;
185: END IF;
186: CLOSE check_legislation;
187: hr_utility.set_location(l_proc, 20);
188: --

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

183: hr_utility.set_message(801,'HR_7220_INVALID_PRIMARY_KEY');
184: hr_utility.raise_error;
185: END IF;
186: CLOSE check_legislation;
187: hr_utility.set_location(l_proc, 20);
188: --
189: -- Check that the legislation of the specified business group is 'GB'.
190: --
191: IF (l_legislation_code <> 'NZ') THEN

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

188: --
189: -- Check that the legislation of the specified business group is 'GB'.
190: --
191: IF (l_legislation_code <> 'NZ') THEN
192: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
193: hr_utility.set_message_token('LEG_CODE','NZ');
194: hr_utility.raise_error;
195: END IF;
196: hr_utility.set_location(l_proc, 30);

Line 193: hr_utility.set_message_token('LEG_CODE','NZ');

189: -- Check that the legislation of the specified business group is 'GB'.
190: --
191: IF (l_legislation_code <> 'NZ') THEN
192: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
193: hr_utility.set_message_token('LEG_CODE','NZ');
194: hr_utility.raise_error;
195: END IF;
196: hr_utility.set_location(l_proc, 30);
197: --

Line 194: hr_utility.raise_error;

190: --
191: IF (l_legislation_code <> 'NZ') THEN
192: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
193: hr_utility.set_message_token('LEG_CODE','NZ');
194: hr_utility.raise_error;
195: END IF;
196: hr_utility.set_location(l_proc, 30);
197: --
198: -- Update the person record using the update_person BP

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

192: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
193: hr_utility.set_message_token('LEG_CODE','NZ');
194: hr_utility.raise_error;
195: END IF;
196: hr_utility.set_location(l_proc, 30);
197: --
198: -- Update the person record using the update_person BP
199: --
200: hr_person_api.update_person

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

318: ,p_assign_payroll_warning => p_assign_payroll_warning
319: ,p_orig_hire_warning => p_orig_hire_warning
320: );
321: --
322: hr_utility.set_location(' Leaving:'||l_proc, 7);
323: --
324: END update_nz_person;
325: END hr_nz_person_api;