DBA Data[Home] [Help]

APPS.HR_LOCATION_BE1 dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

477: hr_utility.set_location(l_proc,40);
478: -- no event is required, so do nothing
479: null;
480: end if;
481: hr_utility.set_location('Leaving: '||l_proc,50);
482: end create_location_a;
483: end hr_location_be1;