DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BED dependencies on HR_UTILITY

Line 21: hr_utility.set_location('Entering: '||l_proc,10);

17: select per_wf_events_s.nextval from dual;
18: --
19: l_proc varchar2(72):=' hr_assignment_beD.terminate_apl_asg_a';
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.assignment.terminate_apl_asg';
24: l_message:=wf_event.test(l_event_name);
25: --

Line 27: hr_utility.set_location(l_proc,20);

23: l_event_name:='oracle.apps.per.api.assignment.terminate_apl_asg';
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: --
29: -- get a key for the event
30: --
31: open get_seq;

Line 83: hr_utility.set_location(l_proc,30);

79: ,p_event_key=>l_event_key
80: ,p_event_data=>l_event_data);
81: end if;
82: elsif (l_message='KEY') then
83: hr_utility.set_location(l_proc,30);
84: -- get a key for the event
85: open get_seq;
86: fetch get_seq into l_event_key;
87: close get_seq;

Line 104: hr_utility.set_location(l_proc,40);

100: wf_event.raise(p_event_name=>l_event_name
101: ,p_event_key=>l_event_key);
102: end if;
103: elsif (l_message='NONE') then
104: hr_utility.set_location(l_proc,40);
105: -- no event is required, so do nothing
106: null;
107: end if;
108: hr_utility.set_location('Leaving: '||l_proc,50);

Line 108: hr_utility.set_location('Leaving: '||l_proc,50);

104: hr_utility.set_location(l_proc,40);
105: -- no event is required, so do nothing
106: null;
107: end if;
108: hr_utility.set_location('Leaving: '||l_proc,50);
109: end terminate_apl_asg_a;
110: end hr_assignment_beD;