DBA Data[Home] [Help]

APPS.PER_HIERARCHY_VERSIONS_API dependencies on HR_UTILITY

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

108: l_dummy number;
109: --
110: begin
111: --
112: hr_utility.set_location('Entering:'|| l_proc, 10);
113: --
114: -- Issue a savepoint if operating in validation only mode
115: --
116: savepoint create_hierarchy_versions;

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

114: -- Issue a savepoint if operating in validation only mode
115: --
116: savepoint create_hierarchy_versions;
117: --
118: hr_utility.set_location(l_proc, 20);
119: --
120: -- Process Logic
121: --
122:

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

401: -- End of API User Hook for the after hook of create_hierarchy_versions
402: --
403: end;
404: --
405: hr_utility.set_location(l_proc, 60);
406: --
407: -- When in validation only mode raise the Validate_Enabled exception
408: --
409: if p_validate then

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

414: --
415: p_hierarchy_version_id := l_hierarchy_version_id;
416: p_object_version_number := l_object_version_number;
417: --
418: hr_utility.set_location(' Leaving:'||l_proc, 70);
419: --
420: exception
421: --
422: when hr_api.validate_enabled then

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

431: -- when validation only mode is being used.)
432: --
433: p_hierarchy_version_id := null;
434: p_object_version_number := null;
435: hr_utility.set_location(' Leaving:'||l_proc, 80);
436: --
437: when others then
438: --
439: -- A validation or unexpected error has occured

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

533: l_temp_ovn number := p_object_version_number;
534: --
535: begin
536: --
537: hr_utility.set_location('Entering:'|| l_proc, 10);
538: --
539: -- Issue a savepoint if operating in validation only mode
540: --
541: savepoint update_hierarchy_versions;

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

539: -- Issue a savepoint if operating in validation only mode
540: --
541: savepoint update_hierarchy_versions;
542: --
543: hr_utility.set_location(l_proc, 20);
544: --
545: -- Process Logic
546: --
547: l_object_version_number := p_object_version_number;

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

807: -- End of API User Hook for the after hook of update_hierarchy_versions
808: --
809: end;
810: --
811: hr_utility.set_location(l_proc, 60);
812: --
813: -- When in validation only mode raise the Validate_Enabled exception
814: --
815: if p_validate then

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

819: -- Set all output arguments
820: --
821: p_object_version_number := l_object_version_number;
822: --
823: hr_utility.set_location(' Leaving:'||l_proc, 70);
824: --
825: exception
826: --
827: when hr_api.validate_enabled then

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

834: -- Only set output warning arguments
835: -- (Any key or derived arguments must be set to null
836: -- when validation only mode is being used.)
837: --
838: hr_utility.set_location(' Leaving:'||l_proc, 80);
839: --
840: when others then
841: --
842: -- A validation or unexpected error has occured

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

864: l_temp_ovn number := p_object_version_number;
865: --
866: begin
867: --
868: hr_utility.set_location('Entering:'|| l_proc, 10);
869: --
870: -- Issue a savepoint if operating in validation only mode
871: --
872: savepoint delete_hierarchy_versions;

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

870: -- Issue a savepoint if operating in validation only mode
871: --
872: savepoint delete_hierarchy_versions;
873: --
874: hr_utility.set_location(l_proc, 20);
875: --
876: -- Process Logic
877: --
878: l_object_version_number := p_object_version_number;

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

925: -- End of API User Hook for the after hook of delete_hierarchy_versions
926: --
927: end;
928: --
929: hr_utility.set_location(l_proc, 60);
930: --
931: -- When in validation only mode raise the Validate_Enabled exception
932: --
933: if p_validate then

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

933: if p_validate then
934: raise hr_api.validate_enabled;
935: end if;
936: --
937: hr_utility.set_location(' Leaving:'||l_proc, 70);
938: --
939: exception
940: --
941: when hr_api.validate_enabled then

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

976: l_proc varchar2(72) := g_package||'lck';
977: --
978: begin
979: --
980: hr_utility.set_location('Entering:'|| l_proc, 10);
981: --
982: per_pgv_shd.lck
983: (
984: p_hierarchy_version_id => p_hierarchy_version_id

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

984: p_hierarchy_version_id => p_hierarchy_version_id
985: ,p_object_version_number => p_object_version_number
986: );
987: --
988: hr_utility.set_location(' Leaving:'||l_proc, 70);
989: --
990: end lck;
991: --
992: end per_hierarchy_versions_api;