DBA Data[Home] [Help]

APPS.IRC_PARTY_BE4 dependencies on HR_UTILITY

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

51: select per_wf_events_s.nextval from dual;
52: --
53: l_proc varchar2(72):=' irc_party_be4.create_user_a';
54: begin
55: hr_utility.set_location('Entering: '||l_proc,10);
56: -- check the status of the business event
57: l_event_name:='oracle.apps.per.irc.api.party.create_user';
58: l_message:=wf_event.test(l_event_name);
59: --

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

57: l_event_name:='oracle.apps.per.irc.api.party.create_user';
58: l_message:=wf_event.test(l_event_name);
59: --
60: if (l_message='MESSAGE') then
61: hr_utility.set_location(l_proc,20);
62: --
63: -- get a key for the event
64: --
65: open get_seq;

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

238: wf_event.raise(p_event_name=>l_event_name
239: ,p_event_key=>l_event_key
240: ,p_event_data=>l_event_data);
241: elsif (l_message='KEY') then
242: hr_utility.set_location(l_proc,30);
243: -- get a key for the event
244: open get_seq;
245: fetch get_seq into l_event_key;
246: close get_seq;

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

248: -- without the event data
249: wf_event.raise(p_event_name=>l_event_name
250: ,p_event_key=>l_event_key);
251: elsif (l_message='NONE') then
252: hr_utility.set_location(l_proc,40);
253: -- no event is required, so do nothing
254: null;
255: end if;
256: hr_utility.set_location('Leaving: '||l_proc,50);

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

252: hr_utility.set_location(l_proc,40);
253: -- no event is required, so do nothing
254: null;
255: end if;
256: hr_utility.set_location('Leaving: '||l_proc,50);
257: end create_user_a;
258: end irc_party_be4;