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 73: hr_utility.set_location(l_proc,30);

69: ,p_event_key=>l_event_key
70: ,p_event_data=>l_event_data);
71: end if;
72: elsif (l_message='KEY') then
73: hr_utility.set_location(l_proc,30);
74: -- get a key for the event
75: open get_seq;
76: fetch get_seq into l_event_key;
77: close get_seq;

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

90: wf_event.raise(p_event_name=>l_event_name
91: ,p_event_key=>l_event_key);
92: end if;
93: elsif (l_message='NONE') then
94: hr_utility.set_location(l_proc,40);
95: -- no event is required, so do nothing
96: null;
97: end if;
98: hr_utility.set_location('Leaving: '||l_proc,50);

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

94: hr_utility.set_location(l_proc,40);
95: -- no event is required, so do nothing
96: null;
97: end if;
98: hr_utility.set_location('Leaving: '||l_proc,50);
99: end reverse_terminate_employee_a;
100: end hr_ex_employee_be4;