DBA Data[Home] [Help]

APPS.PER_REQUISITIONS_BE2 dependencies on HR_UTILITY

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

50: select per_wf_events_s.nextval from dual;
51: --
52: l_proc varchar2(72):=' per_requisitions_be2.update_requisition_a';
53: begin
54: hr_utility.set_location('Entering: '||l_proc,10);
55: -- check the status of the business event
56: l_event_name:='oracle.apps.per.api.requisitions.update_requisition';
57: l_message:=wf_event.test(l_event_name);
58: --

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

56: l_event_name:='oracle.apps.per.api.requisitions.update_requisition';
57: l_message:=wf_event.test(l_event_name);
58: --
59: if (l_message='MESSAGE') then
60: hr_utility.set_location(l_proc,20);
61: --
62: -- get a key for the event
63: --
64: open get_seq;

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

234: ,p_event_key=>l_event_key
235: ,p_event_data=>l_event_data);
236: --
237: elsif (l_message='KEY') then
238: hr_utility.set_location(l_proc,30);
239: -- get a key for the event
240: open get_seq;
241: fetch get_seq into l_event_key;
242: close get_seq;

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

245: wf_event.raise(p_event_name=>l_event_name
246: ,p_event_key=>l_event_key);
247: --
248: elsif (l_message='NONE') then
249: hr_utility.set_location(l_proc,40);
250: -- no event is required, so do nothing
251: null;
252: end if;
253: hr_utility.set_location('Leaving: '||l_proc,50);

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

249: hr_utility.set_location(l_proc,40);
250: -- no event is required, so do nothing
251: null;
252: end if;
253: hr_utility.set_location('Leaving: '||l_proc,50);
254: end update_requisition_a;
255: end per_requisitions_be2;