DBA Data[Home] [Help]

APPS.HR_EX_EMPLOYEE_BE1 dependencies on HR_UTILITY

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

83: select per_wf_events_s.nextval from dual;
84: --
85: l_proc varchar2(72):=' hr_ex_employee_be1.actual_termination_emp_a';
86: begin
87: hr_utility.set_location('Entering: '||l_proc,10);
88: -- check the status of the business event
89: l_event_name:='oracle.apps.per.api.ex_employee.actual_termination_emp';
90: l_message:=wf_event.test(l_event_name);
91: --

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

89: l_event_name:='oracle.apps.per.api.ex_employee.actual_termination_emp';
90: l_message:=wf_event.test(l_event_name);
91: --
92: if (l_message='MESSAGE') then
93: hr_utility.set_location(l_proc,20);
94: --
95: -- get a key for the event
96: --
97: open get_seq;

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

441: ,p_event_key=>l_event_key
442: ,p_event_data=>l_event_data);
443: end if;
444: elsif (l_message='KEY') then
445: hr_utility.set_location(l_proc,30);
446: -- get a key for the event
447: open get_seq;
448: fetch get_seq into l_event_key;
449: close get_seq;

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

462: wf_event.raise(p_event_name=>l_event_name
463: ,p_event_key=>l_event_key);
464: end if;
465: elsif (l_message='NONE') then
466: hr_utility.set_location(l_proc,40);
467: -- no event is required, so do nothing
468: null;
469: end if;
470: hr_utility.set_location('Leaving: '||l_proc,50);

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

466: hr_utility.set_location(l_proc,40);
467: -- no event is required, so do nothing
468: null;
469: end if;
470: hr_utility.set_location('Leaving: '||l_proc,50);
471: end actual_termination_emp_a;
472: end hr_ex_employee_be1;