DBA Data[Home] [Help]

APPS.HR_CONTINGENT_WORKER_BE2 dependencies on WF_EVENT

Line 25: select per_wf_events_s.nextval from dual;

21: l_text varchar2(2000);
22: l_message varchar2(10);
23: --
24: cursor get_seq is
25: select per_wf_events_s.nextval from dual;
26: --
27: l_proc varchar2(72):=' hr_contingent_worker_be2.convert_to_cwk_a';
28: begin
29: hr_utility.set_location('Entering: '||l_proc,10);

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

28: begin
29: hr_utility.set_location('Entering: '||l_proc,10);
30: -- check the status of the business event
31: l_event_name:='oracle.apps.per.api.contingent_worker.convert_to_cwk';
32: l_message:=wf_event.test(l_event_name);
33: --
34: if (l_message='MESSAGE') then
35: hr_utility.set_location(l_proc,20);
36: --

Line 111: wf_event.raise(p_event_name=>l_event_name

107: if p_per_effective_start_date is not NULL and
108: p_per_effective_start_date > trunc(SYSDATE) and
109: fnd_profile.value('HR_DEFER_FD_BE_EVENTS') = 'Y' then
110: -- raise the event with the event data, with send date set to effective date
111: wf_event.raise(p_event_name=>l_event_name
112: ,p_event_key=>l_event_key
113: ,p_event_data=>l_event_data
114: ,p_send_date => p_per_effective_start_date);
115: --

Line 118: wf_event.raise(p_event_name=>l_event_name

114: ,p_send_date => p_per_effective_start_date);
115: --
116: else
117: -- raise the event with the event data
118: wf_event.raise(p_event_name=>l_event_name
119: ,p_event_key=>l_event_key
120: ,p_event_data=>l_event_data);
121: end if;
122: elsif (l_message='KEY') then

Line 133: wf_event.raise(p_event_name=>l_event_name

129: p_per_effective_start_date > trunc(SYSDATE) and
130: fnd_profile.value('HR_DEFER_FD_BE_EVENTS') = 'Y' then
131: -- this is a key event, so just raise the event
132: -- without the event data, with send date set to effective date
133: wf_event.raise(p_event_name=>l_event_name
134: ,p_event_key=>l_event_key
135: ,p_send_date => p_per_effective_start_date);
136: --
137: else

Line 140: wf_event.raise(p_event_name=>l_event_name

136: --
137: else
138: -- this is a key event, so just raise the event
139: -- without the event data
140: wf_event.raise(p_event_name=>l_event_name
141: ,p_event_key=>l_event_key);
142: end if;
143: elsif (l_message='NONE') then
144: hr_utility.set_location(l_proc,40);