DBA Data[Home] [Help]

APPS.IRC_OFFER_STATUS_HISTORY_BE2 dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

92: hr_utility.set_location(l_proc,40);
93: -- no event is required, so do nothing
94: null;
95: end if;
96: hr_utility.set_location('Leaving: '||l_proc,50);
97: end update_offer_status_history_a;
98: end irc_offer_status_history_be2;