DBA Data[Home] [Help]

APPS.HR_ORGANIZATION_BE4 dependencies on HR_UTILITY

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

88: select per_wf_events_s.nextval from dual;
89: --
90: l_proc varchar2(72):=' hr_organization_be4.update_organization_a';
91: begin
92: hr_utility.set_location('Entering: '||l_proc,10);
93: -- check the status of the business event
94: l_event_name:='oracle.apps.per.api.organization.update_organization';
95: l_message:=wf_event.test(l_event_name);
96: --

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

94: l_event_name:='oracle.apps.per.api.organization.update_organization';
95: l_message:=wf_event.test(l_event_name);
96: --
97: if (l_message='MESSAGE') then
98: hr_utility.set_location(l_proc,20);
99: --
100: -- get a key for the event
101: --
102: open get_seq;

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

427: wf_event.raise(p_event_name=>l_event_name
428: ,p_event_key=>l_event_key
429: ,p_event_data=>l_event_data);
430: elsif (l_message='KEY') then
431: hr_utility.set_location(l_proc,30);
432: -- get a key for the event
433: open get_seq;
434: fetch get_seq into l_event_key;
435: close get_seq;

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

437: -- without the event data
438: wf_event.raise(p_event_name=>l_event_name
439: ,p_event_key=>l_event_key);
440: elsif (l_message='NONE') then
441: hr_utility.set_location(l_proc,40);
442: -- no event is required, so do nothing
443: null;
444: end if;
445: hr_utility.set_location('Leaving: '||l_proc,50);

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

441: hr_utility.set_location(l_proc,40);
442: -- no event is required, so do nothing
443: null;
444: end if;
445: hr_utility.set_location('Leaving: '||l_proc,50);
446: end update_organization_a;
447: end hr_organization_be4;