DBA Data[Home] [Help]

APPS.OTA_DELEGATE_BOOKING_BE1 dependencies on HR_UTILITY

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

98: select per_wf_events_s.nextval from dual;
99: --
100: l_proc varchar2(72):=' ota_delegate_booking_be1.create_delegate_booking_a';
101: begin
102: hr_utility.set_location('Entering: '||l_proc,10);
103: -- check the status of the business event
104: l_event_name:='oracle.apps.ota.api.delegate_booking.create_delegate_booking';
105: l_message:=wf_event.test(l_event_name);
106: --

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

104: l_event_name:='oracle.apps.ota.api.delegate_booking.create_delegate_booking';
105: l_message:=wf_event.test(l_event_name);
106: --
107: if (l_message='MESSAGE') then
108: hr_utility.set_location(l_proc,20);
109: --
110: -- get a key for the event
111: --
112: open get_seq;

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

473: wf_event.raise(p_event_name=>l_event_name
474: ,p_event_key=>l_event_key
475: ,p_event_data=>l_event_data);
476: elsif (l_message='KEY') then
477: hr_utility.set_location(l_proc,30);
478: -- get a key for the event
479: open get_seq;
480: fetch get_seq into l_event_key;
481: close get_seq;

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

483: -- without the event data
484: wf_event.raise(p_event_name=>l_event_name
485: ,p_event_key=>l_event_key);
486: elsif (l_message='NONE') then
487: hr_utility.set_location(l_proc,40);
488: -- no event is required, so do nothing
489: null;
490: end if;
491: hr_utility.set_location('Leaving: '||l_proc,50);

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

487: hr_utility.set_location(l_proc,40);
488: -- no event is required, so do nothing
489: null;
490: end if;
491: hr_utility.set_location('Leaving: '||l_proc,50);
492: end create_delegate_booking_a;
493: end ota_delegate_booking_be1;