DBA Data[Home] [Help]

APPS.HR_ASSESSMENT_TYPES_API dependencies on HR_UTILITY

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

64: l_assessment_type_id per_assessment_types.assessment_type_id%TYPE;
65: l_object_version_number per_assessment_types.object_version_number%TYPE;
66: --
67: begin
68: hr_utility.set_location('Entering:'|| l_proc, 5);
69: --
70: -- Issue a savepoint.
71: --
72: savepoint create_assess_type;

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

69: --
70: -- Issue a savepoint.
71: --
72: savepoint create_assess_type;
73: hr_utility.set_location(l_proc, 6);
74: --
75: -- Call Before Process User Hook
76: --
77: begin

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

130: -- End of Before Process User Hook call
131: --
132: -- Validation in addition to Table Handlers
133: --
134: hr_utility.set_location(l_proc, 7);
135: --
136: -- Process Logic
137: --
138: per_ast_ins.ins (p_assessment_type_id => l_assessment_type_id

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

181: ,p_validate => p_validate
182: ,p_effective_date => p_effective_date
183: );
184: --
185: hr_utility.set_location(l_proc, 8);
186: --
187: -- Call After Process User Hook
188: --
189: begin

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

253: --
254: p_assessment_type_id := l_assessment_type_id;
255: p_object_version_number := l_object_version_number;
256: --
257: hr_utility.set_location(' Leaving:'||l_proc, 11);
258: exception
259: when hr_api.validate_enabled then
260: --
261: -- As the Validate_Enabled exception has been raised

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

280: raise;
281: --
282: -- End of fix.
283: --
284: hr_utility.set_location(' Leaving:'||l_proc, 12);
285: end create_assessment_type;
286: --
287: --
288: -- ---------------------------------------------------------------------------

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

343: l_object_version_number per_assessment_types.object_version_number%TYPE;
344: --
345: lv_object_version_number per_assessment_types.object_version_number%TYPE := p_object_version_number ;
346: begin
347: hr_utility.set_location('Entering:'|| l_proc, 5);
348: --
349: -- Issue a savepoint.
350: --
351: savepoint update_assess_type;

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

348: --
349: -- Issue a savepoint.
350: --
351: savepoint update_assess_type;
352: hr_utility.set_location(l_proc, 6);
353: --
354: -- Call Before Process User Hook
355: --
356: begin

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

410: -- End of Before Process User Hook call
411: --
412: -- Validation in addition to Table Handlers
413: --
414: hr_utility.set_location(l_proc, 7);
415: --
416: -- Process Logic
417: --
418: l_object_version_number := p_object_version_number;

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

463: p_effective_date => p_effective_date
464: );
465: --
466: --
467: hr_utility.set_location(l_proc, 8);
468: --
469: -- Call After Process User Hook
470: --
471: begin

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

534: -- object version number as the update was successful
535: --
536: p_object_version_number := l_object_version_number;
537: --
538: hr_utility.set_location(' Leaving:'||l_proc, 11);
539: exception
540: when hr_api.validate_enabled then
541: --
542: -- As the Validate_Enabled exception has been raised

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

563: raise;
564: --
565: -- End of fix.
566: --
567: hr_utility.set_location(' Leaving:'||l_proc, 12);
568: --
569: end update_assessment_type;
570: --
571: --

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

582: -- Declare cursors and local variables
583: --
584: l_proc varchar2(72) := g_package||'delete_assessment_type';
585: begin
586: hr_utility.set_location('Entering:'|| l_proc, 5);
587: --
588: -- Issue a savepoint.
589: --
590: savepoint delete_assess_type;

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

587: --
588: -- Issue a savepoint.
589: --
590: savepoint delete_assess_type;
591: hr_utility.set_location(l_proc, 6);
592: --
593: -- Call Before Process User Hook
594: --
595: begin

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

609: -- End of Before Process User hook
610: --
611: -- Validation in addition to Table Handlers
612: --
613: hr_utility.set_location(l_proc, 7);
614: --
615: -- Process Logic
616: --
617: -- The check to see whether the assessment_type is being used by an

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

622: ,p_assessment_type_id => p_assessment_type_id
623: ,p_object_version_number => p_object_version_number
624: );
625: --
626: hr_utility.set_location(l_proc, 8);
627: --
628: -- Call After Process User Hook
629: --
630: begin

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

647: if p_validate then
648: raise hr_api.validate_enabled;
649: end if;
650: --
651: hr_utility.set_location(' Leaving:'||l_proc, 11);
652: exception
653: when hr_api.validate_enabled then
654: --
655: -- As the Validate_Enabled exception has been raised

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

668: raise;
669: --
670: -- End of fix.
671: --
672: hr_utility.set_location(' Leaving:'||l_proc, 12);
673: end delete_assessment_type;
674: --
675: end hr_assessment_types_api;