DBA Data[Home] [Help]

APPS.IRC_RECRUITING_SITES_BE1 dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

307: hr_utility.set_location(l_proc,40);
308: -- no event is required, so do nothing
309: null;
310: end if;
311: hr_utility.set_location('Leaving: '||l_proc,50);
312: end create_recruiting_site_a;
313: end irc_recruiting_sites_be1;