DBA Data[Home] [Help]

APPS.PER_VACANCY_BE2 dependencies on HR_UTILITY

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

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

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

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

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

340: wf_event.raise(p_event_name=>l_event_name
341: ,p_event_key=>l_event_key
342: ,p_event_data=>l_event_data);
343: elsif (l_message='KEY') then
344: hr_utility.set_location(l_proc,30);
345: -- get a key for the event
346: open get_seq;
347: fetch get_seq into l_event_key;
348: close get_seq;

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

350: -- without the event data
351: wf_event.raise(p_event_name=>l_event_name
352: ,p_event_key=>l_event_key);
353: elsif (l_message='NONE') then
354: hr_utility.set_location(l_proc,40);
355: -- no event is required, so do nothing
356: null;
357: end if;
358: hr_utility.set_location('Leaving: '||l_proc,50);

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

354: hr_utility.set_location(l_proc,40);
355: -- no event is required, so do nothing
356: null;
357: end if;
358: hr_utility.set_location('Leaving: '||l_proc,50);
359: end update_vacancy_a;
360: end per_vacancy_be2;