DBA Data[Home] [Help]

APPS.HR_PHONE_BE1 dependencies on HR_UTILITY

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

54: select per_wf_events_s.nextval from dual;
55: --
56: l_proc varchar2(72):=' hr_phone_be1.create_phone_a';
57: begin
58: hr_utility.set_location('Entering: '||l_proc,10);
59: -- check the status of the business event
60: l_event_name:='oracle.apps.per.api.phone.create_phone';
61: l_message:=wf_event.test(l_event_name);
62: --

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

60: l_event_name:='oracle.apps.per.api.phone.create_phone';
61: l_message:=wf_event.test(l_event_name);
62: --
63: if (l_message='MESSAGE') then
64: hr_utility.set_location(l_proc,20);
65: --
66: -- get a key for the event
67: --
68: open get_seq;

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

253: wf_event.raise(p_event_name=>l_event_name
254: ,p_event_key=>l_event_key
255: ,p_event_data=>l_event_data);
256: elsif (l_message='KEY') then
257: hr_utility.set_location(l_proc,30);
258: -- get a key for the event
259: open get_seq;
260: fetch get_seq into l_event_key;
261: close get_seq;

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

263: -- without the event data
264: wf_event.raise(p_event_name=>l_event_name
265: ,p_event_key=>l_event_key);
266: elsif (l_message='NONE') then
267: hr_utility.set_location(l_proc,40);
268: -- no event is required, so do nothing
269: null;
270: end if;
271: hr_utility.set_location('Leaving: '||l_proc,50);

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

267: hr_utility.set_location(l_proc,40);
268: -- no event is required, so do nothing
269: null;
270: end if;
271: hr_utility.set_location('Leaving: '||l_proc,50);
272: end create_phone_a;
273: end hr_phone_be1;