DBA Data[Home] [Help]

APPS.HR_APPLICANT_BE4 dependencies on WF_EVENT

Line 21: select per_wf_events_s.nextval from dual;

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

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

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

Line 95: wf_event.raise(p_event_name=>l_event_name

91: if p_effective_start_date is not NULL and
92: p_effective_start_date > trunc(SYSDATE) and
93: fnd_profile.value('HR_DEFER_FD_BE_EVENTS') = 'Y' then
94: -- raise the event with the event data, with send date set to effective date
95: wf_event.raise(p_event_name=>l_event_name
96: ,p_event_key=>l_event_key
97: ,p_event_data=>l_event_data
98: ,p_send_date => p_effective_start_date);
99: --

Line 102: wf_event.raise(p_event_name=>l_event_name

98: ,p_send_date => p_effective_start_date);
99: --
100: else
101: -- raise the event with the event data
102: wf_event.raise(p_event_name=>l_event_name
103: ,p_event_key=>l_event_key
104: ,p_event_data=>l_event_data);
105: end if;
106: elsif (l_message='KEY') then

Line 117: wf_event.raise(p_event_name=>l_event_name

113: p_effective_start_date > trunc(SYSDATE) and
114: fnd_profile.value('HR_DEFER_FD_BE_EVENTS') = 'Y' then
115: -- this is a key event, so just raise the event
116: -- without the event data, with send date set to effective date
117: wf_event.raise(p_event_name=>l_event_name
118: ,p_event_key=>l_event_key
119: ,p_send_date => p_effective_start_date);
120: --
121: else

Line 124: wf_event.raise(p_event_name=>l_event_name

120: --
121: else
122: -- this is a key event, so just raise the event
123: -- without the event data
124: wf_event.raise(p_event_name=>l_event_name
125: ,p_event_key=>l_event_key);
126: end if;
127: elsif (l_message='NONE') then
128: hr_utility.set_location(l_proc,40);