DBA Data[Home] [Help]

APPS.FND_SIGNON dependencies on FND_SESSION_MANAGEMENT

Line 509: * so no need to call Fnd_Session_Management.isProxySession

505: /*
506: * Special handling of 'SIGNONAUDIT:LEVEL' for proxy sessions
507: */
508: /* Proxy info is already passed to this api
509: * so no need to call Fnd_Session_Management.isProxySession
510: */
511: l_proxy_user_id := proxy_user;
512:
513: if ((l_proxy_user_id is not NULL) AND

Line 828: l_proxy_user_id := fnd_session_management.isProxySession(null);

824:
825: BEGIN
826:
827: select userenv('SESSIONID') into l_session_id from dual;
828: l_proxy_user_id := fnd_session_management.isProxySession(null);
829:
830:
831: if (l_proxy_user_id is not NULL) then
832: l_audit_level := 'D';

Line 918: fnd_session_management.isProxySession(l_session_id);

914: from ICX_SESSIONS
915: where session_id= l_session_id;
916:
917: l_proxy_user_id :=
918: fnd_session_management.isProxySession(l_session_id);
919: exception
920: when no_data_found then
921: l_proxy_user_id := NULL;
922: end;