DBA Data[Home] [Help]

APPS.HR_COMPETENCE_ELEMENT_BE7 dependencies on HR_UTILITY

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

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

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

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

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

69: ,p_event_key=>l_event_key
70: ,p_event_data=>l_event_data);
71: --
72: elsif (l_message='KEY') then
73: hr_utility.set_location(l_proc,30);
74: -- get a key for the event
75: open get_seq;
76: fetch get_seq into l_event_key;
77: close get_seq;

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

80: wf_event.raise(p_event_name=>l_event_name
81: ,p_event_key=>l_event_key);
82: --
83: elsif (l_message='NONE') then
84: hr_utility.set_location(l_proc,40);
85: -- no event is required, so do nothing
86: null;
87: end if;
88: hr_utility.set_location('Leaving: '||l_proc,50);

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

84: hr_utility.set_location(l_proc,40);
85: -- no event is required, so do nothing
86: null;
87: end if;
88: hr_utility.set_location('Leaving: '||l_proc,50);
89: end update_delivered_dates_a;
90: end hr_competence_element_be7;