DBA Data[Home] [Help]

APPS.PER_RECRUITMENT_ACTIVITY_BE1 dependencies on WF_EVENT

Line 56: select per_wf_events_s.nextval from dual;

52: l_text varchar2(2000);
53: l_message varchar2(10);
54: --
55: cursor get_seq is
56: select per_wf_events_s.nextval from dual;
57: --
58: l_proc varchar2(72):=' per_recruitment_activity_be1.create_recruitment_activity_a';
59: begin
60: hr_utility.set_location('Entering: '||l_proc,10);

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

59: begin
60: hr_utility.set_location('Entering: '||l_proc,10);
61: -- check the status of the business event
62: l_event_name:='oracle.apps.per.api.recruitment_activity.create_recruitment_activity';
63: l_message:=wf_event.test(l_event_name);
64: --
65: if (l_message='MESSAGE') then
66: hr_utility.set_location(l_proc,20);
67: --

Line 263: wf_event.raise(p_event_name=>l_event_name

259: --
260: dbms_lob.writeAppend(l_event_data,length(l_text),l_text);
261: --
262: -- raise the event with the event data
263: wf_event.raise(p_event_name=>l_event_name
264: ,p_event_key=>l_event_key
265: ,p_event_data=>l_event_data);
266: elsif (l_message='KEY') then
267: hr_utility.set_location(l_proc,30);

Line 274: wf_event.raise(p_event_name=>l_event_name

270: fetch get_seq into l_event_key;
271: close get_seq;
272: -- this is a key event, so just raise the event
273: -- without the event data
274: wf_event.raise(p_event_name=>l_event_name
275: ,p_event_key=>l_event_key);
276: elsif (l_message='NONE') then
277: hr_utility.set_location(l_proc,40);
278: -- no event is required, so do nothing