DBA Data[Home] [Help]

APPS.OTA_CERT_ENROLLMENT_BE1 dependencies on HR_UTILITY

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

47: select per_wf_events_s.nextval from dual;
48: --
49: l_proc varchar2(72):=' ota_cert_enrollment_be1.create_cert_enrollment_a';
50: begin
51: hr_utility.set_location('Entering: '||l_proc,10);
52: -- check the status of the business event
53: l_event_name:='oracle.apps.ota.api.cert_enrollment.create_cert_enrollment';
54: l_message:=wf_event.test(l_event_name);
55: --

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

53: l_event_name:='oracle.apps.ota.api.cert_enrollment.create_cert_enrollment';
54: l_message:=wf_event.test(l_event_name);
55: --
56: if (l_message='MESSAGE') then
57: hr_utility.set_location(l_proc,20);
58: --
59: -- get a key for the event
60: --
61: open get_seq;

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

218: wf_event.raise(p_event_name=>l_event_name
219: ,p_event_key=>l_event_key
220: ,p_event_data=>l_event_data);
221: elsif (l_message='KEY') then
222: hr_utility.set_location(l_proc,30);
223: -- get a key for the event
224: open get_seq;
225: fetch get_seq into l_event_key;
226: close get_seq;

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

228: -- without the event data
229: wf_event.raise(p_event_name=>l_event_name
230: ,p_event_key=>l_event_key);
231: elsif (l_message='NONE') then
232: hr_utility.set_location(l_proc,40);
233: -- no event is required, so do nothing
234: null;
235: end if;
236: hr_utility.set_location('Leaving: '||l_proc,50);

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

232: hr_utility.set_location(l_proc,40);
233: -- no event is required, so do nothing
234: null;
235: end if;
236: hr_utility.set_location('Leaving: '||l_proc,50);
237: end create_cert_enrollment_a;
238: end ota_cert_enrollment_be1;