DBA Data[Home] [Help]

APPS.PER_VACANCY_BE1 dependencies on HR_UTILITY

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

71: select per_wf_events_s.nextval from dual;
72: --
73: l_proc varchar2(72):=' per_vacancy_be1.create_vacancy_a';
74: begin
75: hr_utility.set_location('Entering: '||l_proc,10);
76: -- check the status of the business event
77: l_event_name:='oracle.apps.per.api.vacancy.create_vacancy';
78: l_message:=wf_event.test(l_event_name);
79: --

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

77: l_event_name:='oracle.apps.per.api.vacancy.create_vacancy';
78: l_message:=wf_event.test(l_event_name);
79: --
80: if (l_message='MESSAGE') then
81: hr_utility.set_location(l_proc,20);
82: --
83: -- get a key for the event
84: --
85: open get_seq;

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

346: wf_event.raise(p_event_name=>l_event_name
347: ,p_event_key=>l_event_key
348: ,p_event_data=>l_event_data);
349: elsif (l_message='KEY') then
350: hr_utility.set_location(l_proc,30);
351: -- get a key for the event
352: open get_seq;
353: fetch get_seq into l_event_key;
354: close get_seq;

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

356: -- without the event data
357: wf_event.raise(p_event_name=>l_event_name
358: ,p_event_key=>l_event_key);
359: elsif (l_message='NONE') then
360: hr_utility.set_location(l_proc,40);
361: -- no event is required, so do nothing
362: null;
363: end if;
364: hr_utility.set_location('Leaving: '||l_proc,50);

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

360: hr_utility.set_location(l_proc,40);
361: -- no event is required, so do nothing
362: null;
363: end if;
364: hr_utility.set_location('Leaving: '||l_proc,50);
365: end create_vacancy_a;
366: end per_vacancy_be1;