DBA Data[Home] [Help]

APPS.HR_PERSONAL_PAY_METHOD_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):=' hr_personal_pay_method_be1.create_personal_pay_method_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.per.api.personal_pay_method.create_personal_pay_method';
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.per.api.personal_pay_method.create_personal_pay_method';
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 543: hr_utility.set_location(l_proc,30);

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

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

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

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

564: hr_utility.set_location(l_proc,40);
565: -- no event is required, so do nothing
566: null;
567: end if;
568: hr_utility.set_location('Leaving: '||l_proc,50);
569: end create_personal_pay_method_a;
570: end hr_personal_pay_method_be1;