DBA Data[Home] [Help]

APPS.BEN_COMP_LEVEL_FACTORS_API dependencies on HR_UTILITY

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

76: l_object_version_number ben_comp_lvl_fctr.object_version_number%TYPE;
77: --
78: begin
79: --
80: hr_utility.set_location('Entering:'|| l_proc, 10);
81: --
82: -- Issue a savepoint if operating in validation only mode
83: --
84: savepoint create_comp_level_factors;

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

82: -- Issue a savepoint if operating in validation only mode
83: --
84: savepoint create_comp_level_factors;
85: --
86: hr_utility.set_location(l_proc, 20);
87: --
88: -- Process Logic
89: --
90: begin

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

293: -- End of API User Hook for the after hook of create_comp_level_factors
294: --
295: end;
296: --
297: hr_utility.set_location(l_proc, 60);
298: --
299: -- When in validation only mode raise the Validate_Enabled exception
300: --
301: if p_validate then

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

306: --
307: p_comp_lvl_fctr_id := l_comp_lvl_fctr_id;
308: p_object_version_number := l_object_version_number;
309: --
310: hr_utility.set_location(' Leaving:'||l_proc, 70);
311: --
312: exception
313: --
314: when hr_api.validate_enabled then

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

323: -- when validation only mode is being used.)
324: --
325: p_comp_lvl_fctr_id := null;
326: p_object_version_number := null;
327: hr_utility.set_location(' Leaving:'||l_proc, 80);
328: --
329: when others then
330: --
331: -- A validation or unexpected error has occured

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

407: l_in_object_version_number number := p_object_version_number ;
408: --
409: begin
410: --
411: hr_utility.set_location('Entering:'|| l_proc, 10);
412: --
413: -- Issue a savepoint if operating in validation only mode
414: --
415: savepoint update_comp_level_factors;

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

413: -- Issue a savepoint if operating in validation only mode
414: --
415: savepoint update_comp_level_factors;
416: --
417: hr_utility.set_location(l_proc, 20);
418: --
419: -- Process Logic
420: --
421: l_object_version_number := p_object_version_number;

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

627: -- End of API User Hook for the after hook of update_comp_level_factors
628: --
629: end;
630: --
631: hr_utility.set_location(l_proc, 60);
632: --
633: -- When in validation only mode raise the Validate_Enabled exception
634: --
635: if p_validate then

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

639: -- Set all output arguments
640: --
641: p_object_version_number := l_object_version_number;
642: --
643: hr_utility.set_location(' Leaving:'||l_proc, 70);
644: --
645: exception
646: --
647: when hr_api.validate_enabled then

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

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

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

685: l_in_object_version_number number := p_object_version_number ;
686: --
687: begin
688: --
689: hr_utility.set_location('Entering:'|| l_proc, 10);
690: --
691: -- Issue a savepoint if operating in validation only mode
692: --
693: savepoint delete_comp_level_factors;

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

691: -- Issue a savepoint if operating in validation only mode
692: --
693: savepoint delete_comp_level_factors;
694: --
695: hr_utility.set_location(l_proc, 20);
696: --
697: -- Process Logic
698: --
699: l_object_version_number := p_object_version_number;

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

747: -- End of API User Hook for the after hook of delete_comp_level_factors
748: --
749: end;
750: --
751: hr_utility.set_location(l_proc, 60);
752: --
753: -- When in validation only mode raise the Validate_Enabled exception
754: --
755: if p_validate then

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

755: if p_validate then
756: raise hr_api.validate_enabled;
757: end if;
758: --
759: hr_utility.set_location(' Leaving:'||l_proc, 70);
760: --
761: exception
762: --
763: when hr_api.validate_enabled then

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

798: l_proc varchar2(72) := g_package||'lck';
799: --
800: begin
801: --
802: hr_utility.set_location('Entering:'|| l_proc, 10);
803: --
804: ben_clf_shd.lck
805: (
806: p_comp_lvl_fctr_id => p_comp_lvl_fctr_id

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

806: p_comp_lvl_fctr_id => p_comp_lvl_fctr_id
807: ,p_object_version_number => p_object_version_number
808: );
809: --
810: hr_utility.set_location(' Leaving:'||l_proc, 70);
811: --
812: end lck;
813: --
814: end ben_comp_level_factors_api;