DBA Data[Home] [Help]

APPS.PER_QUALIFICATIONS_BE2 dependencies on HR_UTILITY

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

84: select per_wf_events_s.nextval from dual;
85: --
86: l_proc varchar2(72):=' per_qualifications_be2.update_qualification_a';
87: begin
88: hr_utility.set_location('Entering: '||l_proc,10);
89: -- check the status of the business event
90: l_event_name:='oracle.apps.per.api.qualifications.update_qualification';
91: l_message:=wf_event.test(l_event_name);
92: --

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

90: l_event_name:='oracle.apps.per.api.qualifications.update_qualification';
91: l_message:=wf_event.test(l_event_name);
92: --
93: if (l_message='MESSAGE') then
94: hr_utility.set_location(l_proc,20);
95: --
96: -- get a key for the event
97: --
98: open get_seq;

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

403: wf_event.raise(p_event_name=>l_event_name
404: ,p_event_key=>l_event_key
405: ,p_event_data=>l_event_data);
406: elsif (l_message='KEY') then
407: hr_utility.set_location(l_proc,30);
408: -- get a key for the event
409: open get_seq;
410: fetch get_seq into l_event_key;
411: close get_seq;

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

413: -- without the event data
414: wf_event.raise(p_event_name=>l_event_name
415: ,p_event_key=>l_event_key);
416: elsif (l_message='NONE') then
417: hr_utility.set_location(l_proc,40);
418: -- no event is required, so do nothing
419: null;
420: end if;
421: hr_utility.set_location('Leaving: '||l_proc,50);

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

417: hr_utility.set_location(l_proc,40);
418: -- no event is required, so do nothing
419: null;
420: end if;
421: hr_utility.set_location('Leaving: '||l_proc,50);
422: end update_qualification_a;
423: end per_qualifications_be2;