DBA Data[Home] [Help]

APPS.HR_LOCATION_BE1 dependencies on WF_EVENT

Line 96: select per_wf_events_s.nextval from dual;

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

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

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.location.create_location';
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: --

Line 463: wf_event.raise(p_event_name=>l_event_name

459: --
460: dbms_lob.writeAppend(l_event_data,length(l_text),l_text);
461: --
462: -- raise the event with the event data
463: wf_event.raise(p_event_name=>l_event_name
464: ,p_event_key=>l_event_key
465: ,p_event_data=>l_event_data);
466: elsif (l_message='KEY') then
467: hr_utility.set_location(l_proc,30);

Line 474: wf_event.raise(p_event_name=>l_event_name

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