DBA Data[Home] [Help]

APPS.HR_COMPETENCE_ELEMENT_BE1 dependencies on HR_UTILITY

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

96: select per_wf_events_s.nextval from dual;
97: --
98: l_proc varchar2(72):=' hr_competence_element_be1.create_competence_element_a';
99: begin
100: hr_utility.set_location('Entering: '||l_proc,10);
101: -- check the status of the business event
102: l_event_name:='oracle.apps.per.api.competence_element.create_competence_element';
103: l_message:=wf_event.test(l_event_name);
104: --

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

102: l_event_name:='oracle.apps.per.api.competence_element.create_competence_element';
103: l_message:=wf_event.test(l_event_name);
104: --
105: if (l_message='MESSAGE') then
106: hr_utility.set_location(l_proc,20);
107: --
108: -- get a key for the event
109: --
110: open get_seq;

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

464: ,p_event_key=>l_event_key
465: ,p_event_data=>l_event_data);
466: --
467: elsif (l_message='KEY') then
468: hr_utility.set_location(l_proc,30);
469: -- get a key for the event
470: open get_seq;
471: fetch get_seq into l_event_key;
472: close get_seq;

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

475: wf_event.raise(p_event_name=>l_event_name
476: ,p_event_key=>l_event_key);
477: --
478: elsif (l_message='NONE') then
479: hr_utility.set_location(l_proc,40);
480: -- no event is required, so do nothing
481: null;
482: end if;
483: hr_utility.set_location('Leaving: '||l_proc,50);

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

479: hr_utility.set_location(l_proc,40);
480: -- no event is required, so do nothing
481: null;
482: end if;
483: hr_utility.set_location('Leaving: '||l_proc,50);
484: end create_competence_element_a;
485: end hr_competence_element_be1;