DBA Data[Home] [Help]

APPS.OTA_DELEGATE_BOOKING_BE2 dependencies on HR_UTILITY

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

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

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

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

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

483: wf_event.raise(p_event_name=>l_event_name
484: ,p_event_key=>l_event_key
485: ,p_event_data=>l_event_data);
486: elsif (l_message='KEY') then
487: hr_utility.set_location(l_proc,30);
488: -- get a key for the event
489: open get_seq;
490: fetch get_seq into l_event_key;
491: close get_seq;

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

493: -- without the event data
494: wf_event.raise(p_event_name=>l_event_name
495: ,p_event_key=>l_event_key);
496: elsif (l_message='NONE') then
497: hr_utility.set_location(l_proc,40);
498: -- no event is required, so do nothing
499: null;
500: end if;
501: hr_utility.set_location('Leaving: '||l_proc,50);

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

497: hr_utility.set_location(l_proc,40);
498: -- no event is required, so do nothing
499: null;
500: end if;
501: hr_utility.set_location('Leaving: '||l_proc,50);
502: end update_delegate_booking_a;
503: end ota_delegate_booking_be2;