DBA Data[Home] [Help]

APPS.HR_APPLICANT_BE1 dependencies on WF_EVENT

Line 139: select per_wf_events_s.nextval from dual;

135: l_text varchar2(2000);
136: l_message varchar2(10);
137: --
138: cursor get_seq is
139: select per_wf_events_s.nextval from dual;
140: --
141: l_proc varchar2(72):=' hr_applicant_be1.create_applicant_a';
142: begin
143: hr_utility.set_location('Entering: '||l_proc,10);

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

142: begin
143: hr_utility.set_location('Entering: '||l_proc,10);
144: -- check the status of the business event
145: l_event_name:='oracle.apps.per.api.applicant.create_applicant';
146: l_message:=wf_event.test(l_event_name);
147: --
148: if (l_message='MESSAGE') then
149: hr_utility.set_location(l_proc,20);
150: --

Line 689: wf_event.raise(p_event_name=>l_event_name

685: if p_per_effective_start_date is not NULL and
686: p_per_effective_start_date > trunc(SYSDATE) and
687: fnd_profile.value('HR_DEFER_FD_BE_EVENTS') = 'Y' then
688: -- raise the event with the event data, with send date set to effective date
689: wf_event.raise(p_event_name=>l_event_name
690: ,p_event_key=>l_event_key
691: ,p_event_data=>l_event_data
692: ,p_send_date => p_per_effective_start_date);
693: --

Line 696: wf_event.raise(p_event_name=>l_event_name

692: ,p_send_date => p_per_effective_start_date);
693: --
694: else
695: -- raise the event with the event data
696: wf_event.raise(p_event_name=>l_event_name
697: ,p_event_key=>l_event_key
698: ,p_event_data=>l_event_data);
699: end if;
700: elsif (l_message='KEY') then

Line 711: wf_event.raise(p_event_name=>l_event_name

707: p_per_effective_start_date > trunc(SYSDATE) and
708: fnd_profile.value('HR_DEFER_FD_BE_EVENTS') = 'Y' then
709: -- this is a key event, so just raise the event
710: -- without the event data, with send date set to effective date
711: wf_event.raise(p_event_name=>l_event_name
712: ,p_event_key=>l_event_key
713: ,p_send_date => p_per_effective_start_date);
714: --
715: else

Line 718: wf_event.raise(p_event_name=>l_event_name

714: --
715: else
716: -- this is a key event, so just raise the event
717: -- without the event data
718: wf_event.raise(p_event_name=>l_event_name
719: ,p_event_key=>l_event_key);
720: end if;
721: elsif (l_message='NONE') then
722: hr_utility.set_location(l_proc,40);