DBA Data[Home] [Help]

APPS.HR_PERSONAL_PAY_METHOD_BE2 dependencies on HR_UTILITY

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

108: select per_wf_events_s.nextval from dual;
109: --
110: l_proc varchar2(72):=' hr_personal_pay_method_be2.update_personal_pay_method_a';
111: begin
112: hr_utility.set_location('Entering: '||l_proc,10);
113: -- check the status of the business event
114: l_event_name:='oracle.apps.per.api.personal_pay_method.update_personal_pay_method';
115: l_message:=wf_event.test(l_event_name);
116: --

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

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

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

534: ,p_event_key=>l_event_key
535: ,p_event_data=>l_event_data);
536: end if;
537: elsif (l_message='KEY') then
538: hr_utility.set_location(l_proc,30);
539: -- get a key for the event
540: open get_seq;
541: fetch get_seq into l_event_key;
542: close get_seq;

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

555: wf_event.raise(p_event_name=>l_event_name
556: ,p_event_key=>l_event_key);
557: end if;
558: elsif (l_message='NONE') then
559: hr_utility.set_location(l_proc,40);
560: -- no event is required, so do nothing
561: null;
562: end if;
563: hr_utility.set_location('Leaving: '||l_proc,50);

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

559: hr_utility.set_location(l_proc,40);
560: -- no event is required, so do nothing
561: null;
562: end if;
563: hr_utility.set_location('Leaving: '||l_proc,50);
564: end update_personal_pay_method_a;
565: end hr_personal_pay_method_be2;