DBA Data[Home] [Help]

APPS.IRC_DOCUMENT_BE3 dependencies on HR_UTILITY

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

20: select per_wf_events_s.nextval from dual;
21: --
22: l_proc varchar2(72):=' irc_document_be3.delete_document_a';
23: begin
24: hr_utility.set_location('Entering: '||l_proc,10);
25: -- check the status of the business event
26: l_event_name:='oracle.apps.per.irc.api.document.delete_document';
27: l_message:=wf_event.test(l_event_name);
28: --

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

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

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

83: wf_event.raise(p_event_name=>l_event_name
84: ,p_event_key=>l_event_key
85: ,p_event_data=>l_event_data);
86: elsif (l_message='KEY') then
87: hr_utility.set_location(l_proc,30);
88: -- get a key for the event
89: open get_seq;
90: fetch get_seq into l_event_key;
91: close get_seq;

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

93: -- without the event data
94: wf_event.raise(p_event_name=>l_event_name
95: ,p_event_key=>l_event_key);
96: elsif (l_message='NONE') then
97: hr_utility.set_location(l_proc,40);
98: -- no event is required, so do nothing
99: null;
100: end if;
101: hr_utility.set_location('Leaving: '||l_proc,50);

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

97: hr_utility.set_location(l_proc,40);
98: -- no event is required, so do nothing
99: null;
100: end if;
101: hr_utility.set_location('Leaving: '||l_proc,50);
102: end delete_document_a;
103: end irc_document_be3;