DBA Data[Home] [Help]

APPS.BEN_COMP_LEVEL_RATE_API dependencies on HR_UTILITY

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

63: l_object_version_number ben_comp_lvl_rt_f.object_version_number%TYPE;
64: --
65: begin
66: --
67: hr_utility.set_location('Entering:'|| l_proc, 10);
68: --
69: -- Issue a savepoint if operating in validation only mode
70: --
71: savepoint create_COMP_LEVEL_RATE;

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

69: -- Issue a savepoint if operating in validation only mode
70: --
71: savepoint create_COMP_LEVEL_RATE;
72: --
73: hr_utility.set_location(l_proc, 20);
74: --
75: -- Process Logic
76: --
77: begin

Line 249: hr_utility.set_location(l_proc, 60);

245: --
246: ben_derivable_rate.derivable_rate_handler
247: (p_event =>'CREATE',
248: p_vrbl_rt_prfl_id =>p_vrbl_rt_prfl_id);
249: hr_utility.set_location(l_proc, 60);
250: --
251: -- When in validation only mode raise the Validate_Enabled exception
252: --
253: if p_validate then

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

260: p_effective_start_date := l_effective_start_date;
261: p_effective_end_date := l_effective_end_date;
262: p_object_version_number := l_object_version_number;
263: --
264: hr_utility.set_location(' Leaving:'||l_proc, 70);
265: --
266: exception
267: --
268: when hr_api.validate_enabled then

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

279: p_comp_lvl_rt_id := null;
280: p_effective_start_date := null;
281: p_effective_end_date := null;
282: p_object_version_number := null;
283: hr_utility.set_location(' Leaving:'||l_proc, 80);
284: --
285: when others then
286: --
287: -- A validation or unexpected error has occured

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

348: l_effective_end_date ben_comp_lvl_rt_f.effective_end_date%TYPE;
349: --
350: begin
351: --
352: hr_utility.set_location('Entering:'|| l_proc, 10);
353: --
354: -- Issue a savepoint if operating in validation only mode
355: --
356: savepoint update_COMP_LEVEL_RATE;

Line 358: hr_utility.set_location(l_proc, 20);

354: -- Issue a savepoint if operating in validation only mode
355: --
356: savepoint update_COMP_LEVEL_RATE;
357: --
358: hr_utility.set_location(l_proc, 20);
359: --
360: -- Process Logic
361: --
362: l_object_version_number := p_object_version_number;

Line 528: hr_utility.set_location(l_proc, 60);

524: -- End of API User Hook for the after hook of update_COMP_LEVEL_RATE
525: --
526: end;
527: --
528: hr_utility.set_location(l_proc, 60);
529: --
530: -- When in validation only mode raise the Validate_Enabled exception
531: --
532: if p_validate then

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

538: p_object_version_number := l_object_version_number;
539: p_effective_start_date := l_effective_start_date;
540: p_effective_end_date := l_effective_end_date;
541: --
542: hr_utility.set_location(' Leaving:'||l_proc, 70);
543: --
544: exception
545: --
546: when hr_api.validate_enabled then

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

553: -- Only set output warning arguments
554: -- (Any key or derived arguments must be set to null
555: -- when validation only mode is being used.)
556: --
557: hr_utility.set_location(' Leaving:'||l_proc, 80);
558: --
559: when others then
560: --
561: -- A validation or unexpected error has occured

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

590: l_effective_end_date ben_comp_lvl_rt_f.effective_end_date%TYPE;
591: --
592: begin
593: --
594: hr_utility.set_location('Entering:'|| l_proc, 10);
595: --
596: -- Issue a savepoint if operating in validation only mode
597: --
598: savepoint delete_COMP_LEVEL_RATE;

Line 600: hr_utility.set_location(l_proc, 20);

596: -- Issue a savepoint if operating in validation only mode
597: --
598: savepoint delete_COMP_LEVEL_RATE;
599: --
600: hr_utility.set_location(l_proc, 20);
601: --
602: -- Process Logic
603: --
604: l_object_version_number := p_object_version_number;

Line 676: hr_utility.set_location(l_proc, 60);

672: ben_derivable_rate.derivable_rate_handler
673: (p_event =>'DELETE',
674: p_vrbl_rt_prfl_id =>ben_clr_shd.g_old_rec.vrbl_rt_prfl_id);
675:
676: hr_utility.set_location(l_proc, 60);
677: --
678: -- When in validation only mode raise the Validate_Enabled exception
679: --
680: if p_validate then

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

680: if p_validate then
681: raise hr_api.validate_enabled;
682: end if;
683: --
684: hr_utility.set_location(' Leaving:'||l_proc, 70);
685: --
686: exception
687: --
688: when hr_api.validate_enabled then

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

734: l_validation_end_date date;
735: --
736: begin
737: --
738: hr_utility.set_location('Entering:'|| l_proc, 10);
739: --
740: ben_clr_shd.lck
741: (
742: p_comp_lvl_rt_id => p_comp_lvl_rt_id

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

746: ,p_effective_date => p_effective_date
747: ,p_datetrack_mode => p_datetrack_mode
748: );
749: --
750: hr_utility.set_location(' Leaving:'||l_proc, 70);
751: --
752: end lck;
753: --
754: end ben_COMP_LEVEL_RATE_api;