DBA Data[Home] [Help]

APPS.IRC_PARTY_BE6 dependencies on HR_UTILITY

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

31: select per_wf_events_s.nextval from dual;
32: --
33: l_proc varchar2(72):=' irc_party_be6.self_register_user_a';
34: begin
35: hr_utility.set_location('Entering: '||l_proc,10);
36: -- check the status of the business event
37: l_event_name:='oracle.apps.per.irc.api.party.self_register_user';
38: l_message:=wf_event.test(l_event_name);
39: --

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

37: l_event_name:='oracle.apps.per.irc.api.party.self_register_user';
38: l_message:=wf_event.test(l_event_name);
39: --
40: if (l_message='MESSAGE') then
41: hr_utility.set_location(l_proc,20);
42: --
43: -- get a key for the event
44: --
45: open get_seq;

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

138: wf_event.raise(p_event_name=>l_event_name
139: ,p_event_key=>l_event_key
140: ,p_event_data=>l_event_data);
141: elsif (l_message='KEY') then
142: hr_utility.set_location(l_proc,30);
143: -- get a key for the event
144: open get_seq;
145: fetch get_seq into l_event_key;
146: close get_seq;

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

148: -- without the event data
149: wf_event.raise(p_event_name=>l_event_name
150: ,p_event_key=>l_event_key);
151: elsif (l_message='NONE') then
152: hr_utility.set_location(l_proc,40);
153: -- no event is required, so do nothing
154: null;
155: end if;
156: hr_utility.set_location('Leaving: '||l_proc,50);

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

152: hr_utility.set_location(l_proc,40);
153: -- no event is required, so do nothing
154: null;
155: end if;
156: hr_utility.set_location('Leaving: '||l_proc,50);
157: end self_register_user_a;
158: end irc_party_be6;