DBA Data[Home] [Help]

APPS.BEN_APLD_DPNT_CVG_PRFL_API dependencies on HR_UTILITY

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

65: l_object_version_number ben_apld_dpnt_cvg_elig_prfl_f.object_version_number%TYPE;
66: --
67: begin
68: --
69: hr_utility.set_location('Entering:'|| l_proc, 10);
70: --
71: -- Issue a savepoint if operating in validation only mode
72: --
73: savepoint create_Apld_Dpnt_Cvg_Prfl;

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

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

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

241: -- End of API User Hook for the after hook of create_Apld_Dpnt_Cvg_Prfl
242: --
243: end;
244: --
245: hr_utility.set_location(l_proc, 60);
246: --
247: -- When in validation only mode raise the Validate_Enabled exception
248: --
249: if p_validate then

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

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

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

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

Line 290: hr_utility.set_location(' Leaving:'||l_proc, 90);

286: p_apld_dpnt_cvg_elig_prfl_id := null;
287: p_effective_start_date := null;
288: p_effective_end_date := null;
289: p_object_version_number := null ;
290: hr_utility.set_location(' Leaving:'||l_proc, 90);
291: raise;
292: --
293: end create_Apld_Dpnt_Cvg_Prfl;
294: -- ----------------------------------------------------------------------------

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

351: l_effective_end_date ben_apld_dpnt_cvg_elig_prfl_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_Apld_Dpnt_Cvg_Prfl;

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

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

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

533: -- End of API User Hook for the after hook of update_Apld_Dpnt_Cvg_Prfl
534: --
535: end;
536: --
537: hr_utility.set_location(l_proc, 60);
538: --
539: -- When in validation only mode raise the Validate_Enabled exception
540: --
541: if p_validate then

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

547: p_object_version_number := l_object_version_number;
548: p_effective_start_date := l_effective_start_date;
549: p_effective_end_date := l_effective_end_date;
550: --
551: hr_utility.set_location(' Leaving:'||l_proc, 70);
552: --
553: exception
554: --
555: when hr_api.validate_enabled then

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

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

Line 576: hr_utility.set_location(' Leaving:'||l_proc, 90);

572: ROLLBACK TO update_Apld_Dpnt_Cvg_Prfl;
573: p_effective_start_date := null;
574: p_effective_end_date := null;
575: p_object_version_number := l_object_version_number ;
576: hr_utility.set_location(' Leaving:'||l_proc, 90);
577: raise;
578: --
579: end update_Apld_Dpnt_Cvg_Prfl;
580: -- ----------------------------------------------------------------------------

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

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

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

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

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

668: -- End of API User Hook for the after hook of delete_Apld_Dpnt_Cvg_Prfl
669: --
670: end;
671: --
672: hr_utility.set_location(l_proc, 60);
673: --
674: -- When in validation only mode raise the Validate_Enabled exception
675: --
676: if p_validate then

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

676: if p_validate then
677: raise hr_api.validate_enabled;
678: end if;
679: --
680: hr_utility.set_location(' Leaving:'||l_proc, 70);
681: --
682: exception
683: --
684: when hr_api.validate_enabled then

Line 707: hr_utility.set_location(' Leaving:'||l_proc, 90);

703: -- NOCOPY Changes
704: p_effective_start_date := null;
705: p_effective_end_date := null;
706: p_object_version_number := l_object_version_number ;
707: hr_utility.set_location(' Leaving:'||l_proc, 90);
708: raise;
709: --
710: end delete_Apld_Dpnt_Cvg_Prfl;
711: --

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

731: l_validation_end_date date;
732: --
733: begin
734: --
735: hr_utility.set_location('Entering:'|| l_proc, 10);
736: --
737: ben_ade_shd.lck
738: (
739: p_apld_dpnt_cvg_elig_prfl_id => p_apld_dpnt_cvg_elig_prfl_id

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

743: ,p_effective_date => p_effective_date
744: ,p_datetrack_mode => p_datetrack_mode
745: );
746: --
747: hr_utility.set_location(' Leaving:'||l_proc, 70);
748: --
749: end lck;
750: --
751: end ben_Apld_Dpnt_Cvg_Prfl_api;