DBA Data[Home] [Help]

APPS.HR_DELIVERY_METHODS_BE1 dependencies on HR_UTILITY

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

45: select per_wf_events_s.nextval from dual;
46: --
47: l_proc varchar2(72):=' hr_delivery_methods_be1.create_delivery_method_a';
48: begin
49: hr_utility.set_location('Entering: '||l_proc,10);
50: -- check the status of the business event
51: l_event_name:='oracle.apps.per.api.delivery_methods.create_delivery_method';
52: l_message:=wf_event.test(l_event_name);
53: --

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

51: l_event_name:='oracle.apps.per.api.delivery_methods.create_delivery_method';
52: l_message:=wf_event.test(l_event_name);
53: --
54: if (l_message='MESSAGE') then
55: hr_utility.set_location(l_proc,20);
56: --
57: -- get a key for the event
58: --
59: open get_seq;

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

208: wf_event.raise(p_event_name=>l_event_name
209: ,p_event_key=>l_event_key
210: ,p_event_data=>l_event_data);
211: elsif (l_message='KEY') then
212: hr_utility.set_location(l_proc,30);
213: -- get a key for the event
214: open get_seq;
215: fetch get_seq into l_event_key;
216: close get_seq;

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

218: -- without the event data
219: wf_event.raise(p_event_name=>l_event_name
220: ,p_event_key=>l_event_key);
221: elsif (l_message='NONE') then
222: hr_utility.set_location(l_proc,40);
223: -- no event is required, so do nothing
224: null;
225: end if;
226: hr_utility.set_location('Leaving: '||l_proc,50);

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

222: hr_utility.set_location(l_proc,40);
223: -- no event is required, so do nothing
224: null;
225: end if;
226: hr_utility.set_location('Leaving: '||l_proc,50);
227: end create_delivery_method_a;
228: end hr_delivery_methods_be1;