DBA Data[Home] [Help]

APPS.HR_PERSON_ABSENCE_BE2 dependencies on HR_UTILITY

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

101: select per_wf_events_s.nextval from dual;
102: --
103: l_proc varchar2(72):=' hr_person_absence_be2.update_person_absence_a';
104: begin
105: hr_utility.set_location('Entering: '||l_proc,10);
106: -- check the status of the business event
107: l_event_name:='oracle.apps.per.api.person_absence.update_person_absence';
108: l_message:=wf_event.test(l_event_name);
109: --

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

107: l_event_name:='oracle.apps.per.api.person_absence.update_person_absence';
108: l_message:=wf_event.test(l_event_name);
109: --
110: if (l_message='MESSAGE') then
111: hr_utility.set_location(l_proc,20);
112: --
113: -- get a key for the event
114: --
115: open get_seq;

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

520: wf_event.raise(p_event_name=>l_event_name
521: ,p_event_key=>l_event_key
522: ,p_event_data=>l_event_data);
523: elsif (l_message='KEY') then
524: hr_utility.set_location(l_proc,30);
525: -- get a key for the event
526: open get_seq;
527: fetch get_seq into l_event_key;
528: close get_seq;

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

530: -- without the event data
531: wf_event.raise(p_event_name=>l_event_name
532: ,p_event_key=>l_event_key);
533: elsif (l_message='NONE') then
534: hr_utility.set_location(l_proc,40);
535: -- no event is required, so do nothing
536: null;
537: end if;
538: hr_utility.set_location('Leaving: '||l_proc,50);

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

534: hr_utility.set_location(l_proc,40);
535: -- no event is required, so do nothing
536: null;
537: end if;
538: hr_utility.set_location('Leaving: '||l_proc,50);
539: end update_person_absence_a;
540: end hr_person_absence_be2;