DBA Data[Home] [Help]

APPS.ICX_ADMIN_SIG dependencies on ICX_SESSIONS

Line 49: icx_sessions icx

45:
46: select ffunc.function_name
47: into l_application_short_name
48: from fnd_form_functions_vl ffunc,
49: icx_sessions icx
50: where icx.session_id = l_session_id
51: and icx.function_id = ffunc.function_id;
52:
53: exception

Line 208: icx_sessions icx

204:
205: select ffunc.function_name
206: into l_application_short_name
207: from fnd_form_functions_vl ffunc,
208: icx_sessions icx
209: where icx.session_id = l_session_id
210: and icx.function_id = ffunc.function_id;
211:
212: exception

Line 650: update icx_sessions

646: l_session_id := icx_sec.getsessioncookie;
647: -- bug 2335995 l_session_id is not null
648: if ((l_session_id is not null) and (l_session_id > -1))
649: then
650: update icx_sessions
651: set disabled_flag = 'Y'
652: where session_id = l_session_id;
653: commit;
654:

Line 657: from ICX_SESSIONS

653: commit;
654:
655: select HOME_URL, MODE_CODE, Login_id
656: into l_url, l_mode_code, l_login_id
657: from ICX_SESSIONS
658: where SESSION_ID = l_session_id; -- mputman added (l_)login_id for call to fnd_signon.
659: IF l_login_id IS NOT NULL THEN
660: fnd_signon.audit_end(l_login_id); -- mputman added to end audit session and resps.
661: END IF;