This feature is supported on 11.5.10 and upwards only. Do not turn this option on for 11.5.7 to 11.5.9 as your users will receive and error during the logon.

When using the new “Oracle” logon method which logs you in using an Oracle screen, GL Wand tracks the Oracle session information. This allows GL Wand to flag which Oracle Application sessions were originated in GL Wand. You can then report off this information in order to track your user’s GL Wand usage.

If you would like to enable this tracking set this option to “Yes”. When your users log on their sessions will be flagged with GL Wand. You can use the following SQL statement to report on this information.

SELECT   isa.*, s.first_connect, s.last_connect, s.disabled_flag, u.user_name, icx_sec.check_session (s.session_id) status FROM icx_sessions s, icx_session_attributes isa, fnd_user u WHERE s.session_id = isa.session_id AND isa.NAME = 'EXCEL4APPS' AND isa.VALUE = 'GL WAND' AND s.user_id = u.user_id ORDER BY s.last_connect DESC