DBA Data[Home] [Help]

APPS.HR_LOCATION_BE2 dependencies on WF_EVENT

Line 95: select per_wf_events_s.nextval from dual;

91: l_text varchar2(2000);
92: l_message varchar2(10);
93: --
94: cursor get_seq is
95: select per_wf_events_s.nextval from dual;
96: --
97: l_proc varchar2(72):=' hr_location_be2.update_location_a';
98: begin
99: hr_utility.set_location('Entering: '||l_proc,10);

Line 102: l_message:=wf_event.test(l_event_name);

98: begin
99: hr_utility.set_location('Entering: '||l_proc,10);
100: -- check the status of the business event
101: l_event_name:='oracle.apps.per.api.location.update_location';
102: l_message:=wf_event.test(l_event_name);
103: --
104: if (l_message='MESSAGE') then
105: hr_utility.set_location(l_proc,20);
106: --

Line 458: wf_event.raise(p_event_name=>l_event_name

454: --
455: dbms_lob.writeAppend(l_event_data,length(l_text),l_text);
456: --
457: -- raise the event with the event data
458: wf_event.raise(p_event_name=>l_event_name
459: ,p_event_key=>l_event_key
460: ,p_event_data=>l_event_data);
461: elsif (l_message='KEY') then
462: hr_utility.set_location(l_proc,30);

Line 469: wf_event.raise(p_event_name=>l_event_name

465: fetch get_seq into l_event_key;
466: close get_seq;
467: -- this is a key event, so just raise the event
468: -- without the event data
469: wf_event.raise(p_event_name=>l_event_name
470: ,p_event_key=>l_event_key);
471: elsif (l_message='NONE') then
472: hr_utility.set_location(l_proc,40);
473: -- no event is required, so do nothing