DBA Data[Home] [Help]

APPS.BEN_ENROLLMENT_PERIOD_API dependencies on HR_UTILITY

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

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

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

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

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

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

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

393: --
394: p_enrt_perd_id := l_enrt_perd_id;
395: p_object_version_number := l_object_version_number;
396: --
397: hr_utility.set_location(' Leaving:'||l_proc, 70);
398: --
399: exception
400: --
401: when hr_api.validate_enabled then

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

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

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

515: l_object_version_number ben_enrt_perd.object_version_number%TYPE;
516: --
517: begin
518: --
519: hr_utility.set_location('Entering:'|| l_proc, 10);
520: --
521: -- Issue a savepoint if operating in validation only mode
522: --
523: savepoint update_Enrollment_Period;

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

521: -- Issue a savepoint if operating in validation only mode
522: --
523: savepoint update_Enrollment_Period;
524: --
525: hr_utility.set_location(l_proc, 20);
526: --
527: -- Process Logic
528: --
529: l_object_version_number := p_object_version_number;

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

801: -- End of API User Hook for the after hook of update_Enrollment_Period
802: --
803: end;
804: --
805: hr_utility.set_location(l_proc, 60);
806: --
807: -- When in validation only mode raise the Validate_Enabled exception
808: --
809: if p_validate then

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

813: -- Set all output arguments
814: --
815: p_object_version_number := l_object_version_number;
816: --
817: hr_utility.set_location(' Leaving:'||l_proc, 70);
818: --
819: exception
820: --
821: when hr_api.validate_enabled then

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

828: -- Only set output warning arguments
829: -- (Any key or derived arguments must be set to null
830: -- when validation only mode is being used.)
831: --
832: hr_utility.set_location(' Leaving:'||l_proc, 80);
833: --
834: when others then
835: --
836: -- A validation or unexpected error has occured

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

856: l_object_version_number ben_enrt_perd.object_version_number%TYPE;
857: --
858: begin
859: --
860: hr_utility.set_location('Entering:'|| l_proc, 10);
861: --
862: -- Issue a savepoint if operating in validation only mode
863: --
864: savepoint delete_Enrollment_Period;

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

862: -- Issue a savepoint if operating in validation only mode
863: --
864: savepoint delete_Enrollment_Period;
865: --
866: hr_utility.set_location(l_proc, 20);
867: --
868: -- Process Logic
869: --
870: l_object_version_number := p_object_version_number;

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

918: -- End of API User Hook for the after hook of delete_Enrollment_Period
919: --
920: end;
921: --
922: hr_utility.set_location(l_proc, 60);
923: --
924: -- When in validation only mode raise the Validate_Enabled exception
925: --
926: if p_validate then

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

926: if p_validate then
927: raise hr_api.validate_enabled;
928: end if;
929: --
930: hr_utility.set_location(' Leaving:'||l_proc, 70);
931: --
932: exception
933: --
934: when hr_api.validate_enabled then

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

968: l_proc varchar2(72) := g_package||'lck';
969: --
970: begin
971: --
972: hr_utility.set_location('Entering:'|| l_proc, 10);
973: --
974: ben_enp_shd.lck
975: (
976: p_enrt_perd_id => p_enrt_perd_id

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

976: p_enrt_perd_id => p_enrt_perd_id
977: ,p_object_version_number => p_object_version_number
978: );
979: --
980: hr_utility.set_location(' Leaving:'||l_proc, 70);
981: --
982: end lck;
983: --
984: end ben_Enrollment_Period_api;