DBA Data[Home] [Help]

APPS.HR_RU_CONTINGENT_WORKER_API dependencies on HR_UTILITY

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

141: --
142: begin
143:
144: l_proc := g_package||'create_ru_cwk';
145: hr_utility.set_location('Entering:'|| l_proc, 45);
146: --
147: -- Validation in addition to Table Handlers
148: --
149: -- Check that the specified business group is valid.

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

152: fetch csr_bg
153: into l_legislation_code;
154: if csr_bg%notfound then
155: close csr_bg;
156: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
157: hr_utility.raise_error;
158: end if;
159: close csr_bg;
160: --

Line 157: hr_utility.raise_error;

153: into l_legislation_code;
154: if csr_bg%notfound then
155: close csr_bg;
156: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
157: hr_utility.raise_error;
158: end if;
159: close csr_bg;
160: --
161: -- Check that the legislation of the specified business group is 'RU'.

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

160: --
161: -- Check that the legislation of the specified business group is 'RU'.
162: --
163: if l_legislation_code <> 'RU' then
164: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
165: hr_utility.set_message_token('LEG_CODE','RU');
166: hr_utility.raise_error;
167: end if;
168:

Line 165: hr_utility.set_message_token('LEG_CODE','RU');

161: -- Check that the legislation of the specified business group is 'RU'.
162: --
163: if l_legislation_code <> 'RU' then
164: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
165: hr_utility.set_message_token('LEG_CODE','RU');
166: hr_utility.raise_error;
167: end if;
168:
169: hr_utility.set_location(l_proc, 50);

Line 166: hr_utility.raise_error;

162: --
163: if l_legislation_code <> 'RU' then
164: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
165: hr_utility.set_message_token('LEG_CODE','RU');
166: hr_utility.raise_error;
167: end if;
168:
169: hr_utility.set_location(l_proc, 50);
170: --

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

165: hr_utility.set_message_token('LEG_CODE','RU');
166: hr_utility.raise_error;
167: end if;
168:
169: hr_utility.set_location(l_proc, 50);
170: --
171: -- Call the person business process
172: --
173: hr_utility.set_location (l_proc, 50);

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

169: hr_utility.set_location(l_proc, 50);
170: --
171: -- Call the person business process
172: --
173: hr_utility.set_location (l_proc, 50);
174: --
175: -- Call the person business process
176: --
177: hr_contingent_worker_api.create_cwk

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

293: ,p_assignment_number => p_assignment_number
294: ,p_name_combination_warning => p_name_combination_warning
295: );
296: --
297: hr_utility.set_location(' Leaving:'||l_proc, 55);
298: end create_ru_cwk;
299: --
300: end hr_ru_contingent_worker_api;