DBA Data[Home] [Help]

APPS.HR_ORGANIZATION_BE3 dependencies on HR_UTILITY

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

56: select per_wf_events_s.nextval from dual;
57: --
58: l_proc varchar2(72):=' hr_organization_be3.create_organization_a';
59: begin
60: hr_utility.set_location('Entering: '||l_proc,10);
61: -- check the status of the business event
62: l_event_name:='oracle.apps.per.api.organization.create_organization';
63: l_message:=wf_event.test(l_event_name);
64: --

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

62: l_event_name:='oracle.apps.per.api.organization.create_organization';
63: l_message:=wf_event.test(l_event_name);
64: --
65: if (l_message='MESSAGE') then
66: hr_utility.set_location(l_proc,20);
67: --
68: -- get a key for the event
69: --
70: open get_seq;

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

267: wf_event.raise(p_event_name=>l_event_name
268: ,p_event_key=>l_event_key
269: ,p_event_data=>l_event_data);
270: elsif (l_message='KEY') then
271: hr_utility.set_location(l_proc,30);
272: -- get a key for the event
273: open get_seq;
274: fetch get_seq into l_event_key;
275: close get_seq;

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

277: -- without the event data
278: wf_event.raise(p_event_name=>l_event_name
279: ,p_event_key=>l_event_key);
280: elsif (l_message='NONE') then
281: hr_utility.set_location(l_proc,40);
282: -- no event is required, so do nothing
283: null;
284: end if;
285: hr_utility.set_location('Leaving: '||l_proc,50);

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

281: hr_utility.set_location(l_proc,40);
282: -- no event is required, so do nothing
283: null;
284: end if;
285: hr_utility.set_location('Leaving: '||l_proc,50);
286: end create_organization_a;
287: end hr_organization_be3;