DBA Data[Home] [Help]

APPS.HR_PERSON_ABSENCE_BE1 dependencies on HR_UTILITY

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

105: select per_wf_events_s.nextval from dual;
106: --
107: l_proc varchar2(72):=' hr_person_absence_be1.create_person_absence_a';
108: begin
109: hr_utility.set_location('Entering: '||l_proc,10);
110: -- check the status of the business event
111: l_event_name:='oracle.apps.per.api.person_absence.create_person_absence';
112: l_message:=wf_event.test(l_event_name);
113: --

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

111: l_event_name:='oracle.apps.per.api.person_absence.create_person_absence';
112: l_message:=wf_event.test(l_event_name);
113: --
114: if (l_message='MESSAGE') then
115: hr_utility.set_location(l_proc,20);
116: --
117: -- get a key for the event
118: --
119: open get_seq;

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

540: wf_event.raise(p_event_name=>l_event_name
541: ,p_event_key=>l_event_key
542: ,p_event_data=>l_event_data);
543: elsif (l_message='KEY') then
544: hr_utility.set_location(l_proc,30);
545: -- get a key for the event
546: open get_seq;
547: fetch get_seq into l_event_key;
548: close get_seq;

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

550: -- without the event data
551: wf_event.raise(p_event_name=>l_event_name
552: ,p_event_key=>l_event_key);
553: elsif (l_message='NONE') then
554: hr_utility.set_location(l_proc,40);
555: -- no event is required, so do nothing
556: null;
557: end if;
558: hr_utility.set_location('Leaving: '||l_proc,50);

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

554: hr_utility.set_location(l_proc,40);
555: -- no event is required, so do nothing
556: null;
557: end if;
558: hr_utility.set_location('Leaving: '||l_proc,50);
559: end create_person_absence_a;
560: end hr_person_absence_be1;