DBA Data[Home] [Help]

APPS.BEN_ELIGIBILITY_RULE_API dependencies on HR_UTILITY

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

70: l_object_version_number ben_prtn_eligy_rl_f.object_version_number%TYPE;
71: --
72: begin
73: --
74: hr_utility.set_location('Entering:'|| l_proc, 10);
75: --
76: -- Issue a savepoint if operating in validation only mode
77: --
78: savepoint create_ELIGIBILITY_RULE;

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

76: -- Issue a savepoint if operating in validation only mode
77: --
78: savepoint create_ELIGIBILITY_RULE;
79: --
80: hr_utility.set_location(l_proc, 20);
81: --
82: -- Process Logic
83: --
84: if p_prtn_elig_id is null then

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

315: where b.prtn_eligy_rl_id = l_prtn_eligy_rl_id
316: and a.prtn_elig_id = b.prtn_elig_id
317: and a.oipl_id = c.oipl_id);
318: --
319: hr_utility.set_location(l_proc, 60);
320: --
321: -- When in validation only mode raise the Validate_Enabled exception
322: --
323: if p_validate then

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

330: p_effective_start_date := l_effective_start_date;
331: p_effective_end_date := l_effective_end_date;
332: p_object_version_number := l_object_version_number;
333: --
334: hr_utility.set_location(' Leaving:'||l_proc, 70);
335: --
336: exception
337: --
338: when hr_api.validate_enabled then

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

349: p_prtn_eligy_rl_id := null;
350: p_effective_start_date := null;
351: p_effective_end_date := null;
352: p_object_version_number := null;
353: hr_utility.set_location(' Leaving:'||l_proc, 80);
354: --
355: when others then
356: --
357: -- A validation or unexpected error has occured

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

419: l_effective_end_date ben_prtn_eligy_rl_f.effective_end_date%TYPE;
420: --
421: begin
422: --
423: hr_utility.set_location('Entering:'|| l_proc, 10);
424: --
425: -- Issue a savepoint if operating in validation only mode
426: --
427: savepoint update_ELIGIBILITY_RULE;

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

425: -- Issue a savepoint if operating in validation only mode
426: --
427: savepoint update_ELIGIBILITY_RULE;
428: --
429: hr_utility.set_location(l_proc, 20);
430: --
431: -- Process Logic
432: --
433: l_object_version_number := p_object_version_number;

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

598: -- End of API User Hook for the after hook of update_ELIGIBILITY_RULE
599: --
600: end;
601: --
602: hr_utility.set_location(l_proc, 60);
603: --
604: -- When in validation only mode raise the Validate_Enabled exception
605: --
606: if p_validate then

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

612: p_object_version_number := l_object_version_number;
613: p_effective_start_date := l_effective_start_date;
614: p_effective_end_date := l_effective_end_date;
615: --
616: hr_utility.set_location(' Leaving:'||l_proc, 70);
617: --
618: exception
619: --
620: when hr_api.validate_enabled then

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

627: -- Only set output warning arguments
628: -- (Any key or derived arguments must be set to null
629: -- when validation only mode is being used.)
630: --
631: hr_utility.set_location(' Leaving:'||l_proc, 80);
632: --
633: when others then
634: --
635: -- A validation or unexpected error has occured

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

680: open c1;
681: fetch c1 into l_c1;
682: close c1;
683: --
684: hr_utility.set_location('Entering:'|| l_proc, 10);
685: --
686: -- Issue a savepoint if operating in validation only mode
687: --
688: savepoint delete_ELIGIBILITY_RULE;

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

686: -- Issue a savepoint if operating in validation only mode
687: --
688: savepoint delete_ELIGIBILITY_RULE;
689: --
690: hr_utility.set_location(l_proc, 20);
691: --
692: -- Process Logic
693: --
694: l_object_version_number := p_object_version_number;

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

852: and c.oipl_id = l_c1.oipl_id;
853: --
854: end if;
855: --
856: hr_utility.set_location(l_proc, 60);
857: --
858: -- When in validation only mode raise the Validate_Enabled exception
859: --
860: if p_validate then

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

860: if p_validate then
861: raise hr_api.validate_enabled;
862: end if;
863: --
864: hr_utility.set_location(' Leaving:'||l_proc, 70);
865: --
866: exception
867: --
868: when hr_api.validate_enabled then

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

914: l_validation_end_date date;
915: --
916: begin
917: --
918: hr_utility.set_location('Entering:'|| l_proc, 10);
919: --
920: ben_cer_shd.lck
921: (
922: p_prtn_eligy_rl_id => p_prtn_eligy_rl_id

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

926: ,p_effective_date => p_effective_date
927: ,p_datetrack_mode => p_datetrack_mode
928: );
929: --
930: hr_utility.set_location(' Leaving:'||l_proc, 70);
931: --
932: end lck;
933: --
934: end ben_ELIGIBILITY_RULE_api;