DBA Data[Home] [Help]

APPS.HR_CONTINGENT_WORKER_BE5 dependencies on WF_EVENT

Line 17: select per_wf_events_s.nextval from dual;

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

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

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

Line 79: wf_event.raise(p_event_name=>l_event_name

75: if p_actual_termination_date is not NULL and
76: p_actual_termination_date > trunc(SYSDATE) and
77: fnd_profile.value('HR_DEFER_FD_BE_EVENTS') = 'Y' then
78: -- raise the event with the event data, with send date set to effective date
79: wf_event.raise(p_event_name=>l_event_name
80: ,p_event_key=>l_event_key
81: ,p_event_data=>l_event_data
82: ,p_send_date => p_actual_termination_date);
83: --

Line 86: wf_event.raise(p_event_name=>l_event_name

82: ,p_send_date => p_actual_termination_date);
83: --
84: else
85: -- raise the event with the event data
86: wf_event.raise(p_event_name=>l_event_name
87: ,p_event_key=>l_event_key
88: ,p_event_data=>l_event_data);
89: end if;
90: elsif (l_message='KEY') then

Line 101: wf_event.raise(p_event_name=>l_event_name

97: p_actual_termination_date > trunc(SYSDATE) and
98: fnd_profile.value('HR_DEFER_FD_BE_EVENTS') = 'Y' then
99: -- this is a key event, so just raise the event
100: -- without the event data, with send date set to effective date
101: wf_event.raise(p_event_name=>l_event_name
102: ,p_event_key=>l_event_key
103: ,p_send_date => p_actual_termination_date);
104: --
105: else

Line 108: wf_event.raise(p_event_name=>l_event_name

104: --
105: else
106: -- this is a key event, so just raise the event
107: -- without the event data
108: wf_event.raise(p_event_name=>l_event_name
109: ,p_event_key=>l_event_key);
110: end if;
111: elsif (l_message='NONE') then
112: hr_utility.set_location(l_proc,40);