DBA Data[Home] [Help]

APPS.HR_APPRAISAL_TEMPLATES_API dependencies on HR_UTILITY

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

76: l_proc varchar2(72) := g_package||'create_appraisal_template';
77: l_appraisal_template_id per_appraisal_templates.appraisal_template_id%TYPE;
78: l_object_version_number per_appraisal_templates.object_version_number%TYPE;
79: begin
80: hr_utility.set_location('Entering:'|| l_proc, 5);
81: --
82: -- Issue a savepoint.
83: --
84: savepoint create_appraisal_template;

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

81: --
82: -- Issue a savepoint.
83: --
84: savepoint create_appraisal_template;
85: hr_utility.set_location(l_proc, 6);
86: --
87: -- Call Before Process User Hook
88: --
89: begin

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

171: -- End of Before Process User Hook call
172: --
173: -- Validation in addition to Table Handlers
174: --
175: hr_utility.set_location(l_proc, 7);
176: --
177: -- Process Logic
178: --
179: per_apt_ins.ins

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

252: p_appraisal_template_id => l_appraisal_template_id,
253: p_object_version_number => l_object_version_number
254: );
255: --
256: hr_utility.set_location(l_proc, 8);
257: --
258: -- Call After Process User Hook
259: --
260: begin

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

353: --
354: p_appraisal_template_id := l_appraisal_template_id;
355: p_object_version_number := l_object_version_number;
356: --
357: hr_utility.set_location(' Leaving:'||l_proc, 11);
358: exception
359: when hr_api.validate_enabled then
360: --
361: -- As the Validate_Enabled exception has been raised

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

380: raise;
381: --
382: -- End of fix.
383: --
384: hr_utility.set_location(' Leaving:'||l_proc, 12);
385: end create_appraisal_template;
386: --
387: --
388: -- ---------------------------------------------------------------------------

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

456: --
457: lv_object_version_number per_appraisal_templates.object_version_number%TYPE := p_object_version_number ;
458: --
459: begin
460: hr_utility.set_location('Entering:'|| l_proc, 5);
461: --
462: -- Issue a savepoint.
463: --
464: savepoint update_appraisal_template;

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

461: --
462: -- Issue a savepoint.
463: --
464: savepoint update_appraisal_template;
465: hr_utility.set_location(l_proc, 6);
466: --
467: --
468: -- Call Before Process User Hook
469: --

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

551: end;
552: --
553: -- Validation in addition to Table Handlers
554: --
555: hr_utility.set_location(l_proc, 7);
556: --
557: -- Process Logic
558: --
559: l_object_version_number := p_object_version_number;

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

634: ,p_part_rev_off_template_code => p_part_rev_off_template_code
635: );
636: --
637: --
638: hr_utility.set_location(l_proc, 8);
639: --
640: -- Call After Process User Hook
641: --
642: begin

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

734: -- object version number as the update was successful
735: --
736: p_object_version_number := l_object_version_number;
737: --
738: hr_utility.set_location(' Leaving:'||l_proc, 11);
739: exception
740: when hr_api.validate_enabled then
741: --
742: -- As the Validate_Enabled exception has been raised

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

763: raise;
764: --
765: -- End of fix.
766: --
767: hr_utility.set_location(' Leaving:'||l_proc, 12);
768: --
769: end update_appraisal_template;
770: --
771: --

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

783: --
784: --
785: l_proc varchar2(72) := g_package||'delete_appraisal_template';
786: begin
787: hr_utility.set_location('Entering:'|| l_proc, 5);
788: --
789: -- Issue a savepoint.
790: --
791: savepoint delete_appraisal_template;

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

788: --
789: -- Issue a savepoint.
790: --
791: savepoint delete_appraisal_template;
792: hr_utility.set_location(l_proc, 6);
793: --
794: -- Call Before Process User Hook
795: --
796: begin

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

810: -- End of Before Process User hook
811: --
812: -- Validation in addition to Table Handlers
813: --
814: hr_utility.set_location(l_proc, 7);
815: --
816: -- Process Logic
817: --
818: -- now delete the appraisal template

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

822: ,p_appraisal_template_id => p_appraisal_template_id
823: ,p_object_version_number => p_object_version_number
824: );
825: --
826: hr_utility.set_location(l_proc, 8);
827: --
828: -- Call After Process User Hook
829: --
830: begin

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

846: if p_validate then
847: raise hr_api.validate_enabled;
848: end if;
849: --
850: hr_utility.set_location(' Leaving:'||l_proc, 11);
851: exception
852: when hr_api.validate_enabled then
853: --
854: -- As the Validate_Enabled exception has been raised

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

867: raise;
868: --
869: -- End of fix.
870: --
871: hr_utility.set_location(' Leaving:'||l_proc, 12);
872: end delete_appraisal_template;
873: --
874: end hr_appraisal_templates_api;