DBA Data[Home] [Help]

APPS.PER_ALLOCATED_TASK_API dependencies on HR_UTILITY

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

80: l_allocated_task_id number(9);
81: l_proc varchar2(72) := g_package||'Create_task';
82:
83: begin
84: hr_utility.set_location('Entering:'|| l_proc, 10);
85: --
86: -- Issue a savepoint
87: --
88: savepoint CREATE_ALLOC_TASK;

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

347: --p_in_out_parameter := ;
348: p_object_version_number := l_object_version_number;
349: --p_some_warning := ;
350: --
351: hr_utility.set_location(' Leaving:'||l_proc, 70);
352: exception
353: when hr_api.validate_enabled then
354: --
355: -- As the Validate_Enabled exception has been raised

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

364: --p_in_out_parameter := l_in_out_parameter;
365: p_allocated_task_id := null;
366: p_object_version_number := null;
367: --p_some_warning := ;
368: hr_utility.set_location(' Leaving:'||l_proc, 80);
369: when others then
370: --
371: -- A validation or unexpected error has occured
372: --

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

378: --p_in_out_parameter := l_in_out_parameter;
379: p_allocated_task_id := null;
380: p_object_version_number := null;
381: --p_some_warning := null;
382: hr_utility.set_location(' Leaving:'||l_proc, 90);
383: raise;
384: end CREATE_ALLOC_TASK;
385: --
386: -- ----------------------------------------------------------------------------

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

458: l_object_version_number number;
459: l_temp_ovn number;
460:
461: begin
462: hr_utility.set_location('Entering:'|| l_proc, 10);
463: --
464: -- Issue a savepoint
465: --
466: savepoint UPDATE_ALLOC_TASK;

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

703: --
704: -- Set all output arguements
705: --
706: p_object_version_number := l_object_version_number;
707: hr_utility.set_location(' Leaving:'||l_proc, 70);
708: exception
709: when hr_Api.validate_enabled then
710: --
711: -- As the Validate_Enabled exception has been raised

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

716: -- Only set output warning arguments
717: -- (Any key or derived arguments must be set to null
718: -- when validation only mode is being used.)
719: --
720: hr_utility.set_location(' Leaving:'||l_proc, 80);
721: when others then
722: --
723: -- A validation or unexpected error has occured
724: --

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

723: -- A validation or unexpected error has occured
724: --
725: p_object_version_number := l_temp_ovn;
726: rollback to UPDATE_ALLOC_TASK;
727: hr_utility.set_location(' Leaving:'||l_proc, 90);
728: raise;
729:
730: end UPDATE_ALLOC_TASK;
731: --

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

744: l_proc varchar2(72) := g_package||'delete_task';
745: l_object_version_number number(9) := p_object_version_number;
746:
747: begin
748: hr_utility.set_location('Entering:'|| l_proc, 10);
749: --
750: -- Issue a savepoint
751: --
752: savepoint DELETE_ALLOC_TASK;

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

795: if p_validate then
796: raise hr_Api.validate_enabled;
797: end if;
798: --
799: hr_utility.set_location(' Leaving:'||l_proc, 70);
800: exception
801: when hr_Api.validate_enabled then
802: --
803: -- As the Validate_Enabled exception has been raised

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

804: -- we must rollback to the savepoint
805: --
806: rollback to DELETE_ALLOC_TASK;
807: --
808: hr_utility.set_location(' Leaving:'||l_proc, 80);
809: when others then
810: --
811: -- A validation or unexpected error has occured
812: --

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

810: --
811: -- A validation or unexpected error has occured
812: --
813: rollback to DELETE_ALLOC_TASK;
814: hr_utility.set_location(' Leaving:'||l_proc, 90);
815: raise;
816: end DELETE_ALLOC_TASK;
817: --
818: end PER_ALLOCATED_TASK_API;