DBA Data[Home] [Help]

APPS.PAY_ELEMENT_LINK_BE2 dependencies on HR_UTILITY

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

116: select per_wf_events_s.nextval from dual;
117: --
118: l_proc varchar2(72):=' pay_element_link_be2.update_element_link_a';
119: begin
120: hr_utility.set_location('Entering: '||l_proc,10);
121: -- check the status of the business event
122: l_event_name:='oracle.apps.pay.api.element_link.update_element_link';
123: l_message:=wf_event.test(l_event_name);
124: --

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

122: l_event_name:='oracle.apps.pay.api.element_link.update_element_link';
123: l_message:=wf_event.test(l_event_name);
124: --
125: if (l_message='MESSAGE') then
126: hr_utility.set_location(l_proc,20);
127: --
128: -- get a key for the event
129: --
130: open get_seq;

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

574: ,p_event_key=>l_event_key
575: ,p_event_data=>l_event_data);
576: end if;
577: elsif (l_message='KEY') then
578: hr_utility.set_location(l_proc,30);
579: -- get a key for the event
580: open get_seq;
581: fetch get_seq into l_event_key;
582: close get_seq;

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

595: wf_event.raise(p_event_name=>l_event_name
596: ,p_event_key=>l_event_key);
597: end if;
598: elsif (l_message='NONE') then
599: hr_utility.set_location(l_proc,40);
600: -- no event is required, so do nothing
601: null;
602: end if;
603: hr_utility.set_location('Leaving: '||l_proc,50);

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

599: hr_utility.set_location(l_proc,40);
600: -- no event is required, so do nothing
601: null;
602: end if;
603: hr_utility.set_location('Leaving: '||l_proc,50);
604: end update_element_link_a;
605: end pay_element_link_be2;