DBA Data[Home] [Help]

APPS.IRC_NOTIFICATION_PREFS_BE2 dependencies on WF_EVENT

Line 55: select per_wf_events_s.nextval from dual;

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

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

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

Line 258: wf_event.raise(p_event_name=>l_event_name

254: --
255: dbms_lob.writeAppend(l_event_data,length(l_text),l_text);
256: --
257: -- raise the event with the event data
258: wf_event.raise(p_event_name=>l_event_name
259: ,p_event_key=>l_event_key
260: ,p_event_data=>l_event_data);
261: --
262: elsif (l_message='KEY') then

Line 270: wf_event.raise(p_event_name=>l_event_name

266: fetch get_seq into l_event_key;
267: close get_seq;
268: -- this is a key event, so just raise the event
269: -- without the event data
270: wf_event.raise(p_event_name=>l_event_name
271: ,p_event_key=>l_event_key);
272: --
273: elsif (l_message='NONE') then
274: hr_utility.set_location(l_proc,40);