DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BE8 dependencies on HR_UTILITY

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

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

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

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

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

939: ,p_event_key=>l_event_key
940: ,p_event_data=>l_event_data);
941: end if;
942: elsif (l_message='KEY') then
943: hr_utility.set_location(l_proc,30);
944: -- get a key for the event
945: open get_seq;
946: fetch get_seq into l_event_key;
947: close get_seq;

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

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

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

964: hr_utility.set_location(l_proc,40);
965: -- no event is required, so do nothing
966: null;
967: end if;
968: hr_utility.set_location('Leaving: '||l_proc,50);
969: end create_secondary_apl_asg_a;
970: end hr_assignment_be8;