DBA Data[Home] [Help]

APPS.PER_SHARED_TYPES_API dependencies on HR_UTILITY

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

126: l_language_code varchar2(30);
127: --
128: begin
129: --
130: hr_utility.set_location('Entering:'|| l_proc, 10);
131: --
132: -- Issue a savepoint if operating in validation only mode
133: --
134: savepoint create_shared_type;

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

136: --
137: l_language_code := p_language_code;
138: hr_api.validate_language_code(p_language_code => l_language_code);
139: --
140: hr_utility.set_location(l_proc, 20);
141: --
142: -- Process Logic
143: --
144: begin

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

301: -- End of API User Hook for the after hook of create_shared_types
302: --
303: end;
304: --
305: hr_utility.set_location(l_proc, 60);
306: --
307: -- When in validation only mode raise the Validate_Enabled exception
308: --
309: if p_validate then

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

314: --
315: p_shared_type_id := l_shared_type_id;
316: p_object_version_number := l_object_version_number;
317: --
318: hr_utility.set_location(' Leaving:'||l_proc, 70);
319: --
320: exception
321: --
322: when hr_api.validate_enabled then

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

331: -- when validation only mode is being used.)
332: --
333: p_shared_type_id := null;
334: p_object_version_number := null;
335: hr_utility.set_location(' Leaving:'||l_proc, 80);
336: --
337: when others then
338: --
339: -- A validation or unexpected error has occured

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

400: l_temp_ovn number := p_object_version_number;
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_shared_type;

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

410: --
411: l_language_code := p_language_code;
412: hr_api.validate_language_code(p_language_code => l_language_code);
413: --
414: hr_utility.set_location(l_proc, 20);
415: --
416: -- Process Logic
417: --
418: l_object_version_number := p_object_version_number;

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

577: -- End of API User Hook for the after hook of update_shared_types
578: --
579: end;
580: --
581: hr_utility.set_location(l_proc, 60);
582: --
583: -- When in validation only mode raise the Validate_Enabled exception
584: --
585: if p_validate then

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

589: -- Set all output arguments
590: --
591: p_object_version_number := l_object_version_number;
592: --
593: hr_utility.set_location(' Leaving:'||l_proc, 70);
594: --
595: exception
596: --
597: when hr_api.validate_enabled then

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

604: -- Only set output warning arguments
605: -- (Any key or derived arguments must be set to null
606: -- when validation only mode is being used.)
607: --
608: hr_utility.set_location(' Leaving:'||l_proc, 80);
609: --
610: when others then
611: --
612: -- A validation or unexpected error has occured

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

633: l_object_version_number per_shared_types.object_version_number%TYPE;
634: --
635: begin
636: --
637: hr_utility.set_location('Entering:'|| l_proc, 10);
638: --
639: -- Issue a savepoint if operating in validation only mode
640: --
641: savepoint delete_shared_type;

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

639: -- Issue a savepoint if operating in validation only mode
640: --
641: savepoint delete_shared_type;
642: --
643: hr_utility.set_location(l_proc, 20);
644: --
645: -- Process Logic
646: --
647: l_object_version_number := p_object_version_number;

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

705: -- End of API User Hook for the after hook of delete_shared_types
706: --
707: end;
708: --
709: hr_utility.set_location(l_proc, 60);
710: --
711: -- When in validation only mode raise the Validate_Enabled exception
712: --
713: if p_validate then

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

713: if p_validate then
714: raise hr_api.validate_enabled;
715: end if;
716: --
717: hr_utility.set_location(' Leaving:'||l_proc, 70);
718: --
719: exception
720: --
721: when hr_api.validate_enabled then