DBA Data[Home] [Help]

APPS.HR_PL_EMPLOYEE_API dependencies on HR_UTILITY

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

160: begin
161: g_package :='hr_pl_employee_api.';
162: l_proc := g_package||'create_pl_employee OLD';
163:
164: hr_utility.set_location('Entering:'|| l_proc, 5);
165: --
166: -- Validation in addition to Row Handlers
167: --
168: -- Check that the specified business group is valid.

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

172: fetch csr_bg
173: into l_legislation_code;
174: if csr_bg%notfound then
175: close csr_bg;
176: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
177: hr_utility.raise_error;
178: end if;
179: close csr_bg;
180: --

Line 177: hr_utility.raise_error;

173: into l_legislation_code;
174: if csr_bg%notfound then
175: close csr_bg;
176: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
177: hr_utility.raise_error;
178: end if;
179: close csr_bg;
180: --
181: -- Check that the legislation of the specified business group is 'PL'.

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

180: --
181: -- Check that the legislation of the specified business group is 'PL'.
182: --
183: if l_legislation_code <> 'PL' then
184: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
185: hr_utility.set_message_token('LEG_CODE','PL');
186: hr_utility.raise_error;
187: end if;
188:

Line 185: hr_utility.set_message_token('LEG_CODE','PL');

181: -- Check that the legislation of the specified business group is 'PL'.
182: --
183: if l_legislation_code <> 'PL' then
184: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
185: hr_utility.set_message_token('LEG_CODE','PL');
186: hr_utility.raise_error;
187: end if;
188:
189: End of bug 4340576

Line 186: hr_utility.raise_error;

182: --
183: if l_legislation_code <> 'PL' then
184: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
185: hr_utility.set_message_token('LEG_CODE','PL');
186: hr_utility.raise_error;
187: end if;
188:
189: End of bug 4340576
190: */

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

448: begin
449: g_package :='hr_pl_employee_api.';
450: l_proc := g_package||'create_pl_employee';
451:
452: hr_utility.set_location('Entering:'|| l_proc, 5);
453: --
454: -- Validation in addition to Row Handlers
455: --
456: -- Check that the specified business group is valid.

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

459: fetch csr_bg
460: into l_legislation_code;
461: if csr_bg%notfound then
462: close csr_bg;
463: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
464: hr_utility.raise_error;
465: end if;
466: close csr_bg;
467: --

Line 464: hr_utility.raise_error;

460: into l_legislation_code;
461: if csr_bg%notfound then
462: close csr_bg;
463: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
464: hr_utility.raise_error;
465: end if;
466: close csr_bg;
467: --
468: -- Check that the legislation of the specified business group is 'PL'.

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

467: --
468: -- Check that the legislation of the specified business group is 'PL'.
469: --
470: if l_legislation_code <> 'PL' then
471: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
472: hr_utility.set_message_token('LEG_CODE','PL');
473: hr_utility.raise_error;
474: end if;
475:

Line 472: hr_utility.set_message_token('LEG_CODE','PL');

468: -- Check that the legislation of the specified business group is 'PL'.
469: --
470: if l_legislation_code <> 'PL' then
471: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
472: hr_utility.set_message_token('LEG_CODE','PL');
473: hr_utility.raise_error;
474: end if;
475:
476:

Line 473: hr_utility.raise_error;

469: --
470: if l_legislation_code <> 'PL' then
471: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
472: hr_utility.set_message_token('LEG_CODE','PL');
473: hr_utility.raise_error;
474: end if;
475:
476:
477: hr_utility.set_location(l_proc, 7);

Line 477: hr_utility.set_location(l_proc, 7);

473: hr_utility.raise_error;
474: end if;
475:
476:
477: hr_utility.set_location(l_proc, 7);
478:
479:
480: --
481: -- Call the person business process

Line 603: hr_utility.set_location(l_proc, 10);

599: ,p_orig_hire_warning => p_orig_hire_warning
600: );
601: --
602: --
603: hr_utility.set_location(l_proc, 10);
604: end create_pl_employee;
605: --
606: end hr_pl_employee_api;