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 263: hr_utility.set_location(l_proc,30);

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

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

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

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

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