DBA Data[Home] [Help]

APPS.HR_APPLICANT_BE2 dependencies on HR_UTILITY

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

25: select per_wf_events_s.nextval from dual;
26: --
27: l_proc varchar2(72):=' hr_applicant_be2. hire_applicant_a';
28: begin
29: hr_utility.set_location('Entering: '||l_proc,10);
30: -- check the status of the business event
31: l_event_name:='oracle.apps.per.api.applicant. hire_applicant';
32: l_message:=wf_event.test(l_event_name);
33: --

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

31: l_event_name:='oracle.apps.per.api.applicant. hire_applicant';
32: l_message:=wf_event.test(l_event_name);
33: --
34: if (l_message='MESSAGE') then
35: hr_utility.set_location(l_proc,20);
36: --
37: -- get a key for the event
38: --
39: open get_seq;

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

127: ,p_event_key=>l_event_key
128: ,p_event_data=>l_event_data);
129: end if;
130: elsif (l_message='KEY') then
131: hr_utility.set_location(l_proc,30);
132: -- get a key for the event
133: open get_seq;
134: fetch get_seq into l_event_key;
135: close get_seq;

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

148: wf_event.raise(p_event_name=>l_event_name
149: ,p_event_key=>l_event_key);
150: end if;
151: elsif (l_message='NONE') then
152: hr_utility.set_location(l_proc,40);
153: -- no event is required, so do nothing
154: null;
155: end if;
156: hr_utility.set_location('Leaving: '||l_proc,50);

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

152: hr_utility.set_location(l_proc,40);
153: -- no event is required, so do nothing
154: null;
155: end if;
156: hr_utility.set_location('Leaving: '||l_proc,50);
157: end hire_applicant_a;
158: end hr_applicant_be2;