DBA Data[Home] [Help]

APPS.IRC_OFFERS_BE2 dependencies on HR_UTILITY

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

63: select per_wf_events_s.nextval from dual;
64: --
65: l_proc varchar2(72):=' irc_offers_be2.update_offer_a';
66: begin
67: hr_utility.set_location('Entering: '||l_proc,10);
68: -- check the status of the business event
69: l_event_name:='oracle.apps.per.irc.api.offers.update_offer';
70: l_message:=wf_event.test(l_event_name);
71: --

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

69: l_event_name:='oracle.apps.per.irc.api.offers.update_offer';
70: l_message:=wf_event.test(l_event_name);
71: --
72: if (l_message='MESSAGE') then
73: hr_utility.set_location(l_proc,20);
74: --
75: -- get a key for the event
76: --
77: open get_seq;

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

298: wf_event.raise(p_event_name=>l_event_name
299: ,p_event_key=>l_event_key
300: ,p_event_data=>l_event_data);
301: elsif (l_message='KEY') then
302: hr_utility.set_location(l_proc,30);
303: -- get a key for the event
304: open get_seq;
305: fetch get_seq into l_event_key;
306: close get_seq;

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

308: -- without the event data
309: wf_event.raise(p_event_name=>l_event_name
310: ,p_event_key=>l_event_key);
311: elsif (l_message='NONE') then
312: hr_utility.set_location(l_proc,40);
313: -- no event is required, so do nothing
314: null;
315: end if;
316: hr_utility.set_location('Leaving: '||l_proc,50);

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

312: hr_utility.set_location(l_proc,40);
313: -- no event is required, so do nothing
314: null;
315: end if;
316: hr_utility.set_location('Leaving: '||l_proc,50);
317: end update_offer_a;
318: end irc_offers_be2;