DBA Data[Home] [Help]

APPS.BEN_ENROLLMENT_PERIOD_API dependencies on HR_UTILITY

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

99: l_object_version_number ben_enrt_perd.object_version_number%TYPE;
100: --
101: begin
102: --
103: hr_utility.set_location('Entering:'|| l_proc, 10);
104: --
105: -- Issue a savepoint if operating in validation only mode
106: --
107: savepoint create_Enrollment_Period;

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

105: -- Issue a savepoint if operating in validation only mode
106: --
107: savepoint create_Enrollment_Period;
108: --
109: hr_utility.set_location(l_proc, 20);
110: --
111: -- Process Logic
112: --
113: begin

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

384: -- End of API User Hook for the after hook of create_Enrollment_Period
385: --
386: end;
387: --
388: hr_utility.set_location(l_proc, 60);
389: --
390: -- When in validation only mode raise the Validate_Enabled exception
391: --
392: if p_validate then

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

397: --
398: p_enrt_perd_id := l_enrt_perd_id;
399: p_object_version_number := l_object_version_number;
400: --
401: hr_utility.set_location(' Leaving:'||l_proc, 70);
402: --
403: exception
404: --
405: when hr_api.validate_enabled then

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

414: -- when validation only mode is being used.)
415: --
416: p_enrt_perd_id := null;
417: p_object_version_number := null;
418: hr_utility.set_location(' Leaving:'||l_proc, 80);
419: --
420: when others then
421: --
422: -- A validation or unexpected error has occured

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

520: l_object_version_number ben_enrt_perd.object_version_number%TYPE;
521: --
522: begin
523: --
524: hr_utility.set_location('Entering:'|| l_proc, 10);
525: --
526: -- Issue a savepoint if operating in validation only mode
527: --
528: savepoint update_Enrollment_Period;

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

526: -- Issue a savepoint if operating in validation only mode
527: --
528: savepoint update_Enrollment_Period;
529: --
530: hr_utility.set_location(l_proc, 20);
531: --
532: -- Process Logic
533: --
534: l_object_version_number := p_object_version_number;

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

809: -- End of API User Hook for the after hook of update_Enrollment_Period
810: --
811: end;
812: --
813: hr_utility.set_location(l_proc, 60);
814: --
815: -- When in validation only mode raise the Validate_Enabled exception
816: --
817: if p_validate then

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

821: -- Set all output arguments
822: --
823: p_object_version_number := l_object_version_number;
824: --
825: hr_utility.set_location(' Leaving:'||l_proc, 70);
826: --
827: exception
828: --
829: when hr_api.validate_enabled then

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

836: -- Only set output warning arguments
837: -- (Any key or derived arguments must be set to null
838: -- when validation only mode is being used.)
839: --
840: hr_utility.set_location(' Leaving:'||l_proc, 80);
841: --
842: when others then
843: --
844: -- A validation or unexpected error has occured

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

864: l_object_version_number ben_enrt_perd.object_version_number%TYPE;
865: --
866: begin
867: --
868: hr_utility.set_location('Entering:'|| l_proc, 10);
869: --
870: -- Issue a savepoint if operating in validation only mode
871: --
872: savepoint delete_Enrollment_Period;

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

870: -- Issue a savepoint if operating in validation only mode
871: --
872: savepoint delete_Enrollment_Period;
873: --
874: hr_utility.set_location(l_proc, 20);
875: --
876: -- Process Logic
877: --
878: l_object_version_number := p_object_version_number;

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

926: -- End of API User Hook for the after hook of delete_Enrollment_Period
927: --
928: end;
929: --
930: hr_utility.set_location(l_proc, 60);
931: --
932: -- When in validation only mode raise the Validate_Enabled exception
933: --
934: if p_validate then

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

934: if p_validate then
935: raise hr_api.validate_enabled;
936: end if;
937: --
938: hr_utility.set_location(' Leaving:'||l_proc, 70);
939: --
940: exception
941: --
942: when hr_api.validate_enabled then

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

976: l_proc varchar2(72) := g_package||'lck';
977: --
978: begin
979: --
980: hr_utility.set_location('Entering:'|| l_proc, 10);
981: --
982: ben_enp_shd.lck
983: (
984: p_enrt_perd_id => p_enrt_perd_id

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

984: p_enrt_perd_id => p_enrt_perd_id
985: ,p_object_version_number => p_object_version_number
986: );
987: --
988: hr_utility.set_location(' Leaving:'||l_proc, 70);
989: --
990: end lck;
991: --
992: end ben_Enrollment_Period_api;