DBA Data[Home] [Help]

APPS.HR_PERSON_EXTRA_INFO_BE2 dependencies on HR_UTILITY

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

66: select per_wf_events_s.nextval from dual;
67: --
68: l_proc varchar2(72):=' hr_person_extra_info_be2.update_person_extra_info_a';
69: begin
70: hr_utility.set_location('Entering: '||l_proc,10);
71: -- check the status of the business event
72: l_event_name:='oracle.apps.per.api.person_extra_info.update_person_extra_info';
73: l_message:=wf_event.test(l_event_name);
74: --

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

72: l_event_name:='oracle.apps.per.api.person_extra_info.update_person_extra_info';
73: l_message:=wf_event.test(l_event_name);
74: --
75: if (l_message='MESSAGE') then
76: hr_utility.set_location(l_proc,20);
77: --
78: -- get a key for the event
79: --
80: open get_seq;

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

313: wf_event.raise(p_event_name=>l_event_name
314: ,p_event_key=>l_event_key
315: ,p_event_data=>l_event_data);
316: elsif (l_message='KEY') then
317: hr_utility.set_location(l_proc,30);
318: -- get a key for the event
319: open get_seq;
320: fetch get_seq into l_event_key;
321: close get_seq;

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

323: -- without the event data
324: wf_event.raise(p_event_name=>l_event_name
325: ,p_event_key=>l_event_key);
326: elsif (l_message='NONE') then
327: hr_utility.set_location(l_proc,40);
328: -- no event is required, so do nothing
329: null;
330: end if;
331: hr_utility.set_location('Leaving: '||l_proc,50);

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

327: hr_utility.set_location(l_proc,40);
328: -- no event is required, so do nothing
329: null;
330: end if;
331: hr_utility.set_location('Leaving: '||l_proc,50);
332: end update_person_extra_info_a;
333: end hr_person_extra_info_be2;