DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BE1 dependencies on HR_UTILITY

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

186: select per_wf_events_s.nextval from dual;
187: --
188: l_proc varchar2(72):=' hr_assignment_be1.create_secondary_emp_asg_a';
189: begin
190: hr_utility.set_location('Entering: '||l_proc,10);
191: -- check the status of the business event
192: l_event_name:='oracle.apps.per.api.assignment.create_secondary_emp_asg';
193: l_message:=wf_event.test(l_event_name);
194: --

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

192: l_event_name:='oracle.apps.per.api.assignment.create_secondary_emp_asg';
193: l_message:=wf_event.test(l_event_name);
194: --
195: if (l_message='MESSAGE') then
196: hr_utility.set_location(l_proc,20);
197: --
198: -- get a key for the event
199: --
200: open get_seq;

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

932: ,p_event_key=>l_event_key
933: ,p_event_data=>l_event_data);
934: end if;
935: elsif (l_message='KEY') then
936: hr_utility.set_location(l_proc,30);
937: -- get a key for the event
938: open get_seq;
939: fetch get_seq into l_event_key;
940: close get_seq;

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

953: wf_event.raise(p_event_name=>l_event_name
954: ,p_event_key=>l_event_key);
955: end if;
956: elsif (l_message='NONE') then
957: hr_utility.set_location(l_proc,40);
958: -- no event is required, so do nothing
959: null;
960: end if;
961: hr_utility.set_location('Leaving: '||l_proc,50);

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

957: hr_utility.set_location(l_proc,40);
958: -- no event is required, so do nothing
959: null;
960: end if;
961: hr_utility.set_location('Leaving: '||l_proc,50);
962: end create_secondary_emp_asg_a;
963: end hr_assignment_be1;