DBA Data[Home] [Help]

APPS.HR_DOCUMENT_TYPES_BE1 dependencies on HR_UTILITY

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

29: select per_wf_events_s.nextval from dual;
30: --
31: l_proc varchar2(72):=' hr_document_types_be1.create_document_type_a';
32: begin
33: hr_utility.set_location('Entering: '||l_proc,10);
34: -- check the status of the business event
35: l_event_name:='oracle.apps.per.api.document_types.create_document_type';
36: l_message:=wf_event.test(l_event_name);
37: --

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

35: l_event_name:='oracle.apps.per.api.document_types.create_document_type';
36: l_message:=wf_event.test(l_event_name);
37: --
38: if (l_message='MESSAGE') then
39: hr_utility.set_location(l_proc,20);
40: --
41: -- get a key for the event
42: --
43: open get_seq;

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

128: wf_event.raise(p_event_name=>l_event_name
129: ,p_event_key=>l_event_key
130: ,p_event_data=>l_event_data);
131: elsif (l_message='KEY') then
132: hr_utility.set_location(l_proc,30);
133: -- get a key for the event
134: open get_seq;
135: fetch get_seq into l_event_key;
136: close get_seq;

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

138: -- without the event data
139: wf_event.raise(p_event_name=>l_event_name
140: ,p_event_key=>l_event_key);
141: elsif (l_message='NONE') then
142: hr_utility.set_location(l_proc,40);
143: -- no event is required, so do nothing
144: null;
145: end if;
146: hr_utility.set_location('Leaving: '||l_proc,50);

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

142: hr_utility.set_location(l_proc,40);
143: -- no event is required, so do nothing
144: null;
145: end if;
146: hr_utility.set_location('Leaving: '||l_proc,50);
147: end create_document_type_a;
148: end hr_document_types_be1;