DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BEH 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_beH.final_process_cwk_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.final_process_cwk_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.final_process_cwk_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 106: hr_utility.set_location(l_proc,30);

102: ,p_event_key=>l_event_key
103: ,p_event_data=>l_event_data);
104: end if;
105: elsif (l_message='KEY') then
106: hr_utility.set_location(l_proc,30);
107: -- get a key for the event
108: open get_seq;
109: fetch get_seq into l_event_key;
110: close get_seq;

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

123: wf_event.raise(p_event_name=>l_event_name
124: ,p_event_key=>l_event_key);
125: end if;
126: elsif (l_message='NONE') then
127: hr_utility.set_location(l_proc,40);
128: -- no event is required, so do nothing
129: null;
130: end if;
131: hr_utility.set_location('Leaving: '||l_proc,50);

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

127: hr_utility.set_location(l_proc,40);
128: -- no event is required, so do nothing
129: null;
130: end if;
131: hr_utility.set_location('Leaving: '||l_proc,50);
132: end final_process_cwk_asg_a;
133: end hr_assignment_beH;