DBA Data[Home] [Help]

APPS.PAY_ELEMENT_LINK_BE1 dependencies on HR_UTILITY

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

123: select per_wf_events_s.nextval from dual;
124: --
125: l_proc varchar2(72):=' pay_element_link_be1.create_element_link_a';
126: begin
127: hr_utility.set_location('Entering: '||l_proc,10);
128: -- check the status of the business event
129: l_event_name:='oracle.apps.pay.api.element_link.create_element_link';
130: l_message:=wf_event.test(l_event_name);
131: --

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

129: l_event_name:='oracle.apps.pay.api.element_link.create_element_link';
130: l_message:=wf_event.test(l_event_name);
131: --
132: if (l_message='MESSAGE') then
133: hr_utility.set_location(l_proc,20);
134: --
135: -- get a key for the event
136: --
137: open get_seq;

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

609: ,p_event_key=>l_event_key
610: ,p_event_data=>l_event_data);
611: end if;
612: elsif (l_message='KEY') then
613: hr_utility.set_location(l_proc,30);
614: -- get a key for the event
615: open get_seq;
616: fetch get_seq into l_event_key;
617: close get_seq;

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

630: wf_event.raise(p_event_name=>l_event_name
631: ,p_event_key=>l_event_key);
632: end if;
633: elsif (l_message='NONE') then
634: hr_utility.set_location(l_proc,40);
635: -- no event is required, so do nothing
636: null;
637: end if;
638: hr_utility.set_location('Leaving: '||l_proc,50);

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

634: hr_utility.set_location(l_proc,40);
635: -- no event is required, so do nothing
636: null;
637: end if;
638: hr_utility.set_location('Leaving: '||l_proc,50);
639: end create_element_link_a;
640: end pay_element_link_be1;