DBA Data[Home] [Help]

APPS.BEN_ELIG_SUPPL_ROLE_PRTE_API dependencies on HR_UTILITY

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

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

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

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

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

254: p_base_table_reference_column => 'ELIG_LOA_RSN_FLAG',
255: p_reference_table => 'BEN_elig_suppl_role_prte_F',
256: p_reference_table_column => 'ELIGY_PRFL_ID');
257: --
258: hr_utility.set_location(l_proc, 60);
259: --
260: -- When in validation only mode raise the Validate_Enabled exception
261: --
262: if p_validate then

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

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

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

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

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

300: p_elig_suppl_role_prte_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: raise;
307: --
308: end create_elig_suppl_role_prte;

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

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

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

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

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

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

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

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

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

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

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

592: --
593: p_effective_start_date := null;
594: p_effective_end_date := null;
595: p_object_version_number := l_object_version_number;
596: hr_utility.set_location(' Leaving:'||l_proc, 80);
597: --
598: raise;
599: --
600: end update_elig_suppl_role_prte;

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

620: l_effective_end_date ben_elig_suppl_role_prte_f.effective_end_date%TYPE;
621: --
622: begin
623: --
624: hr_utility.set_location('Entering:'|| l_proc, 10);
625: --
626: -- Issue a savepoint if operating in validation only mode
627: --
628: savepoint delete_elig_suppl_role_prte;

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

626: -- Issue a savepoint if operating in validation only mode
627: --
628: savepoint delete_elig_suppl_role_prte;
629: --
630: hr_utility.set_location(l_proc, 20);
631: --
632: -- Process Logic
633: --
634: l_object_version_number := p_object_version_number;

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

698: p_base_table_reference_column => 'ELIG_LOA_RSN_FLAG',
699: p_reference_table => 'BEN_elig_suppl_role_prte_F',
700: p_reference_table_column => 'ELIGY_PRFL_ID');
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 737: hr_utility.set_location(' Leaving:'||l_proc, 80);

733: --
734: p_effective_start_date := null;
735: p_effective_end_date := null;
736: p_object_version_number := l_object_version_number;
737: hr_utility.set_location(' Leaving:'||l_proc, 80);
738: --
739: raise;
740: --
741: end delete_elig_suppl_role_prte;

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

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

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

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