DBA Data[Home] [Help]

APPS.BEN_PLAN_TYPE_API dependencies on HR_UTILITY

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

73: l_object_version_number ben_pl_typ_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_PLAN_TYPE;

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

79: -- Issue a savepoint if operating in validation only mode
80: --
81: savepoint create_PLAN_TYPE;
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_PLAN_TYPE
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_pl_typ_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 404: hr_utility.set_location('Entering:'|| l_proc, 10);

400: and p_effective_date between plt.effective_start_date and plt.effective_end_date;
401: --
402: begin
403: --
404: hr_utility.set_location('Entering:'|| l_proc, 10);
405: --
406: -- Issue a savepoint if operating in validation only mode
407: --
408: savepoint update_PLAN_TYPE;

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

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

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

690: -- End of API User Hook for the after hook of update_PLAN_TYPE
691: --
692: end;
693: --
694: hr_utility.set_location(l_proc, 60);
695: --
696: -- When in validation only mode raise the Validate_Enabled exception
697: --
698: if p_validate then

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

704: p_object_version_number := l_object_version_number;
705: p_effective_start_date := l_effective_start_date;
706: p_effective_end_date := l_effective_end_date;
707: --
708: hr_utility.set_location(' Leaving:'||l_proc, 70);
709: --
710: exception
711: --
712: when hr_api.validate_enabled then

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

719: -- Only set output warning arguments
720: -- (Any key or derived arguments must be set to null
721: -- when validation only mode is being used.)
722: --
723: hr_utility.set_location(' Leaving:'||l_proc, 80);
724: --
725: when others then
726: --
727: -- A validation or unexpected error has occured

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

760: l_effective_end_date ben_pl_typ_f.effective_end_date%TYPE;
761: --
762: begin
763: --
764: hr_utility.set_location('Entering:'|| l_proc, 10);
765: --
766: -- Issue a savepoint if operating in validation only mode
767: --
768: savepoint delete_PLAN_TYPE;

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

766: -- Issue a savepoint if operating in validation only mode
767: --
768: savepoint delete_PLAN_TYPE;
769: --
770: hr_utility.set_location(l_proc, 20);
771: --
772: -- Process Logic
773: --
774: l_object_version_number := p_object_version_number;

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

829: -- End of API User Hook for the after hook of delete_PLAN_TYPE
830: --
831: end;
832: --
833: hr_utility.set_location(l_proc, 60);
834: --
835: -- When in validation only mode raise the Validate_Enabled exception
836: --
837: if p_validate then

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

837: if p_validate then
838: raise hr_api.validate_enabled;
839: end if;
840: --
841: hr_utility.set_location(' Leaving:'||l_proc, 70);
842: --
843: exception
844: --
845: when hr_api.validate_enabled then

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

894: l_validation_end_date date;
895: --
896: begin
897: --
898: hr_utility.set_location('Entering:'|| l_proc, 10);
899: --
900: ben_ptp_shd.lck
901: (
902: p_pl_typ_id => p_pl_typ_id

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

906: ,p_effective_date => p_effective_date
907: ,p_datetrack_mode => p_datetrack_mode
908: );
909: --
910: hr_utility.set_location(' Leaving:'||l_proc, 70);
911: --
912: end lck;
913: --
914: end ben_PLAN_TYPE_api;