DBA Data[Home] [Help]

APPS.IRC_DEFAULT_POSTING_BE2 dependencies on HR_UTILITY

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

58: select per_wf_events_s.nextval from dual;
59: --
60: l_proc varchar2(72):=' irc_default_posting_be2.update_default_posting_a';
61: begin
62: hr_utility.set_location('Entering: '||l_proc,10);
63: -- check the status of the business event
64: l_event_name:='oracle.apps.per.irc.api.default_posting.update_default_posting';
65: l_message:=wf_event.test(l_event_name);
66: --

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

64: l_event_name:='oracle.apps.per.irc.api.default_posting.update_default_posting';
65: l_message:=wf_event.test(l_event_name);
66: --
67: if (l_message='MESSAGE') then
68: hr_utility.set_location(l_proc,20);
69: --
70: -- get a key for the event
71: --
72: open get_seq;

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

274: ,p_event_key=>l_event_key
275: ,p_event_data=>l_event_data);
276: --
277: elsif (l_message='KEY') then
278: hr_utility.set_location(l_proc,30);
279: -- get a key for the event
280: open get_seq;
281: fetch get_seq into l_event_key;
282: close get_seq;

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

285: wf_event.raise(p_event_name=>l_event_name
286: ,p_event_key=>l_event_key);
287: --
288: elsif (l_message='NONE') then
289: hr_utility.set_location(l_proc,40);
290: -- no event is required, so do nothing
291: null;
292: end if;
293: hr_utility.set_location('Leaving: '||l_proc,50);

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

289: hr_utility.set_location(l_proc,40);
290: -- no event is required, so do nothing
291: null;
292: end if;
293: hr_utility.set_location('Leaving: '||l_proc,50);
294: end update_default_posting_a;
295: end irc_default_posting_be2;