DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BEE dependencies on HR_UTILITY

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

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

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

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

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

84: ,p_event_key=>l_event_key
85: ,p_event_data=>l_event_data);
86: end if;
87: elsif (l_message='KEY') then
88: hr_utility.set_location(l_proc,30);
89: -- get a key for the event
90: open get_seq;
91: fetch get_seq into l_event_key;
92: close get_seq;

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

105: wf_event.raise(p_event_name=>l_event_name
106: ,p_event_key=>l_event_key);
107: end if;
108: elsif (l_message='NONE') then
109: hr_utility.set_location(l_proc,40);
110: -- no event is required, so do nothing
111: null;
112: end if;
113: hr_utility.set_location('Leaving: '||l_proc,50);

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

109: hr_utility.set_location(l_proc,40);
110: -- no event is required, so do nothing
111: null;
112: end if;
113: hr_utility.set_location('Leaving: '||l_proc,50);
114: end set_new_primary_asg_a;
115: end hr_assignment_beE;