DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_BEM dependencies on HR_UTILITY

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

113: select per_wf_events_s.nextval from dual;
114: --
115: l_proc varchar2(72):=' hr_assignment_beM.update_cwk_asg_a';
116: begin
117: hr_utility.set_location('Entering: '||l_proc,10);
118: -- check the status of the business event
119: l_event_name:='oracle.apps.per.api.assignment.update_cwk_asg';
120: l_message:=wf_event.test(l_event_name);
121: --

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

119: l_event_name:='oracle.apps.per.api.assignment.update_cwk_asg';
120: l_message:=wf_event.test(l_event_name);
121: --
122: if (l_message='MESSAGE') then
123: hr_utility.set_location(l_proc,20);
124: --
125: -- get a key for the event
126: --
127: open get_seq;

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

575: ,p_event_key=>l_event_key
576: ,p_event_data=>l_event_data);
577: end if;
578: elsif (l_message='KEY') then
579: hr_utility.set_location(l_proc,30);
580: -- get a key for the event
581: open get_seq;
582: fetch get_seq into l_event_key;
583: close get_seq;

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

596: wf_event.raise(p_event_name=>l_event_name
597: ,p_event_key=>l_event_key);
598: end if;
599: elsif (l_message='NONE') then
600: hr_utility.set_location(l_proc,40);
601: -- no event is required, so do nothing
602: null;
603: end if;
604: hr_utility.set_location('Leaving: '||l_proc,50);

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

600: hr_utility.set_location(l_proc,40);
601: -- no event is required, so do nothing
602: null;
603: end if;
604: hr_utility.set_location('Leaving: '||l_proc,50);
605: end update_cwk_asg_a;
606: end hr_assignment_beM;