DBA Data[Home] [Help]

APPS.OTA_CERT_ENROLLMENT_BE1 dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

227: hr_utility.set_location(l_proc,40);
228: -- no event is required, so do nothing
229: null;
230: end if;
231: hr_utility.set_location('Leaving: '||l_proc,50);
232: end create_cert_enrollment_a;
233: end ota_cert_enrollment_be1;