DBA Data[Home] [Help]

APPS.PQH_PTX_EXTRA_INFO_API dependencies on HR_UTILITY

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

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

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

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

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

297: -- End of API User Hook for the after hook of create_ptx_extra_info
298: --
299: end;
300: --
301: hr_utility.set_location(l_proc, 60);
302: --
303: -- When in validation only mode raise the Validate_Enabled exception
304: --
305: if p_validate then

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

310: --
311: p_ptx_extra_info_id := l_ptx_extra_info_id;
312: p_object_version_number := l_object_version_number;
313: --
314: hr_utility.set_location(' Leaving:'||l_proc, 70);
315: --
316: exception
317: --
318: when hr_api.validate_enabled then

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

327: -- when validation only mode is being used.)
328: --
329: p_ptx_extra_info_id := null;
330: p_object_version_number := null;
331: hr_utility.set_location(' Leaving:'||l_proc, 80);
332: --
333: when others then
334: p_ptx_extra_info_id := null;
335: p_object_version_number := null;

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

411: l_object_version_number pqh_ptx_extra_info.object_version_number%TYPE;
412: --
413: begin
414: --
415: hr_utility.set_location('Entering:'|| l_proc, 10);
416: --
417: -- Issue a savepoint if operating in validation only mode
418: --
419: savepoint update_ptx_extra_info;

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

417: -- Issue a savepoint if operating in validation only mode
418: --
419: savepoint update_ptx_extra_info;
420: --
421: hr_utility.set_location(l_proc, 20);
422: --
423: -- Process Logic
424: --
425: l_object_version_number := p_object_version_number;

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

634: -- End of API User Hook for the after hook of update_ptx_extra_info
635: --
636: end;
637: --
638: hr_utility.set_location(l_proc, 60);
639: --
640: -- When in validation only mode raise the Validate_Enabled exception
641: --
642: if p_validate then

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

646: -- Set all output arguments
647: --
648: p_object_version_number := l_object_version_number;
649: --
650: hr_utility.set_location(' Leaving:'||l_proc, 70);
651: --
652: exception
653: --
654: when hr_api.validate_enabled then

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

661: -- Only set output warning arguments
662: -- (Any key or derived arguments must be set to null
663: -- when validation only mode is being used.)
664: --
665: hr_utility.set_location(' Leaving:'||l_proc, 80);
666: --
667: when others then
668: p_object_version_number := l_object_version_number;
669: --

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

689: l_object_version_number pqh_ptx_extra_info.object_version_number%TYPE;
690: --
691: begin
692: --
693: hr_utility.set_location('Entering:'|| l_proc, 10);
694: --
695: -- Issue a savepoint if operating in validation only mode
696: --
697: savepoint delete_ptx_extra_info;

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

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

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

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

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

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

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

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

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

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