DBA Data[Home] [Help]

APPS.HR_ORGANIZATION_BE3 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):=' hr_organization_be3.create_organization_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.organization.create_organization';
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 267: wf_event.raise(p_event_name=>l_event_name

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

Line 278: wf_event.raise(p_event_name=>l_event_name

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