DBA Data[Home] [Help]

APPS.BEN_OPTION_DEFINITION_API dependencies on HR_UTILITY

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

73: l_object_version_number ben_opt_f.object_version_number%TYPE;
74: --
75: begin
76: --
77: hr_utility.set_location('Entering:'|| l_proc, 10);
78: --
79: -- Issue a savepoint if operating in validation only mode
80: --
81: savepoint create_option_definition;

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

79: -- Issue a savepoint if operating in validation only mode
80: --
81: savepoint create_option_definition;
82: --
83: hr_utility.set_location(l_proc, 20);
84: --
85: -- Process Logic
86: --
87: begin

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

273: -- End of API User Hook for the after hook of create_option_definition
274: --
275: end;
276: --
277: hr_utility.set_location(l_proc, 60);
278: --
279: -- When in validation only mode raise the Validate_Enabled exception
280: --
281: if p_validate then

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

288: p_effective_start_date := l_effective_start_date;
289: p_effective_end_date := l_effective_end_date;
290: p_object_version_number := l_object_version_number;
291: --
292: hr_utility.set_location(' Leaving:'||l_proc, 70);
293: --
294: exception
295: --
296: when hr_api.validate_enabled then

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

307: p_opt_id := null;
308: p_effective_start_date := null;
309: p_effective_end_date := null;
310: p_object_version_number := null;
311: hr_utility.set_location(' Leaving:'||l_proc, 80);
312: --
313: when others then
314: --
315: -- A validation or unexpected error has occured

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

401: l_count_cwb_pl_typ number;
402:
403: begin
404: --
405: hr_utility.set_location('Entering:'|| l_proc, 10);
406: --
407: -- Issue a savepoint if operating in validation only mode
408: --
409: savepoint update_option_definition;

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

407: -- Issue a savepoint if operating in validation only mode
408: --
409: savepoint update_option_definition;
410: --
411: hr_utility.set_location(l_proc, 20);
412: --
413: -- Process Logic
414: --
415: l_object_version_number := p_object_version_number;

Line 426: hr_utility.set_location(' cwb count '|| l_count_cwb_pl_typ , 60);

422:
423: open c_ptp (p_opt_id ) ;
424: fetch c_ptp into l_count_cwb_pl_typ ;
425: close c_ptp ;
426: hr_utility.set_location(' cwb count '|| l_count_cwb_pl_typ , 60);
427: if l_count_cwb_pl_typ > 0 then
428: l_group_opt_id := p_opt_id ;
429: end if ;
430:

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

623: -- End of API User Hook for the after hook of update_option_definition
624: --
625: end;
626: --
627: hr_utility.set_location(l_proc, 60);
628: --
629: -- When in validation only mode raise the Validate_Enabled exception
630: --
631: if p_validate then

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

637: p_object_version_number := l_object_version_number;
638: p_effective_start_date := l_effective_start_date;
639: p_effective_end_date := l_effective_end_date;
640: --
641: hr_utility.set_location(' Leaving:'||l_proc, 70);
642: --
643: exception
644: --
645: when hr_api.validate_enabled then

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

652: -- Only set output warning arguments
653: -- (Any key or derived arguments must be set to null
654: -- when validation only mode is being used.)
655: --
656: hr_utility.set_location(' Leaving:'||l_proc, 80);
657: --
658: when others then
659: --
660: -- A validation or unexpected error has occured

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

690: l_effective_end_date ben_opt_f.effective_end_date%TYPE;
691: --
692: begin
693: --
694: hr_utility.set_location('Entering:'|| l_proc, 10);
695: --
696: -- Issue a savepoint if operating in validation only mode
697: --
698: savepoint delete_option_definition;

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

696: -- Issue a savepoint if operating in validation only mode
697: --
698: savepoint delete_option_definition;
699: --
700: hr_utility.set_location(l_proc, 20);
701: --
702: -- Process Logic
703: --
704: l_object_version_number := p_object_version_number;

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

759: -- End of API User Hook for the after hook of delete_option_definition
760: --
761: end;
762: --
763: hr_utility.set_location(l_proc, 60);
764: --
765: -- When in validation only mode raise the Validate_Enabled exception
766: --
767: if p_validate then

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

767: if p_validate then
768: raise hr_api.validate_enabled;
769: end if;
770: --
771: hr_utility.set_location(' Leaving:'||l_proc, 70);
772: --
773: exception
774: --
775: when hr_api.validate_enabled then

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

823: l_validation_end_date date;
824: --
825: begin
826: --
827: hr_utility.set_location('Entering:'|| l_proc, 10);
828: --
829: ben_opt_shd.lck
830: (
831: p_opt_id => p_opt_id

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

835: ,p_effective_date => p_effective_date
836: ,p_datetrack_mode => p_datetrack_mode
837: );
838: --
839: hr_utility.set_location(' Leaving:'||l_proc, 70);
840: --
841: end lck;
842: --
843: end ben_option_definition_api;