DBA Data[Home] [Help]

APPS.HR_DELIVERY_METHODS_API dependencies on HR_UTILITY

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

54: l_effective_date date;
55: --
56: begin
57: --
58: hr_utility.set_location('Entering:'|| l_proc, 10);
59: --
60: -- Issue a savepoint
61: --
62: savepoint create_delivery_method;

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

60: -- Issue a savepoint
61: --
62: savepoint create_delivery_method;
63: --
64: hr_utility.set_location(l_proc, 20);
65: --
66: -- Process Logic
67: --
68: l_effective_date := trunc(p_effective_date);

Line 208: hr_utility.set_location(l_proc, 60);

204: -- End of API User Hook for the after hook of create_delivery_method
205: --
206: end;
207: --
208: hr_utility.set_location(l_proc, 60);
209: --
210: -- When in validation only mode raise the Validate_Enabled exception
211: --
212: if p_validate then

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

217: --
218: p_delivery_method_id := l_delivery_method_id;
219: p_object_version_number := l_object_version_number;
220: --
221: hr_utility.set_location(' Leaving:'||l_proc, 70);
222: --
223: exception
224: --
225: when hr_api.validate_enabled then

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

235: --
236: p_delivery_method_id := null;
237: p_object_version_number := null;
238: --
239: hr_utility.set_location(' Leaving:'||l_proc, 80);
240: --
241: when others then
242: --
243: -- A validation or unexpected error has occurred

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

301: l_effective_date date;
302: --
303: begin
304: --
305: hr_utility.set_location('Entering:'|| l_proc, 10);
306: --
307: -- Issue a savepoint
308: --
309: savepoint update_delivery_method;

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

307: -- Issue a savepoint
308: --
309: savepoint update_delivery_method;
310: --
311: hr_utility.set_location(l_proc, 20);
312: --
313: -- Process Logic
314: --
315: l_object_version_number := p_object_version_number;

Line 454: hr_utility.set_location(l_proc, 60);

450: -- End of API User Hook for the after hook of update_delivery_method
451: --
452: end;
453: --
454: hr_utility.set_location(l_proc, 60);
455: --
456: -- When in validation only mode raise the Validate_Enabled exception
457: --
458: if p_validate then

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

462: -- Set all output arguments
463: --
464: p_object_version_number := l_object_version_number;
465: --
466: hr_utility.set_location(' Leaving:'||l_proc, 70);
467: --
468: exception
469: --
470: when hr_api.validate_enabled then

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

473: -- we must rollback to the savepoint
474: --
475: ROLLBACK TO update_delivery_method;
476: --
477: hr_utility.set_location(' Leaving:'||l_proc, 80);
478: --
479: when others then
480: --
481: -- A validation or unexpected error has occurred

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

512: l_person_id number := -1;
513: --
514: begin
515: --
516: hr_utility.set_location('Entering:'|| l_proc, 10);
517:
518: -- dparthas
519: OPEN get_person_info;
520: FETCH get_person_info INTO l_person_id;

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

524: -- Issue a savepoint
525: --
526: savepoint delete_delivery_method;
527: --
528: hr_utility.set_location(l_proc, 20);
529: --
530: -- Process Logic
531: --
532: begin

Line 579: hr_utility.set_location(l_proc, 60);

575: -- End of API User Hook for the after hook of delete_delivery_method
576: --
577: end;
578: --
579: hr_utility.set_location(l_proc, 60);
580: --
581: -- When in validation only mode raise the Validate_Enabled exception
582: --
583: if p_validate then

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

583: if p_validate then
584: raise hr_api.validate_enabled;
585: end if;
586: --
587: hr_utility.set_location(' Leaving:'||l_proc, 70);
588: --
589: exception
590: --
591: when hr_api.validate_enabled then