DBA Data[Home] [Help]

APPS.IRC_ASSIGNMENT_DETAILS_BE1 dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

134: hr_utility.set_location(l_proc,40);
135: -- no event is required, so do nothing
136: null;
137: end if;
138: hr_utility.set_location('Leaving: '||l_proc,50);
139: end create_assignment_details_a;
140: end irc_assignment_details_be1;