DBA Data[Home] [Help]

APPS.IBE_USER_PVT dependencies on FND_API

Line 39: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

35: l_start_date VARCHAR2(30);
36: l_end_date VARCHAR2(30);
37:
38: BEGIN
39: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
40: IBE_UTIL.debug('enter ibe_user_pvt.create_user');
41: END IF;
42:
43: --Ceates an FND_USER and Link the fnd_user table

Line 47: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

43: --Ceates an FND_USER and Link the fnd_user table
44: --and hz_parties by setting the customer_id column in fnd_user table
45:
46:
47: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
48: IBE_UTIL.debug('Call FND_USER_PKG.CreatePendingUser API to create a user');
49: END IF;
50:
51: IF p_password is not null THEN

Line 53: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

49: END IF;
50:
51: IF p_password is not null THEN
52:
53: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
54: IBE_UTIL.debug('Before Call to FND_USER_PKG.CreatePendingUser API: p_password is not null');
55: END IF;
56:
57: x_user_id := FND_USER_PKG.createPendingUser (

Line 68: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

64:
65:
66: ELSE
67: -- OID record exists; create FND record and relink
68: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
69: IBE_UTIL.debug('Before Call to FND_USER_PKG.CreatePendingUser API: p_password is null');
70: END IF;
71:
72: x_user_id := FND_USER_PKG.createPendingUser (

Line 83: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

79:
80: open c_get_user_st_end_date(p_user_name);
81: fetch c_get_user_st_end_date into l_start_date, l_end_date;
82: close c_get_user_st_end_date;
83: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
84: IBE_UTIL.debug('start_date = '||l_start_date||' : end_date = '||l_end_date);
85: END IF;
86:
87: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

Line 87: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

83: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
84: IBE_UTIL.debug('start_date = '||l_start_date||' : end_date = '||l_end_date);
85: END IF;
86:
87: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
88: IBE_UTIL.debug('After Call to FND_USER_PKG.CreatePendingUser API userid :'||x_user_id);
89: IBE_UTIL.debug('Before Call to FND_USER_PKG.updateUser API for updating customer_id');
90: END IF;
91:

Line 102: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

98:
99: open c_get_user_st_end_date(p_user_name);
100: fetch c_get_user_st_end_date into l_start_date, l_end_date;
101: close c_get_user_st_end_date;
102: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
103: IBE_UTIL.debug('start_date = '||l_start_date||' : end_date = '||l_end_date);
104: END IF;
105:
106: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

Line 106: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

102: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
103: IBE_UTIL.debug('start_date = '||l_start_date||' : end_date = '||l_end_date);
104: END IF;
105:
106: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
107: IBE_UTIL.debug('After Call to FND_USER_PKG.updateUser API for updating customer_id');
108: END IF;
109:
110:

Line 111: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

107: IBE_UTIL.debug('After Call to FND_USER_PKG.updateUser API for updating customer_id');
108: END IF;
109:
110:
111: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
112: IBE_UTIL.debug('exit ibe_user_pvt.create_user ');
113: END IF;
114:
115: End create_user;

Line 142: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

138: p_party_id IN NUMBER) IS
139: l_end_date date;
140: BEGIN
141:
142: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
143: IBE_UTIL.debug('enter ibe_user_pvt.update_user');
144: END IF;
145:
146: --Ceates an FND_USER and Link the fnd_user table

Line 149: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

145:
146: --Ceates an FND_USER and Link the fnd_user table
147: --and hz_parties by setting the customer_id column in fnd_user table
148: if (p_end_date is null) then
149: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
150: IBE_UTIL.debug('p_end_date is null');
151: END IF;
152: l_end_date := null_date;
153: else

Line 157: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

153: else
154: l_end_date := p_end_date;
155: end if;
156:
157: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
158: IBE_UTIL.debug('Call FND_USER_PKG.UpdateUser API to updated a user');
159: END IF;
160:
161: FND_USER_PKG.UpdateUser (

Line 171: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

167: x_old_password => p_old_password,
168: x_customer_id => p_party_id
169: );
170:
171: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
172: IBE_UTIL.debug('exit enter ibe_user_pvt.update_user ');
173: END IF;
174:
175: End update_user;

Line 204: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

200:
201: l_start_date Date;
202:
203: BEGIN
204: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
205: IBE_UTIL.debug('enter ibe_user_pvt.Update_Assignment');
206: END IF;
207:
208: --Ceates an FND_USER and Link the fnd_user table

Line 211: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

207:
208: --Ceates an FND_USER and Link the fnd_user table
209: --and hz_parties by setting the customer_id column in fnd_user table
210:
211: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
212: IBE_UTIL.debug('Call FND_USER_RESP_API.Update_Assignment API to revoke responsibility');
213: END IF;
214:
215: if (p_start_date is null) then

Line 230: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

226: description => p_description
227: );
228:
229:
230: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
231: IBE_UTIL.debug('After FND_USER_RESP_API.Update_Assignment API to revoke responsibility');
232: IBE_UTIL.debug('exit enter ibe_user_pvt.Update_Assignment ');
233: END IF;
234:

Line 261: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

257: -- fdbk BINARY_INTEGER;
258: l_block varchar2(2000);
259: Begin
260:
261: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
262: IBE_UTIL.debug('enter ibe_user_pvt.TestUserName API');
263: IBE_UTIL.debug('calling fnd_user_pkg.TestUserName API');
264: END IF;
265:

Line 273: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

269: 'begin :result := fnd_user_pkg.testUsername(:1); end;';
270: execute immediate l_block using out retval, in p_user_name;
271: exception
272: when others then
273: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
274: IBE_UTIL.debug('fnd_user_pkg.TestUserName API returns '|| retval);
275: END IF;
276: raise;
277: end;

Line 309: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN

305:
306: -- retval := FND_USER_PKG.TestUserName(p_user_name);
307: */
308:
309: IF (IBE_UTIL.G_DEBUGON = FND_API.G_TRUE) THEN
310: IBE_UTIL.debug('fnd_user_pkg.TestUserName API returns '|| retval);
311: IBE_UTIL.debug('exit ibe_user_pvt.TestUserName API');
312: END IF;
313: