DBA Data[Home] [Help]

APPS.BEN_AGE_RATES_API dependencies on HR_UTILITY

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

63: l_object_version_number ben_age_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_age_rates;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

556: -- when validation only mode is being used.)
557: --
558: p_effective_start_date := null;
559: p_effective_end_date := null;
560: hr_utility.set_location(' Leaving:'||l_proc, 80);
561: --
562: when others then
563: --
564: -- A validation or unexpected error has occured

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

593: l_effective_end_date ben_age_rt_f.effective_end_date%TYPE;
594: --
595: begin
596: --
597: hr_utility.set_location('Entering:'|| l_proc, 10);
598: --
599: -- Issue a savepoint if operating in validation only mode
600: --
601: savepoint delete_age_rates;

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

599: -- Issue a savepoint if operating in validation only mode
600: --
601: savepoint delete_age_rates;
602: --
603: hr_utility.set_location(l_proc, 20);
604: --
605: -- Process Logic
606: --
607: l_object_version_number := p_object_version_number;

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

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

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

682: if p_validate then
683: raise hr_api.validate_enabled;
684: end if;
685: --
686: hr_utility.set_location(' Leaving:'||l_proc, 70);
687: --
688: exception
689: --
690: 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_art_shd.lck
741: (
742: p_age_rt_id => p_age_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_age_rates_api;