DBA Data[Home] [Help]

APPS.IRC_VACANCY_CONSIDERATIONS_BE2 dependencies on WF_EVENT

Line 17: select per_wf_events_s.nextval from dual;

13: l_text varchar2(2000);
14: l_message varchar2(10);
15: --
16: cursor get_seq is
17: select per_wf_events_s.nextval from dual;
18: --
19: l_proc varchar2(72):=' irc_vacancy_considerations_be2.update_vacancy_consideration_a';
20: begin
21: hr_utility.set_location('Entering: '||l_proc,10);

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

20: begin
21: hr_utility.set_location('Entering: '||l_proc,10);
22: -- check the status of the business event
23: l_event_name:='oracle.apps.per.irc.api.vacancy_considerations.update_vacancy_consideration';
24: l_message:=wf_event.test(l_event_name);
25: --
26: if (l_message='MESSAGE') then
27: hr_utility.set_location(l_proc,20);
28: --

Line 68: wf_event.raise(p_event_name=>l_event_name

64: --
65: dbms_lob.writeAppend(l_event_data,length(l_text),l_text);
66: --
67: -- raise the event with the event data
68: wf_event.raise(p_event_name=>l_event_name
69: ,p_event_key=>l_event_key
70: ,p_event_data=>l_event_data);
71: elsif (l_message='KEY') then
72: hr_utility.set_location(l_proc,30);

Line 79: wf_event.raise(p_event_name=>l_event_name

75: fetch get_seq into l_event_key;
76: close get_seq;
77: -- this is a key event, so just raise the event
78: -- without the event data
79: wf_event.raise(p_event_name=>l_event_name
80: ,p_event_key=>l_event_key);
81: elsif (l_message='NONE') then
82: hr_utility.set_location(l_proc,40);
83: -- no event is required, so do nothing