DBA Data[Home] [Help]

APPS.BEN_PAYROLL_RATE_API dependencies on HR_UTILITY

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

63: l_object_version_number ben_pyrl_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_PAYROLL_RATE;

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

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

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

242: p_base_table_reference_column => 'RT_PYRL_FLAG',
243: p_reference_table => 'BEN_PYRL_RT_F',
244: p_reference_table_column => 'VRBL_RT_PRFL_ID');
245: --
246: hr_utility.set_location(l_proc, 60);
247: --
248: -- When in validation only mode raise the Validate_Enabled exception
249: --
250: if p_validate then

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

598: l_effective_end_date ben_pyrl_rt_f.effective_end_date%TYPE;
599: --
600: begin
601: --
602: hr_utility.set_location('Entering:'|| l_proc, 10);
603: --
604: -- Issue a savepoint if operating in validation only mode
605: --
606: savepoint delete_PAYROLL_RATE;

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

604: -- Issue a savepoint if operating in validation only mode
605: --
606: savepoint delete_PAYROLL_RATE;
607: --
608: hr_utility.set_location(l_proc, 20);
609: --
610: -- Process Logic
611: --
612: l_object_version_number := p_object_version_number;

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

676: p_base_table_reference_column => 'RT_PYRL_FLAG',
677: p_reference_table => 'BEN_PYRL_RT_F',
678: p_reference_table_column => 'VRBL_RT_PRFL_ID');
679: --
680: hr_utility.set_location(l_proc, 60);
681: --
682: -- When in validation only mode raise the Validate_Enabled exception
683: --
684: if p_validate then

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

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

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

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

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

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