DBA Data[Home] [Help]

APPS.HR_ORGANIZATION_BE1 dependencies on WF_EVENT

Line 58: select per_wf_events_s.nextval from dual;

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

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

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

Line 273: wf_event.raise(p_event_name=>l_event_name

269: --
270: dbms_lob.writeAppend(l_event_data,length(l_text),l_text);
271: --
272: -- raise the event with the event data
273: wf_event.raise(p_event_name=>l_event_name
274: ,p_event_key=>l_event_key
275: ,p_event_data=>l_event_data);
276: elsif (l_message='KEY') then
277: hr_utility.set_location(l_proc,30);

Line 284: wf_event.raise(p_event_name=>l_event_name

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