DBA Data[Home] [Help]

APPS.HR_COMPETENCE_ELEMENT_BE2 dependencies on HR_UTILITY

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

80: select per_wf_events_s.nextval from dual;
81: --
82: l_proc varchar2(72):=' hr_competence_element_be2.update_competence_element_a';
83: begin
84: hr_utility.set_location('Entering: '||l_proc,10);
85: -- check the status of the business event
86: l_event_name:='oracle.apps.per.api.competence_element.update_competence_element';
87: l_message:=wf_event.test(l_event_name);
88: --

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

86: l_event_name:='oracle.apps.per.api.competence_element.update_competence_element';
87: l_message:=wf_event.test(l_event_name);
88: --
89: if (l_message='MESSAGE') then
90: hr_utility.set_location(l_proc,20);
91: --
92: -- get a key for the event
93: --
94: open get_seq;

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

384: ,p_event_key=>l_event_key
385: ,p_event_data=>l_event_data);
386: --
387: elsif (l_message='KEY') then
388: hr_utility.set_location(l_proc,30);
389: -- get a key for the event
390: open get_seq;
391: fetch get_seq into l_event_key;
392: close get_seq;

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

395: wf_event.raise(p_event_name=>l_event_name
396: ,p_event_key=>l_event_key);
397: --
398: elsif (l_message='NONE') then
399: hr_utility.set_location(l_proc,40);
400: -- no event is required, so do nothing
401: null;
402: end if;
403: hr_utility.set_location('Leaving: '||l_proc,50);

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

399: hr_utility.set_location(l_proc,40);
400: -- no event is required, so do nothing
401: null;
402: end if;
403: hr_utility.set_location('Leaving: '||l_proc,50);
404: end update_competence_element_a;
405: end hr_competence_element_be2;