DBA Data[Home] [Help]

APPS.BEN_ELIG_COMP_LVL_PRTE_API dependencies on HR_UTILITY

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

65: l_object_version_number ben_elig_comp_lvl_prte_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_ELIG_COMP_LVL_PRTE;

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

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

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

255: (p_event => 'CREATE',
256: p_eligy_prfl_id => p_eligy_prfl_id);
257: --
258:
259: hr_utility.set_location(l_proc, 60);
260: --
261: -- When in validation only mode raise the Validate_Enabled exception
262: --
263: if p_validate then

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

270: p_effective_start_date := l_effective_start_date;
271: p_effective_end_date := l_effective_end_date;
272: p_object_version_number := l_object_version_number;
273: --
274: hr_utility.set_location(' Leaving:'||l_proc, 70);
275: --
276: exception
277: --
278: when hr_api.validate_enabled then

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

289: p_elig_comp_lvl_prte_id := null;
290: p_effective_start_date := null;
291: p_effective_end_date := null;
292: p_object_version_number := null;
293: hr_utility.set_location(' Leaving:'||l_proc, 80);
294: --
295: when others then
296: --
297: -- A validation or unexpected error has occured

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

299: p_elig_comp_lvl_prte_id := null;
300: p_effective_start_date := null;
301: p_effective_end_date := null;
302: p_object_version_number := null;
303: hr_utility.set_location(' Leaving:'||l_proc, 80);
304: --
305: ROLLBACK TO create_ELIG_COMP_LVL_PRTE;
306: raise;
307: --

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

366: l_effective_end_date ben_elig_comp_lvl_prte_f.effective_end_date%TYPE;
367: --
368: begin
369: --
370: hr_utility.set_location('Entering:'|| l_proc, 10);
371: --
372: -- Issue a savepoint if operating in validation only mode
373: --
374: savepoint update_ELIG_COMP_LVL_PRTE;

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

372: -- Issue a savepoint if operating in validation only mode
373: --
374: savepoint update_ELIG_COMP_LVL_PRTE;
375: --
376: hr_utility.set_location(l_proc, 20);
377: --
378: -- Process Logic
379: --
380: l_object_version_number := p_object_version_number;

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

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

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

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

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

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

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

586: --
587: p_effective_start_date := null;
588: p_effective_end_date := null;
589: p_object_version_number := l_object_version_number;
590: hr_utility.set_location(' Leaving:'||l_proc, 80);
591: --
592: ROLLBACK TO update_ELIG_COMP_LVL_PRTE;
593: raise;
594: --

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

615: l_effective_end_date ben_elig_comp_lvl_prte_f.effective_end_date%TYPE;
616: --
617: begin
618: --
619: hr_utility.set_location('Entering:'|| l_proc, 10);
620: --
621: -- Issue a savepoint if operating in validation only mode
622: --
623: savepoint delete_ELIG_COMP_LVL_PRTE;

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

621: -- Issue a savepoint if operating in validation only mode
622: --
623: savepoint delete_ELIG_COMP_LVL_PRTE;
624: --
625: hr_utility.set_location(l_proc, 20);
626: --
627: -- Process Logic
628: --
629: l_object_version_number := p_object_version_number;

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

698: (p_event => 'DELETE',
699: p_eligy_prfl_id => ben_ecl_shd.g_old_rec.eligy_prfl_id);
700: --
701:
702: hr_utility.set_location(l_proc, 60);
703: --
704: -- When in validation only mode raise the Validate_Enabled exception
705: --
706: if p_validate then

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

706: if p_validate then
707: raise hr_api.validate_enabled;
708: end if;
709: --
710: hr_utility.set_location(' Leaving:'||l_proc, 70);
711: --
712: exception
713: --
714: when hr_api.validate_enabled then

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

731: --
732: p_effective_start_date := null;
733: p_effective_end_date := null;
734: p_object_version_number := l_object_version_number;
735: hr_utility.set_location(' Leaving:'||l_proc, 80);
736: --
737: ROLLBACK TO delete_ELIG_COMP_LVL_PRTE;
738: raise;
739: --

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

761: l_validation_end_date date;
762: --
763: begin
764: --
765: hr_utility.set_location('Entering:'|| l_proc, 10);
766: --
767: ben_ecl_shd.lck
768: (
769: p_elig_comp_lvl_prte_id => p_elig_comp_lvl_prte_id

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

773: ,p_effective_date => p_effective_date
774: ,p_datetrack_mode => p_datetrack_mode
775: );
776: --
777: hr_utility.set_location(' Leaving:'||l_proc, 70);
778: --
779: end lck;
780: --
781: end ben_ELIG_COMP_LVL_PRTE_api;