DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BE2 dependencies on HR_UTILITY

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

144: select per_wf_events_s.nextval from dual;
145: --
146: l_proc varchar2(72):=' hr_assignment_be2.update_emp_asg_a';
147: begin
148: hr_utility.set_location('Entering: '||l_proc,10);
149: -- check the status of the business event
150: l_event_name:='oracle.apps.per.api.assignment.update_emp_asg';
151: l_message:=wf_event.test(l_event_name);
152: --

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

150: l_event_name:='oracle.apps.per.api.assignment.update_emp_asg';
151: l_message:=wf_event.test(l_event_name);
152: --
153: if (l_message='MESSAGE') then
154: hr_utility.set_location(l_proc,20);
155: --
156: -- get a key for the event
157: --
158: open get_seq;

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

726: ,p_event_key=>l_event_key
727: ,p_event_data=>l_event_data);
728: end if;
729: elsif (l_message='KEY') then
730: hr_utility.set_location(l_proc,30);
731: -- get a key for the event
732: open get_seq;
733: fetch get_seq into l_event_key;
734: close get_seq;

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

747: wf_event.raise(p_event_name=>l_event_name
748: ,p_event_key=>l_event_key);
749: end if;
750: elsif (l_message='NONE') then
751: hr_utility.set_location(l_proc,40);
752: -- no event is required, so do nothing
753: null;
754: end if;
755: hr_utility.set_location('Leaving: '||l_proc,50);

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

751: hr_utility.set_location(l_proc,40);
752: -- no event is required, so do nothing
753: null;
754: end if;
755: hr_utility.set_location('Leaving: '||l_proc,50);
756: end update_emp_asg_a;
757: end hr_assignment_be2;