DBA Data[Home] [Help]

APPS.IRC_NOTIFICATION_PREFS_BE1 dependencies on WF_EVENT

Line 54: select per_wf_events_s.nextval from dual;

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

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

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

Line 253: wf_event.raise(p_event_name=>l_event_name

249: --
250: dbms_lob.writeAppend(l_event_data,length(l_text),l_text);
251: --
252: -- raise the event with the event data
253: wf_event.raise(p_event_name=>l_event_name
254: ,p_event_key=>l_event_key
255: ,p_event_data=>l_event_data);
256: --
257: elsif (l_message='KEY') then

Line 265: wf_event.raise(p_event_name=>l_event_name

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