DBA Data[Home] [Help]

APPS.HR_EX_EMPLOYEE_BE1 dependencies on HR_UTILITY

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

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

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

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

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

426: ,p_event_key=>l_event_key
427: ,p_event_data=>l_event_data);
428: --
429: elsif (l_message='KEY') then
430: hr_utility.set_location(l_proc,30);
431: -- get a key for the event
432: open get_seq;
433: fetch get_seq into l_event_key;
434: close get_seq;

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

437: wf_event.raise(p_event_name=>l_event_name
438: ,p_event_key=>l_event_key);
439: --
440: elsif (l_message='NONE') then
441: hr_utility.set_location(l_proc,40);
442: -- no event is required, so do nothing
443: null;
444: end if;
445: hr_utility.set_location('Leaving: '||l_proc,50);

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

441: hr_utility.set_location(l_proc,40);
442: -- no event is required, so do nothing
443: null;
444: end if;
445: hr_utility.set_location('Leaving: '||l_proc,50);
446: end actual_termination_emp_a;
447: end hr_ex_employee_be1;