DBA Data[Home] [Help]

APPS.FND_SIGNON dependencies on FND_SESSION_MANAGEMENT

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

529: /*
530: * Special handling of 'SIGNONAUDIT:LEVEL' for proxy sessions
531: */
532: /* Proxy info is already passed to this api
533: * so no need to call Fnd_Session_Management.isProxySession
534: */
535: l_proxy_user_id := proxy_user;
536:
537: if ((l_proxy_user_id is not NULL) AND

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

848:
849: BEGIN
850:
851: select userenv('SESSIONID') into l_session_id from dual;
852: l_proxy_user_id := fnd_session_management.isProxySession(null);
853:
854:
855: if (l_proxy_user_id is not NULL) then
856: l_audit_level := 'D';

Line 942: fnd_session_management.isProxySession(l_session_id);

938: from ICX_SESSIONS
939: where session_id= l_session_id;
940:
941: l_proxy_user_id :=
942: fnd_session_management.isProxySession(l_session_id);
943: exception
944: when no_data_found then
945: l_proxy_user_id := NULL;
946: end;