DBA Data[Home] [Help]

APPS.HR_PL_CONTACT_API dependencies on HR_UTILITY

Line 127: hr_utility.set_location('Entering:'|| l_proc, 45);

123:
124: --
125: begin
126: l_proc := g_package||'create_pl_person OLD';
127: hr_utility.set_location('Entering:'|| l_proc, 45);
128: --
129: -- Validation in addition to Table Handlers
130: --
131: -- Check that the specified business group is valid.

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

137: fetch csr_bg
138: into l_legislation_code;
139: if csr_bg%notfound then
140: close csr_bg;
141: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
142: hr_utility.raise_error;
143: end if;
144: close csr_bg;
145: --

Line 142: hr_utility.raise_error;

138: into l_legislation_code;
139: if csr_bg%notfound then
140: close csr_bg;
141: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
142: hr_utility.raise_error;
143: end if;
144: close csr_bg;
145: --
146: -- Check that the legislation of the specified business group is 'RU'.

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

145: --
146: -- Check that the legislation of the specified business group is 'RU'.
147: --
148: if l_legislation_code <> 'PL' then
149: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
150: hr_utility.set_message_token('LEG_CODE','PL');
151: hr_utility.raise_error;
152: end if;
153:

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

146: -- Check that the legislation of the specified business group is 'RU'.
147: --
148: if l_legislation_code <> 'PL' then
149: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
150: hr_utility.set_message_token('LEG_CODE','PL');
151: hr_utility.raise_error;
152: end if;
153:
154: hr_utility.set_location(l_proc, 50);

Line 151: hr_utility.raise_error;

147: --
148: if l_legislation_code <> 'PL' then
149: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
150: hr_utility.set_message_token('LEG_CODE','PL');
151: hr_utility.raise_error;
152: end if;
153:
154: hr_utility.set_location(l_proc, 50);
155: --

Line 154: hr_utility.set_location(l_proc, 50);

150: hr_utility.set_message_token('LEG_CODE','PL');
151: hr_utility.raise_error;
152: end if;
153:
154: hr_utility.set_location(l_proc, 50);
155: --
156: -- Call the person business process
157: --
158: hr_utility.set_location (l_proc, 50);

Line 158: hr_utility.set_location (l_proc, 50);

154: hr_utility.set_location(l_proc, 50);
155: --
156: -- Call the person business process
157: --
158: hr_utility.set_location (l_proc, 50);
159: --
160: -- Call the person business process
161: --
162: hr_contact_api.create_person

Line 250: hr_utility.set_location(' Leaving:'||l_proc, 55);

246: ,p_orig_hire_warning => p_orig_hire_warning
247: );
248:
249: --
250: hr_utility.set_location(' Leaving:'||l_proc, 55);
251: end create_pl_person;
252:
253: procedure create_pl_person
254: (p_validate in boolean default false

Line 350: hr_utility.set_location('Entering:'|| l_proc, 45);

346: from per_business_groups pbg
347: where pbg.business_group_id = p_business_group_id;
348: Begin
349: l_proc := g_package||'create_pl_person';
350: hr_utility.set_location('Entering:'|| l_proc, 45);
351: open csr_bg;
352: fetch csr_bg
353: into l_legislation_code;
354: if csr_bg%notfound then

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

352: fetch csr_bg
353: into l_legislation_code;
354: if csr_bg%notfound then
355: close csr_bg;
356: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
357: hr_utility.raise_error;
358: end if;
359: close csr_bg;
360: --

Line 357: hr_utility.raise_error;

353: into l_legislation_code;
354: if csr_bg%notfound then
355: close csr_bg;
356: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
357: hr_utility.raise_error;
358: end if;
359: close csr_bg;
360: --
361: -- Check that the legislation of the specified business group is 'PL'.

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

360: --
361: -- Check that the legislation of the specified business group is 'PL'.
362: --
363: if l_legislation_code <> 'PL' then
364: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
365: hr_utility.set_message_token('LEG_CODE','PL');
366: hr_utility.raise_error;
367: end if;
368:

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

361: -- Check that the legislation of the specified business group is 'PL'.
362: --
363: if l_legislation_code <> 'PL' then
364: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
365: hr_utility.set_message_token('LEG_CODE','PL');
366: hr_utility.raise_error;
367: end if;
368:
369: hr_utility.set_location(l_proc, 50);

Line 366: hr_utility.raise_error;

362: --
363: if l_legislation_code <> 'PL' then
364: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
365: hr_utility.set_message_token('LEG_CODE','PL');
366: hr_utility.raise_error;
367: end if;
368:
369: hr_utility.set_location(l_proc, 50);
370: --

Line 369: hr_utility.set_location(l_proc, 50);

365: hr_utility.set_message_token('LEG_CODE','PL');
366: hr_utility.raise_error;
367: end if;
368:
369: hr_utility.set_location(l_proc, 50);
370: --
371: -- Call the person business process
372: --
373: hr_utility.set_location (l_proc, 50);

Line 373: hr_utility.set_location (l_proc, 50);

369: hr_utility.set_location(l_proc, 50);
370: --
371: -- Call the person business process
372: --
373: hr_utility.set_location (l_proc, 50);
374: --
375: -- Call the person business process
376: --
377: hr_contact_api.create_person

Line 463: hr_utility.set_location(' Leaving:'||l_proc, 55);

459: ,p_name_combination_warning => p_name_combination_warning
460: ,p_orig_hire_warning => p_orig_hire_warning
461: );
462: --
463: hr_utility.set_location(' Leaving:'||l_proc, 55);
464: end create_pl_person;
465: end hr_pl_contact_api;