DBA Data[Home] [Help]

APPS.HR_PERSON_BE1 dependencies on HR_UTILITY

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

152: select per_wf_events_s.nextval from dual;
153: --
154: l_proc varchar2(72):=' hr_person_be1.update_person_a';
155: begin
156: hr_utility.set_location('Entering: '||l_proc,10);
157: -- check the status of the business event
158: l_event_name:='oracle.apps.per.api.person.update_person';
159: l_message:=wf_event.test(l_event_name);
160: --

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

158: l_event_name:='oracle.apps.per.api.person.update_person';
159: l_message:=wf_event.test(l_event_name);
160: --
161: if (l_message='MESSAGE') then
162: hr_utility.set_location(l_proc,20);
163: --
164: -- get a key for the event
165: --
166: open get_seq;

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

766: ,p_event_key=>l_event_key
767: ,p_event_data=>l_event_data);
768: end if;
769: elsif (l_message='KEY') then
770: hr_utility.set_location(l_proc,30);
771: -- get a key for the event
772: open get_seq;
773: fetch get_seq into l_event_key;
774: close get_seq;

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

787: wf_event.raise(p_event_name=>l_event_name
788: ,p_event_key=>l_event_key);
789: end if;
790: elsif (l_message='NONE') then
791: hr_utility.set_location(l_proc,40);
792: -- no event is required, so do nothing
793: null;
794: end if;
795: hr_utility.set_location('Leaving: '||l_proc,50);

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

791: hr_utility.set_location(l_proc,40);
792: -- no event is required, so do nothing
793: null;
794: end if;
795: hr_utility.set_location('Leaving: '||l_proc,50);
796: end update_person_a;
797: end hr_person_be1;