DBA Data[Home] [Help]

APPS.HR_COMPETENCE_ELEMENT_BE3 dependencies on HR_UTILITY

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

46: select per_wf_events_s.nextval from dual;
47: --
48: l_proc varchar2(72):=' hr_competence_element_be3.update_personal_comp_element_a';
49: begin
50: hr_utility.set_location('Entering: '||l_proc,10);
51: -- check the status of the business event
52: l_event_name:='oracle.apps.per.api.competence_element.update_personal_comp_element';
53: l_message:=wf_event.test(l_event_name);
54: --

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

52: l_event_name:='oracle.apps.per.api.competence_element.update_personal_comp_element';
53: l_message:=wf_event.test(l_event_name);
54: --
55: if (l_message='MESSAGE') then
56: hr_utility.set_location(l_proc,20);
57: --
58: -- get a key for the event
59: --
60: open get_seq;

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

214: ,p_event_key=>l_event_key
215: ,p_event_data=>l_event_data);
216: --
217: elsif (l_message='KEY') then
218: hr_utility.set_location(l_proc,30);
219: -- get a key for the event
220: open get_seq;
221: fetch get_seq into l_event_key;
222: close get_seq;

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

225: wf_event.raise(p_event_name=>l_event_name
226: ,p_event_key=>l_event_key);
227: --
228: elsif (l_message='NONE') then
229: hr_utility.set_location(l_proc,40);
230: -- no event is required, so do nothing
231: null;
232: end if;
233: hr_utility.set_location('Leaving: '||l_proc,50);

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

229: hr_utility.set_location(l_proc,40);
230: -- no event is required, so do nothing
231: null;
232: end if;
233: hr_utility.set_location('Leaving: '||l_proc,50);
234: end update_personal_comp_element_a;
235: end hr_competence_element_be3;