DBA Data[Home] [Help]

APPS.IRC_ASSIGNMENT_DETAILS_BE2 dependencies on HR_UTILITY

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

24: select per_wf_events_s.nextval from dual;
25: --
26: l_proc varchar2(72):=' irc_assignment_details_be2.update_assignment_details_a';
27: begin
28: hr_utility.set_location('Entering: '||l_proc,10);
29: -- check the status of the business event
30: l_event_name:='oracle.apps.per.irc.api.assignment_details.update_assignment_details';
31: l_message:=wf_event.test(l_event_name);
32: --

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

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

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

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

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

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

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

139: hr_utility.set_location(l_proc,40);
140: -- no event is required, so do nothing
141: null;
142: end if;
143: hr_utility.set_location('Leaving: '||l_proc,50);
144: end update_assignment_details_a;
145: end irc_assignment_details_be2;