DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BE4 dependencies on HR_UTILITY

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

22: select per_wf_events_s.nextval from dual;
23: --
24: l_proc varchar2(72):=' hr_assignment_be4.actual_termination_emp_asg_a';
25: begin
26: hr_utility.set_location('Entering: '||l_proc,10);
27: -- check the status of the business event
28: l_event_name:='oracle.apps.per.api.assignment.actual_termination_emp_asg';
29: l_message:=wf_event.test(l_event_name);
30: --

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

28: l_event_name:='oracle.apps.per.api.assignment.actual_termination_emp_asg';
29: l_message:=wf_event.test(l_event_name);
30: --
31: if (l_message='MESSAGE') then
32: hr_utility.set_location(l_proc,20);
33: --
34: -- get a key for the event
35: --
36: open get_seq;

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

112: ,p_event_key=>l_event_key
113: ,p_event_data=>l_event_data);
114: end if;
115: elsif (l_message='KEY') then
116: hr_utility.set_location(l_proc,30);
117: -- get a key for the event
118: open get_seq;
119: fetch get_seq into l_event_key;
120: close get_seq;

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

133: wf_event.raise(p_event_name=>l_event_name
134: ,p_event_key=>l_event_key);
135: end if;
136: elsif (l_message='NONE') then
137: hr_utility.set_location(l_proc,40);
138: -- no event is required, so do nothing
139: null;
140: end if;
141: hr_utility.set_location('Leaving: '||l_proc,50);

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

137: hr_utility.set_location(l_proc,40);
138: -- no event is required, so do nothing
139: null;
140: end if;
141: hr_utility.set_location('Leaving: '||l_proc,50);
142: end actual_termination_emp_asg_a;
143: end hr_assignment_be4;