DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BE5 dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

959: hr_utility.set_location(l_proc,40);
960: -- no event is required, so do nothing
961: null;
962: end if;
963: hr_utility.set_location('Leaving: '||l_proc,50);
964: end update_apl_asg_a;
965: end hr_assignment_be5;