DBA Data[Home] [Help]

APPS.PAY_ELEMENT_TYPES_BE1 dependencies on HR_UTILITY

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

109: select per_wf_events_s.nextval from dual;
110: --
111: l_proc varchar2(72):=' pay_element_types_be1.create_element_type_a';
112: begin
113: hr_utility.set_location('Entering: '||l_proc,10);
114: -- check the status of the business event
115: l_event_name:='oracle.apps.pay.api.element_types.create_element_type';
116: l_message:=wf_event.test(l_event_name);
117: --

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

115: l_event_name:='oracle.apps.pay.api.element_types.create_element_type';
116: l_message:=wf_event.test(l_event_name);
117: --
118: if (l_message='MESSAGE') then
119: hr_utility.set_location(l_proc,20);
120: --
121: -- get a key for the event
122: --
123: open get_seq;

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

543: ,p_event_key=>l_event_key
544: ,p_event_data=>l_event_data);
545: end if;
546: elsif (l_message='KEY') then
547: hr_utility.set_location(l_proc,30);
548: -- get a key for the event
549: open get_seq;
550: fetch get_seq into l_event_key;
551: close get_seq;

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

564: wf_event.raise(p_event_name=>l_event_name
565: ,p_event_key=>l_event_key);
566: end if;
567: elsif (l_message='NONE') then
568: hr_utility.set_location(l_proc,40);
569: -- no event is required, so do nothing
570: null;
571: end if;
572: hr_utility.set_location('Leaving: '||l_proc,50);

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

568: hr_utility.set_location(l_proc,40);
569: -- no event is required, so do nothing
570: null;
571: end if;
572: hr_utility.set_location('Leaving: '||l_proc,50);
573: end create_element_type_a;
574: end pay_element_types_be1;