DBA Data[Home] [Help]

APPS.HR_EX_EMPLOYEE_BE4 dependencies on HR_UTILITY

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

15: select per_wf_events_s.nextval from dual;
16: --
17: l_proc varchar2(72):=' hr_ex_employee_be4.reverse_terminate_employee_a';
18: begin
19: hr_utility.set_location('Entering: '||l_proc,10);
20: -- check the status of the business event
21: l_event_name:='oracle.apps.per.api.ex_employee.reverse_terminate_employee';
22: l_message:=wf_event.test(l_event_name);
23: --

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

21: l_event_name:='oracle.apps.per.api.ex_employee.reverse_terminate_employee';
22: l_message:=wf_event.test(l_event_name);
23: --
24: if (l_message='MESSAGE') then
25: hr_utility.set_location(l_proc,20);
26: --
27: -- get a key for the event
28: --
29: open get_seq;

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

59: ,p_event_key=>l_event_key
60: ,p_event_data=>l_event_data);
61: --
62: elsif (l_message='KEY') then
63: hr_utility.set_location(l_proc,30);
64: -- get a key for the event
65: open get_seq;
66: fetch get_seq into l_event_key;
67: close get_seq;

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

70: wf_event.raise(p_event_name=>l_event_name
71: ,p_event_key=>l_event_key);
72: --
73: elsif (l_message='NONE') then
74: hr_utility.set_location(l_proc,40);
75: -- no event is required, so do nothing
76: null;
77: end if;
78: hr_utility.set_location('Leaving: '||l_proc,50);

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

74: hr_utility.set_location(l_proc,40);
75: -- no event is required, so do nothing
76: null;
77: end if;
78: hr_utility.set_location('Leaving: '||l_proc,50);
79: end reverse_terminate_employee_a;
80: end hr_ex_employee_be4;