DBA Data[Home] [Help]

APPS.HR_APPLICATION_BE1 dependencies on HR_UTILITY

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

40: select per_wf_events_s.nextval from dual;
41: --
42: l_proc varchar2(72):=' hr_application_be1.update_apl_details_a';
43: begin
44: hr_utility.set_location('Entering: '||l_proc,10);
45: -- check the status of the business event
46: l_event_name:='oracle.apps.per.api.application.update_apl_details';
47: l_message:=wf_event.test(l_event_name);
48: --

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

46: l_event_name:='oracle.apps.per.api.application.update_apl_details';
47: l_message:=wf_event.test(l_event_name);
48: --
49: if (l_message='MESSAGE') then
50: hr_utility.set_location(l_proc,20);
51: --
52: -- get a key for the event
53: --
54: open get_seq;

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

184: ,p_event_key=>l_event_key
185: ,p_event_data=>l_event_data);
186: --
187: elsif (l_message='KEY') then
188: hr_utility.set_location(l_proc,30);
189: -- get a key for the event
190: open get_seq;
191: fetch get_seq into l_event_key;
192: close get_seq;

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

195: wf_event.raise(p_event_name=>l_event_name
196: ,p_event_key=>l_event_key);
197: --
198: elsif (l_message='NONE') then
199: hr_utility.set_location(l_proc,40);
200: -- no event is required, so do nothing
201: null;
202: end if;
203: hr_utility.set_location('Leaving: '||l_proc,50);

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

199: hr_utility.set_location(l_proc,40);
200: -- no event is required, so do nothing
201: null;
202: end if;
203: hr_utility.set_location('Leaving: '||l_proc,50);
204: end update_apl_details_a;
205: end hr_application_be1;