DBA Data[Home] [Help]

APPS.IRC_REGISTER_EX_EMP_WF dependencies on HR_UTILITY

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

34: l_language varchar2(255);
35: l_user_name varchar2(255);
36: l_proc varchar2(72) := g_package||'self_register_user_save';
37: begin
38: hr_utility.set_location(' Entering: '||l_proc, 10);
39: if (funcmode='RUN') then
40: hr_utility.set_location(l_proc,20);
41:
42: l_current_email_address:=wf_engine.getItemAttrText

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

36: l_proc varchar2(72) := g_package||'self_register_user_save';
37: begin
38: hr_utility.set_location(' Entering: '||l_proc, 10);
39: if (funcmode='RUN') then
40: hr_utility.set_location(l_proc,20);
41:
42: l_current_email_address:=wf_engine.getItemAttrText
43: (itemtype => itemtype,
44: itemkey => itemkey,

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

115: (itemtype => itemtype,
116: itemkey => itemkey,
117: aname => 'USER_NAME');
118:
119: hr_utility.set_location(l_proc,30);
120:
121: IRC_PARTY_API.SELF_REGISTER_USER
122: (p_current_email_address => l_current_email_address
123: ,p_responsibility_id => l_responsibility_id

Line 143: hr_utility.set_location('Leaving: '||l_proc,40);

139: ,p_language => l_language
140: ,p_user_name => l_user_name
141: );
142: resultout:='COMPLETE';
143: hr_utility.set_location('Leaving: '||l_proc,40);
144:
145: return;
146: end if;
147: exception

Line 149: hr_utility.set_location(l_proc,50);

145: return;
146: end if;
147: exception
148: when others then
149: hr_utility.set_location(l_proc,50);
150:
151: wf_core.context('IRC_REGISTER_EX_EMP_WF'
152: ,'SELF_REGISTER_USER_SAVE'
153: ,itemtype

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

182: l_proc varchar2(72) := g_package||'self_register_user_init';
183: itemtype varchar2(30):='IRC_REG';
184: itemkey varchar2(30);
185: begin
186: hr_utility.set_location(' Entering: '||l_proc, 10);
187: --
188: select irc_wf_s.nextval
189: into itemkey
190: from dual;

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

192: wf_engine.CreateProcess (itemtype => itemtype,
193: itemkey => itemkey,
194: process => 'REG_REQUEST' );
195:
196: hr_utility.set_location(l_proc,20);
197:
198: wf_engine.setItemAttrText
199: (itemtype => itemtype,
200: itemkey => itemkey,

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

289: (itemtype => itemtype,
290: itemkey => itemkey,
291: aname => 'USER_NAME',
292: avalue => p_user_name);
293: hr_utility.set_location(l_proc,30);
294:
295: wf_engine.StartProcess (itemtype => itemtype,
296: itemkey => itemkey );
297: hr_utility.set_location('Leaving: '||l_proc,40);

Line 297: hr_utility.set_location('Leaving: '||l_proc,40);

293: hr_utility.set_location(l_proc,30);
294:
295: wf_engine.StartProcess (itemtype => itemtype,
296: itemkey => itemkey );
297: hr_utility.set_location('Leaving: '||l_proc,40);
298: exception
299: when others then
300: wf_core.context('IRC_REGISTER_EX_EMP_WF'
301: ,'SELF_REGISTER_USER_INIT'