DBA Data[Home] [Help]

APPS.IRC_AGENCY_VACANCIES_BE1 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_agency_vacancies_be1.create_agency_vacancy_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.agency_vacancies.create_agency_vacancy';
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.agency_vacancies.create_agency_vacancy';
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 243: hr_utility.set_location(l_proc,30);

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

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

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

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

254: hr_utility.set_location(l_proc,40);
255: -- no event is required, so do nothing
256: null;
257: end if;
258: hr_utility.set_location('Leaving: '||l_proc,50);
259: end create_agency_vacancy_a;
260: end irc_agency_vacancies_be1;