DBA Data[Home] [Help]

APPS.HR_DOCUMENT_EXTRA_INFO_BE2 dependencies on HR_UTILITY

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

94: select per_wf_events_s.nextval from dual;
95: --
96: l_proc varchar2(72):=' hr_document_extra_info_be2.update_doc_extra_info_a';
97: begin
98: hr_utility.set_location('Entering: '||l_proc,10);
99: -- check the status of the business event
100: l_event_name:='oracle.apps.per.api.document_extra_info.update_doc_extra_info';
101: l_message:=wf_event.test(l_event_name);
102: --

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

100: l_event_name:='oracle.apps.per.api.document_extra_info.update_doc_extra_info';
101: l_message:=wf_event.test(l_event_name);
102: --
103: if (l_message='MESSAGE') then
104: hr_utility.set_location(l_proc,20);
105: --
106: -- get a key for the event
107: --
108: open get_seq;

Line 457: hr_utility.set_location(l_proc,30);

453: wf_event.raise(p_event_name=>l_event_name
454: ,p_event_key=>l_event_key
455: ,p_event_data=>l_event_data);
456: elsif (l_message='KEY') then
457: hr_utility.set_location(l_proc,30);
458: -- get a key for the event
459: open get_seq;
460: fetch get_seq into l_event_key;
461: close get_seq;

Line 467: hr_utility.set_location(l_proc,40);

463: -- without the event data
464: wf_event.raise(p_event_name=>l_event_name
465: ,p_event_key=>l_event_key);
466: elsif (l_message='NONE') then
467: hr_utility.set_location(l_proc,40);
468: -- no event is required, so do nothing
469: null;
470: end if;
471: hr_utility.set_location('Leaving: '||l_proc,50);

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

467: hr_utility.set_location(l_proc,40);
468: -- no event is required, so do nothing
469: null;
470: end if;
471: hr_utility.set_location('Leaving: '||l_proc,50);
472: end update_doc_extra_info_a;
473: end hr_document_extra_info_be2;