DBA Data[Home] [Help]

APPS.HR_APPLICANT_BE1 dependencies on HR_UTILITY

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

139: select per_wf_events_s.nextval from dual;
140: --
141: l_proc varchar2(72):=' hr_applicant_be1.create_applicant_a';
142: begin
143: hr_utility.set_location('Entering: '||l_proc,10);
144: -- check the status of the business event
145: l_event_name:='oracle.apps.per.api.applicant.create_applicant';
146: l_message:=wf_event.test(l_event_name);
147: --

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

145: l_event_name:='oracle.apps.per.api.applicant.create_applicant';
146: l_message:=wf_event.test(l_event_name);
147: --
148: if (l_message='MESSAGE') then
149: hr_utility.set_location(l_proc,20);
150: --
151: -- get a key for the event
152: --
153: open get_seq;

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

697: ,p_event_key=>l_event_key
698: ,p_event_data=>l_event_data);
699: end if;
700: elsif (l_message='KEY') then
701: hr_utility.set_location(l_proc,30);
702: -- get a key for the event
703: open get_seq;
704: fetch get_seq into l_event_key;
705: close get_seq;

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

718: wf_event.raise(p_event_name=>l_event_name
719: ,p_event_key=>l_event_key);
720: end if;
721: elsif (l_message='NONE') then
722: hr_utility.set_location(l_proc,40);
723: -- no event is required, so do nothing
724: null;
725: end if;
726: hr_utility.set_location('Leaving: '||l_proc,50);

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

722: hr_utility.set_location(l_proc,40);
723: -- no event is required, so do nothing
724: null;
725: end if;
726: hr_utility.set_location('Leaving: '||l_proc,50);
727: end create_applicant_a;
728: end hr_applicant_be1;