DBA Data[Home] [Help]

APPS.HR_SG_EMPLOYEE_API dependencies on HR_UTILITY

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

184: FROM per_business_groups pbg
185: WHERE pbg.business_group_id = p_business_group_id;
186: --
187: BEGIN
188: hr_utility.set_location('Entering:'|| l_proc, 10);
189: --
190: -- Validation IN addition to Row Handlers
191: --
192: -- Check that the specified business group is valid.

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

195: FETCH csr_bg
196: INTO l_legislation_code;
197: IF csr_bg%notfound THEN
198: CLOSE csr_bg;
199: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
200: hr_utility.raise_error;
201: END IF;
202: CLOSE csr_bg;
203: hr_utility.set_location(l_proc, 20);

Line 200: hr_utility.raise_error;

196: INTO l_legislation_code;
197: IF csr_bg%notfound THEN
198: CLOSE csr_bg;
199: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
200: hr_utility.raise_error;
201: END IF;
202: CLOSE csr_bg;
203: hr_utility.set_location(l_proc, 20);
204: --

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

199: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
200: hr_utility.raise_error;
201: END IF;
202: CLOSE csr_bg;
203: hr_utility.set_location(l_proc, 20);
204: --
205: -- Check that the legislation of the specified business group is 'SG'.
206: --
207: IF l_legislation_code <> 'SG' THEN

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

204: --
205: -- Check that the legislation of the specified business group is 'SG'.
206: --
207: IF l_legislation_code <> 'SG' THEN
208: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
209: hr_utility.set_message_token('LEG_CODE','SG');
210: hr_utility.raise_error;
211: END IF;
212: hr_utility.set_location(l_proc, 30);

Line 209: hr_utility.set_message_token('LEG_CODE','SG');

205: -- Check that the legislation of the specified business group is 'SG'.
206: --
207: IF l_legislation_code <> 'SG' THEN
208: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
209: hr_utility.set_message_token('LEG_CODE','SG');
210: hr_utility.raise_error;
211: END IF;
212: hr_utility.set_location(l_proc, 30);
213: --

Line 210: hr_utility.raise_error;

206: --
207: IF l_legislation_code <> 'SG' THEN
208: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
209: hr_utility.set_message_token('LEG_CODE','SG');
210: hr_utility.raise_error;
211: END IF;
212: hr_utility.set_location(l_proc, 30);
213: --
214: -- Call the person business process

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

208: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
209: hr_utility.set_message_token('LEG_CODE','SG');
210: hr_utility.raise_error;
211: END IF;
212: hr_utility.set_location(l_proc, 30);
213: --
214: -- Call the person business process
215: --
216: hr_employee_api.create_employee

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

349: ,p_name_combination_warning => p_name_combination_warning
350: ,p_assign_payroll_warning => p_assign_payroll_warning
351: ,p_orig_hire_warning => p_orig_hire_warning);
352: --
353: hr_utility.set_location(' Leaving:'||l_proc, 40);
354: --
355: end create_sg_employee;
356:
357: --

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

497: --
498: begin
499: l_proc := g_package||'create_sg_employee';
500: l_orig_hire_warning := false;
501: hr_utility.set_location('Entering:'|| l_proc, 10);
502: --
503: hr_sg_employee_api.create_sg_employee
504: (p_validate => p_validate
505: ,p_hire_date => p_hire_date

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

634: ,p_name_combination_warning => p_name_combination_warning
635: ,p_assign_payroll_warning => p_assign_payroll_warning
636: ,p_orig_hire_warning => l_orig_hire_warning
637: );
638: hr_utility.set_location(' Leaving:'||l_proc, 40);
639: --
640: end create_sg_employee;
641:
642: end hr_sg_employee_api;