DBA Data[Home] [Help]

APPS.PAY_ELEMENT_LINK_BE3 dependencies on WF_EVENT

Line 19: select per_wf_events_s.nextval from dual;

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

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

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

Line 85: wf_event.raise(p_event_name=>l_event_name

81: if p_effective_start_date is not NULL and
82: p_effective_start_date > trunc(SYSDATE) and
83: fnd_profile.value('HR_DEFER_FD_BE_EVENTS') = 'Y' then
84: -- raise the event with the event data, with send date set to effective date
85: wf_event.raise(p_event_name=>l_event_name
86: ,p_event_key=>l_event_key
87: ,p_event_data=>l_event_data
88: ,p_send_date => p_effective_start_date);
89: --

Line 92: wf_event.raise(p_event_name=>l_event_name

88: ,p_send_date => p_effective_start_date);
89: --
90: else
91: -- raise the event with the event data
92: wf_event.raise(p_event_name=>l_event_name
93: ,p_event_key=>l_event_key
94: ,p_event_data=>l_event_data);
95: end if;
96: elsif (l_message='KEY') then

Line 107: wf_event.raise(p_event_name=>l_event_name

103: p_effective_start_date > trunc(SYSDATE) and
104: fnd_profile.value('HR_DEFER_FD_BE_EVENTS') = 'Y' then
105: -- this is a key event, so just raise the event
106: -- without the event data, with send date set to effective date
107: wf_event.raise(p_event_name=>l_event_name
108: ,p_event_key=>l_event_key
109: ,p_send_date => p_effective_start_date);
110: --
111: else

Line 114: wf_event.raise(p_event_name=>l_event_name

110: --
111: else
112: -- this is a key event, so just raise the event
113: -- without the event data
114: wf_event.raise(p_event_name=>l_event_name
115: ,p_event_key=>l_event_key);
116: end if;
117: elsif (l_message='NONE') then
118: hr_utility.set_location(l_proc,40);