DBA Data[Home] [Help]

APPS.FND_AOLJ_UTIL dependencies on FND_SESSION_UTILITIES

Line 234: l_xsid := FND_SESSION_UTILITIES.SessionID_to_XSID(l_session_id);

230: return 'N';
231: end if;
232:
233: -- then validate the session
234: l_xsid := FND_SESSION_UTILITIES.SessionID_to_XSID(l_session_id);
235: -- todo: l_xsid should not be NULL, but what if it is? return?
236: if l_xsid is null then
237: return 'N';
238: end if;

Line 314: session_id_int := fnd_session_utilities.XSID_to_SessionID(p_session_id);

310: -- first update icx session
311: -- Session Hijacking fix.
312: -- XSID is modified after upgrading GUEST session to authenticated User.
313: -- Hence store the session_id here which doesn't change
314: session_id_int := fnd_session_utilities.XSID_to_SessionID(p_session_id);
315: l_convert_result := fnd_session_management.convertGuestSession(
316: p_user_id => p_user_id,
317: p_server_id => p_server_id,
318: p_session_id => p_session_id,

Line 322: l_xsid := fnd_session_utilities.SessionID_to_XSID(session_id_int);

318: p_session_id => p_session_id,
319: p_language_code => p_language_code,
320: p_home_url => p_home_url,
321: p_mode_code => p_mode_code);
322: l_xsid := fnd_session_utilities.SessionID_to_XSID(session_id_int);
323: if (l_convert_result = 'N') then
324: return 'N';
325: end if;
326:

Line 423: l_encrypted_session_id := fnd_session_utilities.sessionID_to_xsid( TO_NUMBER(p_session_id) );

419: else
420: if p_session_id is null then
421: l_encrypted_session_id := p_session_id;
422: else
423: l_encrypted_session_id := fnd_session_utilities.sessionID_to_xsid( TO_NUMBER(p_session_id) );
424:
425: end if;
426: if p_transaction_id is null then
427: l_encrypted_tranx_id := p_transaction_id;

Line 429: l_encrypted_tranx_id := fnd_session_utilities.transactionID_to_xtid( TO_NUMBER(p_transaction_id) );

425: end if;
426: if p_transaction_id is null then
427: l_encrypted_tranx_id := p_transaction_id;
428: else
429: l_encrypted_tranx_id := fnd_session_utilities.transactionID_to_xtid( TO_NUMBER(p_transaction_id) );
430: end if;
431: end if;
432:
433: l_result := fnd_session_management.validateSessionPrivate(