DBA Data[Home] [Help]

APPS.PAY_ELEMENT_TYPES_BE2 dependencies on HR_UTILITY

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

104: select per_wf_events_s.nextval from dual;
105: --
106: l_proc varchar2(72):=' pay_element_types_be2.update_element_type_a';
107: begin
108: hr_utility.set_location('Entering: '||l_proc,10);
109: -- check the status of the business event
110: l_event_name:='oracle.apps.pay.api.element_types.update_element_type';
111: l_message:=wf_event.test(l_event_name);
112: --

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

110: l_event_name:='oracle.apps.pay.api.element_types.update_element_type';
111: l_message:=wf_event.test(l_event_name);
112: --
113: if (l_message='MESSAGE') then
114: hr_utility.set_location(l_proc,20);
115: --
116: -- get a key for the event
117: --
118: open get_seq;

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

526: ,p_event_key=>l_event_key
527: ,p_event_data=>l_event_data);
528: end if;
529: elsif (l_message='KEY') then
530: hr_utility.set_location(l_proc,30);
531: -- get a key for the event
532: open get_seq;
533: fetch get_seq into l_event_key;
534: close get_seq;

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

547: wf_event.raise(p_event_name=>l_event_name
548: ,p_event_key=>l_event_key);
549: end if;
550: elsif (l_message='NONE') then
551: hr_utility.set_location(l_proc,40);
552: -- no event is required, so do nothing
553: null;
554: end if;
555: hr_utility.set_location('Leaving: '||l_proc,50);

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

551: hr_utility.set_location(l_proc,40);
552: -- no event is required, so do nothing
553: null;
554: end if;
555: hr_utility.set_location('Leaving: '||l_proc,50);
556: end update_element_type_a;
557: end pay_element_types_be2;