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 458: hr_utility.set_location(l_proc,30);

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

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

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

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

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