DBA Data[Home] [Help]

APPS.BEN_ACTUAL_PREMIUM_API dependencies on HR_UTILITY

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

91: l_object_version_number ben_actl_prem_f.object_version_number%TYPE;
92: --
93: begin
94: --
95: hr_utility.set_location('Entering:'|| l_proc, 10);
96: --
97: -- Issue a savepoint if operating in validation only mode
98: --
99: savepoint create_actual_premium;

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

97: -- Issue a savepoint if operating in validation only mode
98: --
99: savepoint create_actual_premium;
100: --
101: hr_utility.set_location(l_proc, 20);
102: --
103: -- Process Logic
104: --
105: begin

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

345: -- End of API User Hook for the after hook of create_actual_premium
346: --
347: end;
348: --
349: hr_utility.set_location(l_proc, 60);
350: --
351: -- When in validation only mode raise the Validate_Enabled exception
352: --
353: if p_validate then

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

360: p_effective_start_date := l_effective_start_date;
361: p_effective_end_date := l_effective_end_date;
362: p_object_version_number := l_object_version_number;
363: --
364: hr_utility.set_location(' Leaving:'||l_proc, 70);
365: --
366: exception
367: --
368: when hr_api.validate_enabled then

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

379: p_actl_prem_id := null;
380: p_effective_start_date := null;
381: p_effective_end_date := null;
382: p_object_version_number := null;
383: hr_utility.set_location(' Leaving:'||l_proc, 80);
384: --
385: when others then
386: --
387: -- A validation or unexpected error has occured

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

482:
483: --
484: begin
485: --
486: hr_utility.set_location('Entering:'|| l_proc, 10);
487: --
488: -- Issue a savepoint if operating in validation only mode
489: --
490: savepoint update_actual_premium;

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

488: -- Issue a savepoint if operating in validation only mode
489: --
490: savepoint update_actual_premium;
491: --
492: hr_utility.set_location(l_proc, 20);
493: --
494: -- Process Logic
495: --
496: l_object_version_number := p_object_version_number;

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

742: -- End of API User Hook for the after hook of update_actual_premium
743: --
744: end;
745: --
746: hr_utility.set_location(l_proc, 60);
747: --
748: -- When in validation only mode raise the Validate_Enabled exception
749: --
750: if p_validate then

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

756: p_object_version_number := l_object_version_number;
757: p_effective_start_date := l_effective_start_date;
758: p_effective_end_date := l_effective_end_date;
759: --
760: hr_utility.set_location(' Leaving:'||l_proc, 70);
761: --
762: exception
763: --
764: when hr_api.validate_enabled then

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

771: -- Only set output warning arguments
772: -- (Any key or derived arguments must be set to null
773: -- when validation only mode is being used.)
774: --
775: hr_utility.set_location(' Leaving:'||l_proc, 80);
776: --
777: when others then
778: --
779: -- A validation or unexpected error has occured

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

809: --
810: l_in_object_version_number number := p_object_version_number ;
811: begin
812: --
813: hr_utility.set_location('Entering:'|| l_proc, 10);
814: --
815: -- Issue a savepoint if operating in validation only mode
816: --
817: savepoint delete_actual_premium;

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

815: -- Issue a savepoint if operating in validation only mode
816: --
817: savepoint delete_actual_premium;
818: --
819: hr_utility.set_location(l_proc, 20);
820: --
821: -- Process Logic
822: --
823: l_object_version_number := p_object_version_number;

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

878: -- End of API User Hook for the after hook of delete_actual_premium
879: --
880: end;
881: --
882: hr_utility.set_location(l_proc, 60);
883: --
884: -- When in validation only mode raise the Validate_Enabled exception
885: --
886: if p_validate then

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

886: if p_validate then
887: raise hr_api.validate_enabled;
888: end if;
889: --
890: hr_utility.set_location(' Leaving:'||l_proc, 70);
891: --
892: exception
893: --
894: when hr_api.validate_enabled then

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

940: l_validation_end_date date;
941: --
942: begin
943: --
944: hr_utility.set_location('Entering:'|| l_proc, 10);
945: --
946: ben_apr_shd.lck
947: (
948: p_actl_prem_id => p_actl_prem_id

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

952: ,p_effective_date => p_effective_date
953: ,p_datetrack_mode => p_datetrack_mode
954: );
955: --
956: hr_utility.set_location(' Leaving:'||l_proc, 70);
957: --
958: end lck;
959: --
960: end ben_actual_premium_api;