DBA Data[Home] [Help]

APPS.PER_TASKS_IN_CHECKLIST_API dependencies on HR_UTILITY

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

78: l_task_in_checklist_id number(9);
79: l_proc varchar2(72) := g_package||'Create_task_in_ckl';
80:
81: begin
82: hr_utility.set_location('Entering:'|| l_proc, 10);
83: --
84: -- Issue a savepoint
85: --
86: savepoint CREATE_TASK_IN_CKL;

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

331: --p_in_out_parameter := ;
332: p_object_version_number := l_object_version_number;
333: --p_some_warning := ;
334: --
335: hr_utility.set_location(' Leaving:'||l_proc, 70);
336: exception
337: when hr_api.validate_enabled then
338: --
339: -- As the Validate_Enabled exception has been raised

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

348: --p_in_out_parameter := l_in_out_parameter;
349: p_task_in_checklist_id := null;
350: p_object_version_number := null;
351: --p_some_warning := ;
352: hr_utility.set_location(' Leaving:'||l_proc, 80);
353: when others then
354: --
355: -- A validation or unexpected error has occured
356: --

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

362: --p_in_out_parameter := l_in_out_parameter;
363: p_task_in_checklist_id := null;
364: p_object_version_number := null;
365: --p_some_warning := null;
366: hr_utility.set_location(' Leaving:'||l_proc, 90);
367: raise;
368: end CREATE_TASK_IN_CKL;
369: --
370: -- ----------------------------------------------------------------------------

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

439: l_object_version_number number;
440: l_temp_ovn number;
441:
442: begin
443: hr_utility.set_location('Entering:'|| l_proc, 10);
444: --
445: -- Issue a savepoint
446: --
447: savepoint UPDATE_TASK_IN_CKL;

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

677: --
678: -- Set all output arguements
679: --
680: p_object_version_number := l_object_version_number;
681: hr_utility.set_location(' Leaving:'||l_proc, 70);
682: exception
683: when hr_Api.validate_enabled then
684: --
685: -- As the Validate_Enabled exception has been raised

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

690: -- Only set output warning arguments
691: -- (Any key or derived arguments must be set to null
692: -- when validation only mode is being used.)
693: --
694: hr_utility.set_location(' Leaving:'||l_proc, 80);
695: when others then
696: --
697: -- A validation or unexpected error has occured
698: --

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

697: -- A validation or unexpected error has occured
698: --
699: p_object_version_number := l_temp_ovn;
700: rollback to UPDATE_TASK_IN_CKL;
701: hr_utility.set_location(' Leaving:'||l_proc, 90);
702: raise;
703:
704: end UPDATE_TASK_IN_CKL;
705: --

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

718: l_proc varchar2(72) := g_package||'delete_task_in_ckl';
719: l_object_version_number number(9) := p_object_version_number;
720:
721: begin
722: hr_utility.set_location('Entering:'|| l_proc, 10);
723: --
724: -- Issue a savepoint
725: --
726: savepoint DELETE_TASK_IN_CKL;

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

769: if p_validate then
770: raise hr_Api.validate_enabled;
771: end if;
772: --
773: hr_utility.set_location(' Leaving:'||l_proc, 70);
774: exception
775: when hr_Api.validate_enabled then
776: --
777: -- As the Validate_Enabled exception has been raised

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

778: -- we must rollback to the savepoint
779: --
780: rollback to DELETE_TASK_IN_CKL;
781: --
782: hr_utility.set_location(' Leaving:'||l_proc, 80);
783: when others then
784: --
785: -- A validation or unexpected error has occured
786: --

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

784: --
785: -- A validation or unexpected error has occured
786: --
787: rollback to DELETE_TASK_IN_CKL;
788: hr_utility.set_location(' Leaving:'||l_proc, 90);
789: raise;
790: end DELETE_TASK_IN_CKL;
791: --
792: end PER_TASKS_IN_CHECKLIST_API;