DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BE3 dependencies on HR_UTILITY

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

70: select per_wf_events_s.nextval from dual;
71: --
72: l_proc varchar2(72):=' hr_assignment_be3.update_emp_asg_criteria_a';
73: begin
74: hr_utility.set_location('Entering: '||l_proc,10);
75: -- check the status of the business event
76: l_event_name:='oracle.apps.per.api.assignment.update_emp_asg_criteria';
77: l_message:=wf_event.test(l_event_name);
78: --

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

76: l_event_name:='oracle.apps.per.api.assignment.update_emp_asg_criteria';
77: l_message:=wf_event.test(l_event_name);
78: --
79: if (l_message='MESSAGE') then
80: hr_utility.set_location(l_proc,20);
81: --
82: -- get a key for the event
83: --
84: open get_seq;

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

360: ,p_event_key=>l_event_key
361: ,p_event_data=>l_event_data);
362: end if;
363: elsif (l_message='KEY') then
364: hr_utility.set_location(l_proc,30);
365: -- get a key for the event
366: open get_seq;
367: fetch get_seq into l_event_key;
368: close get_seq;

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

381: wf_event.raise(p_event_name=>l_event_name
382: ,p_event_key=>l_event_key);
383: end if;
384: elsif (l_message='NONE') then
385: hr_utility.set_location(l_proc,40);
386: -- no event is required, so do nothing
387: null;
388: end if;
389: hr_utility.set_location('Leaving: '||l_proc,50);

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

385: hr_utility.set_location(l_proc,40);
386: -- no event is required, so do nothing
387: null;
388: end if;
389: hr_utility.set_location('Leaving: '||l_proc,50);
390: end update_emp_asg_criteria_a;
391: end hr_assignment_be3;