DBA Data[Home] [Help]

APPS.ORACLESSWA dependencies on FND_SESSION_MANAGEMENT

Line 405: l_new_xsid := fnd_session_management.NewXSID;

401: -- if it is a valid session, and the users are difference, and the original user is the anonymous user then
402: IF l_session_status <> 'INVALID' and l_user_id <> l_anon_id and c_user_id = l_user_id THEN
403: -- Reuse expired session
404: -- Session Hijacking. Reset xsid whenever session is reset
405: l_new_xsid := fnd_session_management.NewXSID;
406: UPDATE icx_sessions
407: SET last_connect = sysdate,
408: first_connect = SYSDATE,
409: counter = 1,

Line 435: l_new_xsid := fnd_session_management.NewXSID;

431: l_timeout);
432:
433: --preserve the existing session durring switch from anon user.
434: -- Session Hijacking. Reset xsid whenever session is upgraded from GUEST to user
435: l_new_xsid := fnd_session_management.NewXSID;
436: UPDATE icx_sessions
437: SET user_id = l_user_id,
438: nls_language = l_language,
439: language_code = l_language_code,