DBA Data[Home] [Help]

APPS.HR_PERF_REVIEW_API dependencies on HR_UTILITY

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

59: l_object_version_number per_performance_reviews.object_version_number%TYPE;
60: --
61: begin
62: --
63: hr_utility.set_location('Entering:'|| l_proc, 10);
64: --
65: -- Issue a savepoint
66: --
67: savepoint create_perf_review;

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

65: -- Issue a savepoint
66: --
67: savepoint create_perf_review;
68: --
69: hr_utility.set_location(l_proc, 20);
70: --
71: -- Process Logic
72: --
73: begin

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

224: -- End of API User Hook for the after hook of create_perf_review
225: --
226: end;
227: --
228: hr_utility.set_location(l_proc, 60);
229: --
230: -- When in validation only mode raise the Validate_Enabled exception
231: --
232: if p_validate then

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

237: --
238: p_performance_review_id := l_performance_review_id;
239: p_object_version_number := l_object_version_number;
240: --
241: hr_utility.set_location(' Leaving:'||l_proc, 70);
242: --
243: exception
244: --
245: when hr_api.validate_enabled then

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

254: -- when validation only mode is being used.)
255: --
256: p_performance_review_id := null;
257: p_object_version_number := null;
258: hr_utility.set_location(' Leaving:'||l_proc, 80);
259: --
260: when others then
261: --
262: -- A validation or unexpected error has occured

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

321: l_temp_ovn number := p_object_version_number;
322: --
323: begin
324: --
325: hr_utility.set_location('Entering:'|| l_proc, 10);
326: --
327: -- Issue a savepoint if operating in validation only mode
328: --
329: savepoint update_perf_review;

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

327: -- Issue a savepoint if operating in validation only mode
328: --
329: savepoint update_perf_review;
330: --
331: hr_utility.set_location(l_proc, 20);
332: --
333: -- Process Logic
334: --
335: l_object_version_number := p_object_version_number;

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

486: -- End of API User Hook for the after hook of update_perf_review
487: --
488: end;
489: --
490: hr_utility.set_location(l_proc, 60);
491: --
492: -- When in validation only mode raise the Validate_Enabled exception
493: --
494: if p_validate then

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

498: -- Set all output arguments
499: --
500: p_object_version_number := l_object_version_number;
501: --
502: hr_utility.set_location(' Leaving:'||l_proc, 70);
503: --
504: exception
505: --
506: when hr_api.validate_enabled then

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

513: -- Only set output warning arguments
514: -- (Any key or derived arguments must be set to null
515: -- when validation only mode is being used.)
516: --
517: hr_utility.set_location(' Leaving:'||l_proc, 80);
518: --
519: when others then
520: --
521: -- A validation or unexpected error has occured

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

543: l_temp_ovn number := p_object_version_number;
544: --
545: begin
546: --
547: hr_utility.set_location('Entering:'|| l_proc, 10);
548: --
549: -- Issue a savepoint if operating in validation only mode
550: --
551: savepoint delete_perf_review;

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

549: -- Issue a savepoint if operating in validation only mode
550: --
551: savepoint delete_perf_review;
552: --
553: hr_utility.set_location(l_proc, 20);
554: --
555: -- Process Logic
556: --
557: l_object_version_number := p_object_version_number;

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

603: -- End of API User Hook for the after hook of delete_perf_review
604: --
605: end;
606: --
607: hr_utility.set_location(l_proc, 60);
608: --
609: -- When in validation only mode raise the Validate_Enabled exception
610: --
611: if p_validate then

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

611: if p_validate then
612: raise hr_api.validate_enabled;
613: end if;
614: --
615: hr_utility.set_location(' Leaving:'||l_proc, 70);
616: --
617: exception
618: --
619: when hr_api.validate_enabled then

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

654: l_proc varchar2(72) := g_package||'lck';
655: --
656: begin
657: --
658: hr_utility.set_location('Entering:'|| l_proc, 10);
659: --
660: per_prv_shd.lck
661: (
662: p_performance_review_id => p_performance_review_id

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

662: p_performance_review_id => p_performance_review_id
663: ,p_object_version_number => p_object_version_number
664: );
665: --
666: hr_utility.set_location(' Leaving:'||l_proc, 70);
667: --
668: end lck;
669: --
670: end hr_perf_review_api;