DBA Data[Home] [Help]

APPS.HR_APPLICANT_BE4 dependencies on HR_UTILITY

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

21: select per_wf_events_s.nextval from dual;
22: --
23: l_proc varchar2(72):=' hr_applicant_be4.convert_to_applicant_a';
24: begin
25: hr_utility.set_location('Entering: '||l_proc,10);
26: -- check the status of the business event
27: l_event_name:='oracle.apps.per.api.applicant.convert_to_applicant';
28: l_message:=wf_event.test(l_event_name);
29: --

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

27: l_event_name:='oracle.apps.per.api.applicant.convert_to_applicant';
28: l_message:=wf_event.test(l_event_name);
29: --
30: if (l_message='MESSAGE') then
31: hr_utility.set_location(l_proc,20);
32: --
33: -- get a key for the event
34: --
35: open get_seq;

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

103: ,p_event_key=>l_event_key
104: ,p_event_data=>l_event_data);
105: end if;
106: elsif (l_message='KEY') then
107: hr_utility.set_location(l_proc,30);
108: -- get a key for the event
109: open get_seq;
110: fetch get_seq into l_event_key;
111: close get_seq;

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

124: wf_event.raise(p_event_name=>l_event_name
125: ,p_event_key=>l_event_key);
126: end if;
127: elsif (l_message='NONE') then
128: hr_utility.set_location(l_proc,40);
129: -- no event is required, so do nothing
130: null;
131: end if;
132: hr_utility.set_location('Leaving: '||l_proc,50);

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

128: hr_utility.set_location(l_proc,40);
129: -- no event is required, so do nothing
130: null;
131: end if;
132: hr_utility.set_location('Leaving: '||l_proc,50);
133: end convert_to_applicant_a;
134: end hr_applicant_be4;