DBA Data[Home] [Help]

APPS.PAY_CNU_API dependencies on HR_UTILITY

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

56: = nvl(cnu.business_group_id, -1)
57: );
58: --
59: begin
60: hr_utility.set_location('Entering:'|| l_proc, 10);
61: --
62: -- Issue a savepoint
63: --
64: savepoint CREATE_CONTRIBUTION_USAGE;

Line 190: hr_utility.set_location(' Leaving:'||l_proc, 70);

186: p_contribution_usage_id := l_contribution_usage_id;
187: p_object_version_number := l_object_version_number;
188: p_code_Rate_id := l_code_Rate_id;
189: --
190: hr_utility.set_location(' Leaving:'||l_proc, 70);
191: exception
192: when hr_api.validate_enabled then
193: --
194: -- As the Validate_Enabled exception has been raised

Line 206: hr_utility.set_location(' Leaving:'||l_proc, 80);

202: --
203: p_contribution_usage_id := null;
204: p_object_version_number := null;
205: p_code_Rate_id := l_original_code_Rate_id;
206: hr_utility.set_location(' Leaving:'||l_proc, 80);
207: when others then
208: --
209: -- A validation or unexpected error has occured
210: --

Line 212: hr_utility.set_location(' Leaving:'||l_proc, 90);

208: --
209: -- A validation or unexpected error has occured
210: --
211: rollback to CREATE_CONTRIBUTION_USAGE;
212: hr_utility.set_location(' Leaving:'||l_proc, 90);
213: --
214: -- Reset IN OUT params and set OUT params.
215: --
216: p_contribution_usage_id := null;

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

241: l_effective_date date;
242: l_date_to date;
243: l_object_version_number number;
244: begin
245: hr_utility.set_location('Entering:'|| l_proc, 10);
246: --
247: -- Issue a savepoint
248: --
249: savepoint UPDATE_CONTRIBUTION_USAGE;

Line 324: hr_utility.set_location(' Leaving:'||l_proc, 70);

320: --
321: -- Set all output arguments
322: p_object_version_number := l_object_version_number;
323: --
324: hr_utility.set_location(' Leaving:'||l_proc, 70);
325: exception
326: when hr_api.validate_enabled then
327: --
328: -- As the Validate_Enabled exception has been raised

Line 338: hr_utility.set_location(' Leaving:'||l_proc, 80);

334: -- (Any key or derived arguments must be set to null
335: -- when validation only mode is being used.)
336: --
337: p_object_version_number := null;
338: hr_utility.set_location(' Leaving:'||l_proc, 80);
339: when others then
340: --
341: -- A validation or unexpected error has occured
342: --

Line 349: hr_utility.set_location(' Leaving:'||l_proc, 90);

345: -- Reset IN OUT params and set OUT params.
346: --
347: p_object_version_number := l_object_version_number;
348: --
349: hr_utility.set_location(' Leaving:'||l_proc, 90);
350: raise;
351: end update_contribution_usage;
352: --
353: -- ----------------------------------------------------------------------------

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

364: --
365: l_proc varchar2(72) := g_package||' Delete Contribution Usage';
366: --
367: begin
368: hr_utility.set_location('Entering:'|| l_proc, 10);
369: --
370: -- Issue a savepoint
371: --
372: savepoint DELETE_CONTRIBUTION_USAGE;

Line 426: hr_utility.set_location(' Leaving:'||l_proc, 170);

422: --
423: -- Set all output arguments
424: --
425: --
426: hr_utility.set_location(' Leaving:'||l_proc, 170);
427: exception
428: when hr_api.validate_enabled then
429: --
430: -- As the Validate_Enabled exception has been raised

Line 439: hr_utility.set_location(' Leaving:'||l_proc, 180);

435: -- Only set output warning arguments
436: -- (Any key or derived arguments must be set to null
437: -- when validation only mode is being used.)
438: --
439: hr_utility.set_location(' Leaving:'||l_proc, 180);
440: when others then
441: --
442: -- A validation or unexpected error has occured
443: --

Line 445: hr_utility.set_location(' Leaving:'||l_proc, 190);

441: --
442: -- A validation or unexpected error has occured
443: --
444: rollback to DELETE_CONTRIBUTION_USAGE;
445: hr_utility.set_location(' Leaving:'||l_proc, 190);
446: raise;
447: end delete_contribution_usage;
448: --
449: end pay_cnu_api;