DBA Data[Home] [Help]

APPS.PER_RECRUITMENT_ACTIVITY_BE1 dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

277: hr_utility.set_location(l_proc,40);
278: -- no event is required, so do nothing
279: null;
280: end if;
281: hr_utility.set_location('Leaving: '||l_proc,50);
282: end create_recruitment_activity_a;
283: end per_recruitment_activity_be1;