DBA Data[Home] [Help]

APPS.BEN_ACTY_VRBL_RATE_API dependencies on HR_UTILITY

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

76: l_object_version_number ben_acty_vrbl_rt_f.object_version_number%TYPE;
77: --
78: begin
79: --
80: hr_utility.set_location('Entering:'|| l_proc, 10);
81: --
82: -- Issue a savepoint if operating in validation only mode
83: --
84: savepoint create_acty_vrbl_rate;

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

82: -- Issue a savepoint if operating in validation only mode
83: --
84: savepoint create_acty_vrbl_rate;
85: --
86: hr_utility.set_location(l_proc, 20);
87: --
88: -- Process Logic
89: --
90: begin

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

266: --END Option Level Rates
267: --
268: end if;
269: --
270: hr_utility.set_location(l_proc, 60);
271: --
272: -- When in validation only mode raise the Validate_Enabled exception
273: --
274: if p_validate then

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

281: p_effective_start_date := l_effective_start_date;
282: p_effective_end_date := l_effective_end_date;
283: p_object_version_number := l_object_version_number;
284: --
285: hr_utility.set_location(' Leaving:'||l_proc, 70);
286: --
287: exception
288: --
289: when hr_api.validate_enabled then

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

300: p_acty_vrbl_rt_id := null;
301: p_effective_start_date := null;
302: p_effective_end_date := null;
303: p_object_version_number := null;
304: hr_utility.set_location(' Leaving:'||l_proc, 80);
305: --
306: when others then
307: --
308: -- A validation or unexpected error has occured

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

376: l_effective_end_date ben_acty_vrbl_rt_f.effective_end_date%TYPE;
377: --
378: begin
379: --
380: hr_utility.set_location('Entering:'|| l_proc, 10);
381: --
382: -- Issue a savepoint if operating in validation only mode
383: --
384: savepoint update_acty_vrbl_rate;

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

382: -- Issue a savepoint if operating in validation only mode
383: --
384: savepoint update_acty_vrbl_rate;
385: --
386: hr_utility.set_location(l_proc, 20);
387: --
388: -- Process Logic
389: --
390: l_object_version_number := p_object_version_number;

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

549: -- End of API User Hook for the after hook of update_acty_vrbl_rate
550: --
551: end;
552: --
553: hr_utility.set_location(l_proc, 60);
554: --
555: -- When in validation only mode raise the Validate_Enabled exception
556: --
557: if p_validate then

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

563: p_object_version_number := l_object_version_number;
564: p_effective_start_date := l_effective_start_date;
565: p_effective_end_date := l_effective_end_date;
566: --
567: hr_utility.set_location(' Leaving:'||l_proc, 70);
568: --
569: exception
570: --
571: when hr_api.validate_enabled then

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

578: -- Only set output warning arguments
579: -- (Any key or derived arguments must be set to null
580: -- when validation only mode is being used.)
581: --
582: hr_utility.set_location(' Leaving:'||l_proc, 80);
583: --
584: when others then
585: --
586: -- A validation or unexpected error has occured

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

639: l_effective_end_date ben_acty_vrbl_rt_f.effective_end_date%TYPE;
640: --
641: begin
642: --
643: hr_utility.set_location('Entering:'|| l_proc, 10);
644: --
645: -- Issue a savepoint if operating in validation only mode
646: --
647: savepoint delete_acty_vrbl_rate;

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

645: -- Issue a savepoint if operating in validation only mode
646: --
647: savepoint delete_acty_vrbl_rate;
648: --
649: hr_utility.set_location(l_proc, 20);
650: open c1;
651: fetch c1 into l_c1;
652: close c1;
653: --

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

731: end loop ;
732: --
733: end if;
734: --
735: hr_utility.set_location(l_proc, 60);
736: --
737: -- When in validation only mode raise the Validate_Enabled exception
738: --
739: if p_validate then

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

739: if p_validate then
740: raise hr_api.validate_enabled;
741: end if;
742: --
743: hr_utility.set_location(' Leaving:'||l_proc, 70);
744: --
745: exception
746: --
747: when hr_api.validate_enabled then

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

796: l_validation_end_date date;
797: --
798: begin
799: --
800: hr_utility.set_location('Entering:'|| l_proc, 10);
801: --
802: ben_avr_shd.lck
803: (
804: p_acty_vrbl_rt_id => p_acty_vrbl_rt_id

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

808: ,p_effective_date => p_effective_date
809: ,p_datetrack_mode => p_datetrack_mode
810: );
811: --
812: hr_utility.set_location(' Leaving:'||l_proc, 70);
813: --
814: end lck;
815: --
816: end ben_acty_vrbl_rate_api;