DBA Data[Home] [Help]

APPS.IEX_WEBDIR_PVT dependencies on FND_PROFILE

Line 75: l_user_id := fnd_profile.value('USER_ID');

71: /* Copy all parameters to local variables to be passed to Pre, Post AND Business APIs */
72: /* l_rec - will be used as In Out NOCOPY parameter in pre/post/Business API calls */
73: /* l_return_status - will be a out NOCOPY variable to get return code FROM called APIs */
74:
75: l_user_id := fnd_profile.value('USER_ID');
76: l_login_id := fnd_profile.value('LOGIN_ID');
77:
78: l_assist_rec.assistance_type := 'WEB_ASSIST';
79: l_assist_rec.object_version_number := 1.0;

Line 76: l_login_id := fnd_profile.value('LOGIN_ID');

72: /* l_rec - will be used as In Out NOCOPY parameter in pre/post/Business API calls */
73: /* l_return_status - will be a out NOCOPY variable to get return code FROM called APIs */
74:
75: l_user_id := fnd_profile.value('USER_ID');
76: l_login_id := fnd_profile.value('LOGIN_ID');
77:
78: l_assist_rec.assistance_type := 'WEB_ASSIST';
79: l_assist_rec.object_version_number := 1.0;
80: l_assist_rec.last_update_date := sysdate;

Line 265: l_user_id := fnd_profile.value('USER_ID');

261: /* Copy all parameters to local variables to be passed to Pre, Post AND Business APIs */
262: /* l_rec - will be used as In Out NOCOPY parameter in pre/post/Business API calls */
263: /* l_return_status - will be a out NOCOPY variable to get return code FROM called APIs */
264:
265: l_user_id := fnd_profile.value('USER_ID');
266: l_login_id := fnd_profile.value('LOGIN_ID');
267:
268: l_assist_rec.assist_id := p_assist_rec.assist_id;
269: l_assist_rec.assistance_type := p_assist_rec.assistance_type;

Line 266: l_login_id := fnd_profile.value('LOGIN_ID');

262: /* l_rec - will be used as In Out NOCOPY parameter in pre/post/Business API calls */
263: /* l_return_status - will be a out NOCOPY variable to get return code FROM called APIs */
264:
265: l_user_id := fnd_profile.value('USER_ID');
266: l_login_id := fnd_profile.value('LOGIN_ID');
267:
268: l_assist_rec.assist_id := p_assist_rec.assist_id;
269: l_assist_rec.assistance_type := p_assist_rec.assistance_type;
270: l_assist_rec.object_version_number := p_assist_rec.object_version_number;

Line 370: PG_DEBUG := TO_NUMBER(NVL(FND_PROFILE.value('IEX_DEBUG_LEVEL'), '20'));

366: G_PROGRAM_ID := FND_GLOBAL.Conc_Program_Id;
367: G_USER_ID := FND_GLOBAL.User_Id;
368: G_REQUEST_ID := FND_GLOBAL.Conc_Request_Id;
369:
370: PG_DEBUG := TO_NUMBER(NVL(FND_PROFILE.value('IEX_DEBUG_LEVEL'), '20'));
371:
372: END iex_WebDir_Pvt;