DBA Data[Home] [Help]

APPS.HR_PERSONAL_PAY_METHOD_BE1 dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

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