DBA Data[Home] [Help]

APPS.BEN_PCT_FULL_TIME_RATE_API dependencies on HR_UTILITY

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

63: l_object_version_number ben_pct_fl_tm_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_PCT_FULL_TIME_RATE;

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

69: -- Issue a savepoint if operating in validation only mode
70: --
71: savepoint create_PCT_FULL_TIME_RATE;
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_pct_fl_tm_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 357: hr_utility.set_location('Entering:'|| l_proc, 10);

353: l_effective_end_date ben_pct_fl_tm_rt_f.effective_end_date%TYPE;
354: --
355: begin
356: --
357: hr_utility.set_location('Entering:'|| l_proc, 10);
358: --
359: -- Issue a savepoint if operating in validation only mode
360: --
361: savepoint update_PCT_FULL_TIME_RATE;

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

359: -- Issue a savepoint if operating in validation only mode
360: --
361: savepoint update_PCT_FULL_TIME_RATE;
362: --
363: hr_utility.set_location(l_proc, 20);
364: --
365: -- Process Logic
366: --
367: l_object_version_number := p_object_version_number;

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

529: -- End of API User Hook for the after hook of update_PCT_FULL_TIME_RATE
530: --
531: end;
532: --
533: hr_utility.set_location(l_proc, 60);
534: --
535: -- When in validation only mode raise the Validate_Enabled exception
536: --
537: if p_validate then

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

543: p_object_version_number := l_object_version_number;
544: p_effective_start_date := l_effective_start_date;
545: p_effective_end_date := l_effective_end_date;
546: --
547: hr_utility.set_location(' Leaving:'||l_proc, 70);
548: --
549: exception
550: --
551: when hr_api.validate_enabled then

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

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

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

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

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

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

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

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

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

685: if p_validate then
686: raise hr_api.validate_enabled;
687: end if;
688: --
689: hr_utility.set_location(' Leaving:'||l_proc, 70);
690: --
691: exception
692: --
693: when hr_api.validate_enabled then

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

739: l_validation_end_date date;
740: --
741: begin
742: --
743: hr_utility.set_location('Entering:'|| l_proc, 10);
744: --
745: ben_pfr_shd.lck
746: (
747: p_pct_fl_tm_rt_id => p_pct_fl_tm_rt_id

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

751: ,p_effective_date => p_effective_date
752: ,p_datetrack_mode => p_datetrack_mode
753: );
754: --
755: hr_utility.set_location(' Leaving:'||l_proc, 70);
756: --
757: end lck;
758: --
759: end ben_PCT_FULL_TIME_RATE_api;