DBA Data[Home] [Help]

APPS.HR_APPRAISALS_SWI dependencies on HR_UTILITY

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

91: --
92: -- Other variables
93: l_proc varchar2(72) := g_package ||'create_appraisal';
94: Begin
95: hr_utility.set_location(' Entering:' || l_proc,10);
96: --
97: -- Issue a savepoint
98: --
99: savepoint create_appraisal_swi;

Line 209: hr_utility.set_location(' Leaving:' || l_proc,20);

205: -- messages of any type exist in the Multiple Message List.
206: -- Also disable Multiple Message Detection.
207: --
208: p_return_status := hr_multi_message.get_return_status_disable;
209: hr_utility.set_location(' Leaving:' || l_proc,20);
210: --
211: exception
212: when hr_multi_message.error_message_exist then
213: --

Line 224: hr_utility.set_location(' Leaving:' || l_proc, 30);

220: -- Reset IN OUT parameters and set OUT parameters
221: --
222: p_object_version_number := null;
223: p_return_status := hr_multi_message.get_return_status_disable;
224: hr_utility.set_location(' Leaving:' || l_proc, 30);
225: when others then
226: --
227: -- When Multiple Message Detection is enabled catch
228: -- any Application specific or other unexpected

Line 235: hr_utility.set_location(' Leaving:' || l_proc,40);

231: -- error.
232: --
233: rollback to create_appraisal_swi;
234: if hr_multi_message.unexpected_error_add(l_proc) then
235: hr_utility.set_location(' Leaving:' || l_proc,40);
236: raise;
237: end if;
238: --
239: -- Reset IN OUT and set OUT parameters

Line 243: hr_utility.set_location(' Leaving:' || l_proc,50);

239: -- Reset IN OUT and set OUT parameters
240: --
241: p_object_version_number := null;
242: p_return_status := hr_multi_message.get_return_status_disable;
243: hr_utility.set_location(' Leaving:' || l_proc,50);
244: end create_appraisal;
245: -- ----------------------------------------------------------------------------
246: -- |---------------------------< delete_appraisal >---------------------------|
247: -- ----------------------------------------------------------------------------

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

272: where appraisal_id= p_appraisal_id ;
273: --
274:
275: Begin
276: hr_utility.set_location(' Entering:' || l_proc,10);
277: --
278: -- Issue a savepoint
279: --
280: savepoint delete_appraisal_swi;

Line 366: hr_utility.set_location(' Leaving:' || l_proc,20);

362:
363: END IF; -- l_del_mode
364:
365:
366: hr_utility.set_location(' Leaving:' || l_proc,20);
367: --
368: exception
369: when hr_multi_message.error_message_exist then
370: --

Line 380: hr_utility.set_location(' Leaving:' || l_proc, 30);

376: --
377: -- Reset IN OUT parameters and set OUT parameters
378: --
379: p_return_status := hr_multi_message.get_return_status_disable;
380: hr_utility.set_location(' Leaving:' || l_proc, 30);
381: when others then
382: --
383: -- When Multiple Message Detection is enabled catch
384: -- any Application specific or other unexpected

Line 391: hr_utility.set_location(' Leaving:' || l_proc,40);

387: -- error.
388: --
389: rollback to delete_appraisal_swi;
390: if hr_multi_message.unexpected_error_add(l_proc) then
391: hr_utility.set_location(' Leaving:' || l_proc,40);
392: raise;
393: end if;
394: --
395: -- Reset IN OUT and set OUT parameters

Line 398: hr_utility.set_location(' Leaving:' || l_proc,50);

394: --
395: -- Reset IN OUT and set OUT parameters
396: --
397: p_return_status := hr_multi_message.get_return_status_disable;
398: hr_utility.set_location(' Leaving:' || l_proc,50);
399: end delete_appraisal;
400: -- ----------------------------------------------------------------------------
401: -- |---------------------------< update_appraisal >---------------------------|
402: -- ----------------------------------------------------------------------------

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

478: --
479: -- Other variables
480: l_proc varchar2(72) := g_package ||'update_appraisal';
481: Begin
482: hr_utility.set_location(' Entering:' || l_proc,10);
483: --
484: -- Issue a savepoint
485: --
486: savepoint update_appraisal_swi;

Line 588: hr_utility.set_location(' Leaving:' || l_proc,20);

584: -- messages of any type exist in the Multiple Message List.
585: -- Also disable Multiple Message Detection.
586: --
587: p_return_status := hr_multi_message.get_return_status_disable;
588: hr_utility.set_location(' Leaving:' || l_proc,20);
589: --
590: exception
591: when hr_multi_message.error_message_exist then
592: --

Line 603: hr_utility.set_location(' Leaving:' || l_proc, 30);

599: -- Reset IN OUT parameters and set OUT parameters
600: --
601: p_object_version_number := l_object_version_number;
602: p_return_status := hr_multi_message.get_return_status_disable;
603: hr_utility.set_location(' Leaving:' || l_proc, 30);
604: when others then
605: --
606: -- When Multiple Message Detection is enabled catch
607: -- any Application specific or other unexpected

Line 614: hr_utility.set_location(' Leaving:' || l_proc,40);

610: -- error.
611: --
612: rollback to update_appraisal_swi;
613: if hr_multi_message.unexpected_error_add(l_proc) then
614: hr_utility.set_location(' Leaving:' || l_proc,40);
615: raise;
616: end if;
617: --
618: -- Reset IN OUT and set OUT parameters

Line 622: hr_utility.set_location(' Leaving:' || l_proc,50);

618: -- Reset IN OUT and set OUT parameters
619: --
620: p_object_version_number := l_object_version_number;
621: p_return_status := hr_multi_message.get_return_status_disable;
622: hr_utility.set_location(' Leaving:' || l_proc,50);
623: end update_appraisal;
624:
625: -- ----------------------------------------------------------------------------
626: -- |---------------------------< process_api >--------------------------------|

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

642: l_proc varchar2(72) := g_package || 'process_api';
643:
644: BEGIN
645:
646: hr_utility.set_location(' Entering:' || l_proc,10);
647: hr_utility.set_location(' CLOB --> xmldom.DOMNode:' || l_proc,15);
648:
649: l_parser := xmlparser.newParser;
650: xmlparser.ParseCLOB(l_parser,p_document);

Line 647: hr_utility.set_location(' CLOB --> xmldom.DOMNode:' || l_proc,15);

643:
644: BEGIN
645:
646: hr_utility.set_location(' Entering:' || l_proc,10);
647: hr_utility.set_location(' CLOB --> xmldom.DOMNode:' || l_proc,15);
648:
649: l_parser := xmlparser.newParser;
650: xmlparser.ParseCLOB(l_parser,p_document);
651: l_CommitNode := xmldom.makeNode(xmldom.getDocumentElement(xmlparser.getDocument(l_parser)));

Line 653: hr_utility.set_location('Extracting the PostState:' || l_proc,20);

649: l_parser := xmlparser.newParser;
650: xmlparser.ParseCLOB(l_parser,p_document);
651: l_CommitNode := xmldom.makeNode(xmldom.getDocumentElement(xmlparser.getDocument(l_parser)));
652:
653: hr_utility.set_location('Extracting the PostState:' || l_proc,20);
654:
655: l_commitElement := xmldom.makeElement(l_CommitNode);
656: l_postState := xmldom.getAttribute(l_commitElement, 'PS');
657: l_object_version_number := hr_transaction_swi.getNumberValue(l_CommitNode,'ObjectVersionNumber');

Line 819: hr_utility.set_location('Exiting:' || l_proc,40);

815: p_return_status := l_return_status;
816:
817: end if;
818:
819: hr_utility.set_location('Exiting:' || l_proc,40);
820:
821: END process_api;
822: end hr_appraisals_swi;