DBA Data[Home] [Help]

APPS.HR_SIT_BE2 dependencies on HR_UTILITY

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

74: select per_wf_events_s.nextval from dual;
75: --
76: l_proc varchar2(72):=' hr_sit_be2.update_sit_a';
77: begin
78: hr_utility.set_location('Entering: '||l_proc,10);
79: -- check the status of the business event
80: l_event_name:='oracle.apps.per.api.sit.update_sit';
81: l_message:=wf_event.test(l_event_name);
82: --

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

80: l_event_name:='oracle.apps.per.api.sit.update_sit';
81: l_message:=wf_event.test(l_event_name);
82: --
83: if (l_message='MESSAGE') then
84: hr_utility.set_location(l_proc,20);
85: --
86: -- get a key for the event
87: --
88: open get_seq;

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

353: wf_event.raise(p_event_name=>l_event_name
354: ,p_event_key=>l_event_key
355: ,p_event_data=>l_event_data);
356: elsif (l_message='KEY') then
357: hr_utility.set_location(l_proc,30);
358: -- get a key for the event
359: open get_seq;
360: fetch get_seq into l_event_key;
361: close get_seq;

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

363: -- without the event data
364: wf_event.raise(p_event_name=>l_event_name
365: ,p_event_key=>l_event_key);
366: elsif (l_message='NONE') then
367: hr_utility.set_location(l_proc,40);
368: -- no event is required, so do nothing
369: null;
370: end if;
371: hr_utility.set_location('Leaving: '||l_proc,50);

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

367: hr_utility.set_location(l_proc,40);
368: -- no event is required, so do nothing
369: null;
370: end if;
371: hr_utility.set_location('Leaving: '||l_proc,50);
372: end update_sit_a;
373: end hr_sit_be2;