DBA Data[Home] [Help]

APPS.IRC_DOCUMENT_BE4 dependencies on HR_UTILITY

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

23: select per_wf_events_s.nextval from dual;
24: --
25: l_proc varchar2(72):=' irc_document_be4.update_document_track_a';
26: begin
27: hr_utility.set_location('Entering: '||l_proc,10);
28: -- check the status of the business event
29: l_event_name:='oracle.apps.per.irc.api.document.update_document_track';
30: l_message:=wf_event.test(l_event_name);
31: --

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

29: l_event_name:='oracle.apps.per.irc.api.document.update_document_track';
30: l_message:=wf_event.test(l_event_name);
31: --
32: if (l_message='MESSAGE') then
33: hr_utility.set_location(l_proc,20);
34: --
35: -- get a key for the event
36: --
37: open get_seq;

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

98: wf_event.raise(p_event_name=>l_event_name
99: ,p_event_key=>l_event_key
100: ,p_event_data=>l_event_data);
101: elsif (l_message='KEY') then
102: hr_utility.set_location(l_proc,30);
103: -- get a key for the event
104: open get_seq;
105: fetch get_seq into l_event_key;
106: close get_seq;

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

108: -- without the event data
109: wf_event.raise(p_event_name=>l_event_name
110: ,p_event_key=>l_event_key);
111: elsif (l_message='NONE') then
112: hr_utility.set_location(l_proc,40);
113: -- no event is required, so do nothing
114: null;
115: end if;
116: hr_utility.set_location('Leaving: '||l_proc,50);

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

112: hr_utility.set_location(l_proc,40);
113: -- no event is required, so do nothing
114: null;
115: end if;
116: hr_utility.set_location('Leaving: '||l_proc,50);
117: end update_document_track_a;
118: end irc_document_be4;