DBA Data[Home] [Help]

APPS.HR_ORGANIZATION_BE2 dependencies on WF_EVENT

Line 57: select per_wf_events_s.nextval from dual;

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

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

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

Line 268: wf_event.raise(p_event_name=>l_event_name

264: --
265: dbms_lob.writeAppend(l_event_data,length(l_text),l_text);
266: --
267: -- raise the event with the event data
268: wf_event.raise(p_event_name=>l_event_name
269: ,p_event_key=>l_event_key
270: ,p_event_data=>l_event_data);
271: elsif (l_message='KEY') then
272: hr_utility.set_location(l_proc,30);

Line 279: wf_event.raise(p_event_name=>l_event_name

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