DBA Data[Home] [Help]

APPS.HR_HK_EMPLOYEE_API dependencies on HR_UTILITY

Line 180: hr_utility.set_location('Entering:'|| l_proc, 10);

176: FROM per_business_groups pbg
177: WHERE pbg.business_group_id = p_business_group_id;
178: --
179: BEGIN
180: hr_utility.set_location('Entering:'|| l_proc, 10);
181: --
182: -- Validation IN addition to Row Handlers
183: --
184: -- Check that the specified business group is valid.

Line 191: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');

187: FETCH csr_bg
188: INTO l_legislation_code;
189: IF csr_bg%notfound THEN
190: CLOSE csr_bg;
191: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
192: hr_utility.raise_error;
193: END IF;
194: CLOSE csr_bg;
195: hr_utility.set_location(l_proc, 20);

Line 192: hr_utility.raise_error;

188: INTO l_legislation_code;
189: IF csr_bg%notfound THEN
190: CLOSE csr_bg;
191: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
192: hr_utility.raise_error;
193: END IF;
194: CLOSE csr_bg;
195: hr_utility.set_location(l_proc, 20);
196: --

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

191: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
192: hr_utility.raise_error;
193: END IF;
194: CLOSE csr_bg;
195: hr_utility.set_location(l_proc, 20);
196: --
197: -- Check that the legislation of the specified business group is 'HK'.
198: --
199: IF l_legislation_code <> 'HK' THEN

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

196: --
197: -- Check that the legislation of the specified business group is 'HK'.
198: --
199: IF l_legislation_code <> 'HK' THEN
200: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
201: hr_utility.set_message_token('LEG_CODE','HK');
202: hr_utility.raise_error;
203: END IF;
204: hr_utility.set_location(l_proc, 30);

Line 201: hr_utility.set_message_token('LEG_CODE','HK');

197: -- Check that the legislation of the specified business group is 'HK'.
198: --
199: IF l_legislation_code <> 'HK' THEN
200: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
201: hr_utility.set_message_token('LEG_CODE','HK');
202: hr_utility.raise_error;
203: END IF;
204: hr_utility.set_location(l_proc, 30);
205: --

Line 202: hr_utility.raise_error;

198: --
199: IF l_legislation_code <> 'HK' THEN
200: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
201: hr_utility.set_message_token('LEG_CODE','HK');
202: hr_utility.raise_error;
203: END IF;
204: hr_utility.set_location(l_proc, 30);
205: --
206: -- Call the person business process

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

200: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
201: hr_utility.set_message_token('LEG_CODE','HK');
202: hr_utility.raise_error;
203: END IF;
204: hr_utility.set_location(l_proc, 30);
205: --
206: -- Call the person business process
207: --
208: hr_employee_api.create_employee

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

329: ,p_assign_payroll_warning => p_assign_payroll_warning
330: ,p_orig_hire_warning => p_orig_hire_warning
331: );
332: --
333: hr_utility.set_location(' Leaving:'||l_proc, 40);
334: --
335: END create_hk_employee;
336:
337: PROCEDURE create_hk_employee

Line 467: hr_utility.set_location('Entering:'|| l_proc, 10);

463: l_territory_code VARCHAR2(2);
464: l_orig_hire_warning BOOLEAN := false;
465: --
466: BEGIN
467: hr_utility.set_location('Entering:'|| l_proc, 10);
468: --
469: hr_hk_employee_api.create_hk_employee
470: (p_validate => p_validate
471: ,p_hire_date => p_hire_date

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

589: ,p_assign_payroll_warning => p_assign_payroll_warning
590: ,p_orig_hire_warning => l_orig_hire_warning
591: );
592: --
593: hr_utility.set_location(' Leaving:'||l_proc, 40);
594: --
595: END create_hk_employee;
596:
597: END hr_hk_employee_api;