DBA Data[Home] [Help]

APPS.HR_LOCATION_BE2 dependencies on HR_UTILITY

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

95: select per_wf_events_s.nextval from dual;
96: --
97: l_proc varchar2(72):=' hr_location_be2.update_location_a';
98: begin
99: hr_utility.set_location('Entering: '||l_proc,10);
100: -- check the status of the business event
101: l_event_name:='oracle.apps.per.api.location.update_location';
102: l_message:=wf_event.test(l_event_name);
103: --

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

101: l_event_name:='oracle.apps.per.api.location.update_location';
102: l_message:=wf_event.test(l_event_name);
103: --
104: if (l_message='MESSAGE') then
105: hr_utility.set_location(l_proc,20);
106: --
107: -- get a key for the event
108: --
109: open get_seq;

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

458: wf_event.raise(p_event_name=>l_event_name
459: ,p_event_key=>l_event_key
460: ,p_event_data=>l_event_data);
461: elsif (l_message='KEY') then
462: hr_utility.set_location(l_proc,30);
463: -- get a key for the event
464: open get_seq;
465: fetch get_seq into l_event_key;
466: close get_seq;

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

468: -- without the event data
469: wf_event.raise(p_event_name=>l_event_name
470: ,p_event_key=>l_event_key);
471: elsif (l_message='NONE') then
472: hr_utility.set_location(l_proc,40);
473: -- no event is required, so do nothing
474: null;
475: end if;
476: hr_utility.set_location('Leaving: '||l_proc,50);

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

472: hr_utility.set_location(l_proc,40);
473: -- no event is required, so do nothing
474: null;
475: end if;
476: hr_utility.set_location('Leaving: '||l_proc,50);
477: end update_location_a;
478: end hr_location_be2;