DBA Data[Home] [Help]

APPS.PAY_PPE_BE1 dependencies on HR_UTILITY

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

26: select per_wf_events_s.nextval from dual;
27: --
28: l_proc varchar2(72):=' pay_ppe_be1.create_process_event_a';
29: begin
30: hr_utility.set_location('Entering: '||l_proc,10);
31: -- check the status of the business event
32: l_event_name:='oracle.apps.pay.api.ppe.create_process_event';
33: l_message:=wf_event.test(l_event_name);
34: --

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

32: l_event_name:='oracle.apps.pay.api.ppe.create_process_event';
33: l_message:=wf_event.test(l_event_name);
34: --
35: if (l_message='MESSAGE') then
36: hr_utility.set_location(l_proc,20);
37: --
38: -- get a key for the event
39: --
40: open get_seq;

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

113: wf_event.raise(p_event_name=>l_event_name
114: ,p_event_key=>l_event_key
115: ,p_event_data=>l_event_data);
116: elsif (l_message='KEY') then
117: hr_utility.set_location(l_proc,30);
118: -- get a key for the event
119: open get_seq;
120: fetch get_seq into l_event_key;
121: close get_seq;

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

123: -- without the event data
124: wf_event.raise(p_event_name=>l_event_name
125: ,p_event_key=>l_event_key);
126: elsif (l_message='NONE') then
127: hr_utility.set_location(l_proc,40);
128: -- no event is required, so do nothing
129: null;
130: end if;
131: hr_utility.set_location('Leaving: '||l_proc,50);

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

127: hr_utility.set_location(l_proc,40);
128: -- no event is required, so do nothing
129: null;
130: end if;
131: hr_utility.set_location('Leaving: '||l_proc,50);
132: end create_process_event_a;
133: end pay_ppe_be1;