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

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

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

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

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

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