DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BE6 dependencies on HR_UTILITY

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

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

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

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

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

94: ,p_event_key=>l_event_key
95: ,p_event_data=>l_event_data);
96: end if;
97: elsif (l_message='KEY') then
98: hr_utility.set_location(l_proc,30);
99: -- get a key for the event
100: open get_seq;
101: fetch get_seq into l_event_key;
102: close get_seq;

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

115: wf_event.raise(p_event_name=>l_event_name
116: ,p_event_key=>l_event_key);
117: end if;
118: elsif (l_message='NONE') then
119: hr_utility.set_location(l_proc,40);
120: -- no event is required, so do nothing
121: null;
122: end if;
123: hr_utility.set_location('Leaving: '||l_proc,50);

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

119: hr_utility.set_location(l_proc,40);
120: -- no event is required, so do nothing
121: null;
122: end if;
123: hr_utility.set_location('Leaving: '||l_proc,50);
124: end activate_emp_asg_a;
125: end hr_assignment_be6;