DBA Data[Home] [Help]

APPS.IRC_NOTIFICATION_PREFS_BE1 dependencies on HR_UTILITY

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

54: select per_wf_events_s.nextval from dual;
55: --
56: l_proc varchar2(72):=' irc_notification_prefs_be1.create_notification_prefs_a';
57: begin
58: hr_utility.set_location('Entering: '||l_proc,10);
59: -- check the status of the business event
60: l_event_name:='oracle.apps.per.irc.api.notification_prefs.create_notification_prefs';
61: l_message:=wf_event.test(l_event_name);
62: --

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

60: l_event_name:='oracle.apps.per.irc.api.notification_prefs.create_notification_prefs';
61: l_message:=wf_event.test(l_event_name);
62: --
63: if (l_message='MESSAGE') then
64: hr_utility.set_location(l_proc,20);
65: --
66: -- get a key for the event
67: --
68: open get_seq;

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

254: ,p_event_key=>l_event_key
255: ,p_event_data=>l_event_data);
256: --
257: elsif (l_message='KEY') then
258: hr_utility.set_location(l_proc,30);
259: -- get a key for the event
260: open get_seq;
261: fetch get_seq into l_event_key;
262: close get_seq;

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

265: wf_event.raise(p_event_name=>l_event_name
266: ,p_event_key=>l_event_key);
267: --
268: elsif (l_message='NONE') then
269: hr_utility.set_location(l_proc,40);
270: -- no event is required, so do nothing
271: null;
272: end if;
273: hr_utility.set_location('Leaving: '||l_proc,50);

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

269: hr_utility.set_location(l_proc,40);
270: -- no event is required, so do nothing
271: null;
272: end if;
273: hr_utility.set_location('Leaving: '||l_proc,50);
274: end create_notification_prefs_a;
275: end irc_notification_prefs_be1;