DBA Data[Home] [Help]

APPS.PQH_PROCESS_LOG_API dependencies on HR_UTILITY

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

64: l_object_version_number pqh_process_log.object_version_number%TYPE;
65: --
66: begin
67: --
68: hr_utility.set_location('Entering:'|| l_proc, 10);
69: --
70: -- Issue a savepoint if operating in validation only mode
71: --
72: savepoint create_process_log;

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

70: -- Issue a savepoint if operating in validation only mode
71: --
72: savepoint create_process_log;
73: --
74: hr_utility.set_location(l_proc, 20);
75: --
76: -- Process Logic
77: --
78: begin

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

245: -- End of API User Hook for the after hook of create_process_log
246: --
247: end;
248: --
249: hr_utility.set_location(l_proc, 60);
250: --
251: -- When in validation only mode raise the Validate_Enabled exception
252: --
253: if p_validate then

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

258: --
259: p_process_log_id := l_process_log_id;
260: p_object_version_number := l_object_version_number;
261: --
262: hr_utility.set_location(' Leaving:'||l_proc, 70);
263: --
264: exception
265: --
266: when hr_api.validate_enabled then

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

275: -- when validation only mode is being used.)
276: --
277: p_process_log_id := null;
278: p_object_version_number := null;
279: hr_utility.set_location(' Leaving:'||l_proc, 80);
280: --
281: when others then
282: p_process_log_id := null;
283: p_object_version_number := null;

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

346: l_object_version_number pqh_process_log.object_version_number%TYPE;
347: --
348: begin
349: --
350: hr_utility.set_location('Entering:'|| l_proc, 10);
351: --
352: -- Issue a savepoint if operating in validation only mode
353: --
354: savepoint update_process_log;

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

352: -- Issue a savepoint if operating in validation only mode
353: --
354: savepoint update_process_log;
355: --
356: hr_utility.set_location(l_proc, 20);
357: --
358: -- Process Logic
359: --
360: l_object_version_number := p_object_version_number;

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

530: -- End of API User Hook for the after hook of update_process_log
531: --
532: end;
533: --
534: hr_utility.set_location(l_proc, 60);
535: --
536: -- When in validation only mode raise the Validate_Enabled exception
537: --
538: if p_validate then

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

542: -- Set all output arguments
543: --
544: p_object_version_number := l_object_version_number;
545: --
546: hr_utility.set_location(' Leaving:'||l_proc, 70);
547: --
548: exception
549: --
550: when hr_api.validate_enabled then

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

557: -- Only set output warning arguments
558: -- (Any key or derived arguments must be set to null
559: -- when validation only mode is being used.)
560: --
561: hr_utility.set_location(' Leaving:'||l_proc, 80);
562: --
563: when others then
564: p_object_version_number := l_object_version_number;
565: --

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

586: l_object_version_number pqh_process_log.object_version_number%TYPE;
587: --
588: begin
589: --
590: hr_utility.set_location('Entering:'|| l_proc, 10);
591: --
592: -- Issue a savepoint if operating in validation only mode
593: --
594: savepoint delete_process_log;

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

592: -- Issue a savepoint if operating in validation only mode
593: --
594: savepoint delete_process_log;
595: --
596: hr_utility.set_location(l_proc, 20);
597: --
598: -- Process Logic
599: --
600: l_object_version_number := p_object_version_number;

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

648: -- End of API User Hook for the after hook of delete_process_log
649: --
650: end;
651: --
652: hr_utility.set_location(l_proc, 60);
653: --
654: -- When in validation only mode raise the Validate_Enabled exception
655: --
656: if p_validate then

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

656: if p_validate then
657: raise hr_api.validate_enabled;
658: end if;
659: --
660: hr_utility.set_location(' Leaving:'||l_proc, 70);
661: --
662: exception
663: --
664: when hr_api.validate_enabled then

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

698: l_proc varchar2(72) := g_package||'lck';
699: --
700: begin
701: --
702: hr_utility.set_location('Entering:'|| l_proc, 10);
703: --
704: pqh_plg_shd.lck
705: (
706: p_process_log_id => p_process_log_id

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

706: p_process_log_id => p_process_log_id
707: ,p_object_version_number => p_object_version_number
708: );
709: --
710: hr_utility.set_location(' Leaving:'||l_proc, 70);
711: --
712: end lck;
713: --
714: end pqh_process_log_api;