DBA Data[Home] [Help]

APPS.PER_RECRUITMENT_ACTIVITY_BE2 dependencies on HR_UTILITY

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

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

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

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

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

258: wf_event.raise(p_event_name=>l_event_name
259: ,p_event_key=>l_event_key
260: ,p_event_data=>l_event_data);
261: elsif (l_message='KEY') then
262: hr_utility.set_location(l_proc,30);
263: -- get a key for the event
264: open get_seq;
265: fetch get_seq into l_event_key;
266: close get_seq;

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

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

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

272: hr_utility.set_location(l_proc,40);
273: -- no event is required, so do nothing
274: null;
275: end if;
276: hr_utility.set_location('Leaving: '||l_proc,50);
277: end update_recruitment_activity_a;
278: end per_recruitment_activity_be2;