DBA Data[Home] [Help]

APPS.HR_APPRAISAL_TEMPLATES_API dependencies on HR_UTILITY

Line 85: hr_utility.set_location('Entering:'|| l_proc, 5);

81: l_proc varchar2(72) := g_package||'create_appraisal_template';
82: l_appraisal_template_id per_appraisal_templates.appraisal_template_id%TYPE;
83: l_object_version_number per_appraisal_templates.object_version_number%TYPE;
84: begin
85: hr_utility.set_location('Entering:'|| l_proc, 5);
86: --
87: -- Issue a savepoint.
88: --
89: savepoint create_appraisal_template;

Line 90: hr_utility.set_location(l_proc, 6);

86: --
87: -- Issue a savepoint.
88: --
89: savepoint create_appraisal_template;
90: hr_utility.set_location(l_proc, 6);
91: --
92: -- Call Before Process User Hook
93: --
94: begin

Line 186: hr_utility.set_location(l_proc, 7);

182: -- End of Before Process User Hook call
183: --
184: -- Validation in addition to Table Handlers
185: --
186: hr_utility.set_location(l_proc, 7);
187: --
188: -- Process Logic
189: --
190: per_apt_ins.ins

Line 273: hr_utility.set_location(l_proc, 8);

269: ,p_SHOW_FUTURE_TERM_EMPLOYEE => p_SHOW_FUTURE_TERM_EMPLOYEE -- 6181267 bug fix
270:
271: );
272: --
273: hr_utility.set_location(l_proc, 8);
274: --
275: -- Call After Process User Hook
276: --
277: begin

Line 380: hr_utility.set_location(' Leaving:'||l_proc, 11);

376: --
377: p_appraisal_template_id := l_appraisal_template_id;
378: p_object_version_number := l_object_version_number;
379: --
380: hr_utility.set_location(' Leaving:'||l_proc, 11);
381: exception
382: when hr_api.validate_enabled then
383: --
384: -- As the Validate_Enabled exception has been raised

Line 407: hr_utility.set_location(' Leaving:'||l_proc, 12);

403: raise;
404: --
405: -- End of fix.
406: --
407: hr_utility.set_location(' Leaving:'||l_proc, 12);
408: end create_appraisal_template;
409: --
410: --
411: -- ---------------------------------------------------------------------------

Line 490: hr_utility.set_location('Entering:'|| l_proc, 5);

486: --
487: lv_object_version_number per_appraisal_templates.object_version_number%TYPE := p_object_version_number ;
488: --
489: begin
490: hr_utility.set_location('Entering:'|| l_proc, 5);
491: --
492: -- Issue a savepoint.
493: --
494: savepoint update_appraisal_template;

Line 495: hr_utility.set_location(l_proc, 6);

491: --
492: -- Issue a savepoint.
493: --
494: savepoint update_appraisal_template;
495: hr_utility.set_location(l_proc, 6);
496: --
497: --
498: -- Call Before Process User Hook
499: --

Line 591: hr_utility.set_location(l_proc, 7);

587: end;
588: --
589: -- Validation in addition to Table Handlers
590: --
591: hr_utility.set_location(l_proc, 7);
592: --
593: -- Process Logic
594: --
595: l_object_version_number := p_object_version_number;

Line 680: hr_utility.set_location(l_proc, 8);

676:
677: );
678: --
679: --
680: hr_utility.set_location(l_proc, 8);
681: --
682: -- Call After Process User Hook
683: --
684: begin

Line 786: hr_utility.set_location(' Leaving:'||l_proc, 11);

782: -- object version number as the update was successful
783: --
784: p_object_version_number := l_object_version_number;
785: --
786: hr_utility.set_location(' Leaving:'||l_proc, 11);
787: exception
788: when hr_api.validate_enabled then
789: --
790: -- As the Validate_Enabled exception has been raised

Line 815: hr_utility.set_location(' Leaving:'||l_proc, 12);

811: raise;
812: --
813: -- End of fix.
814: --
815: hr_utility.set_location(' Leaving:'||l_proc, 12);
816: --
817: end update_appraisal_template;
818: --
819: --

Line 835: hr_utility.set_location('Entering:'|| l_proc, 5);

831: --
832: --
833: l_proc varchar2(72) := g_package||'delete_appraisal_template';
834: begin
835: hr_utility.set_location('Entering:'|| l_proc, 5);
836: --
837: -- Issue a savepoint.
838: --
839: savepoint delete_appraisal_template;

Line 840: hr_utility.set_location(l_proc, 6);

836: --
837: -- Issue a savepoint.
838: --
839: savepoint delete_appraisal_template;
840: hr_utility.set_location(l_proc, 6);
841: --
842: -- Call Before Process User Hook
843: --
844: begin

Line 862: hr_utility.set_location(l_proc, 7);

858: -- End of Before Process User hook
859: --
860: -- Validation in addition to Table Handlers
861: --
862: hr_utility.set_location(l_proc, 7);
863: --
864: -- Process Logic
865: --
866: -- now delete the appraisal template

Line 874: hr_utility.set_location(l_proc, 8);

870: ,p_appraisal_template_id => p_appraisal_template_id
871: ,p_object_version_number => p_object_version_number
872: );
873: --
874: hr_utility.set_location(l_proc, 8);
875: --
876: -- Call After Process User Hook
877: --
878: begin

Line 898: hr_utility.set_location(' Leaving:'||l_proc, 11);

894: if p_validate then
895: raise hr_api.validate_enabled;
896: end if;
897: --
898: hr_utility.set_location(' Leaving:'||l_proc, 11);
899: exception
900: when hr_api.validate_enabled then
901: --
902: -- As the Validate_Enabled exception has been raised

Line 919: hr_utility.set_location(' Leaving:'||l_proc, 12);

915: raise;
916: --
917: -- End of fix.
918: --
919: hr_utility.set_location(' Leaving:'||l_proc, 12);
920: end delete_appraisal_template;
921: --
922: end hr_appraisal_templates_api;