DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BEJ dependencies on WF_EVENT

Line 20: select per_wf_events_s.nextval from dual;

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

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

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

Line 86: wf_event.raise(p_event_name=>l_event_name

82: if p_effective_start_date is not NULL and
83: p_effective_start_date > trunc(SYSDATE) and
84: fnd_profile.value('HR_DEFER_FD_BE_EVENTS') = 'Y' then
85: -- raise the event with the event data, with send date set to effective date
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: ,p_send_date => p_effective_start_date);
90: --

Line 93: wf_event.raise(p_event_name=>l_event_name

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

Line 108: wf_event.raise(p_event_name=>l_event_name

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

Line 115: wf_event.raise(p_event_name=>l_event_name

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