Focal Point
[CLOSED] User Logon to dashboard information

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/3427090495

November 21, 2010, 10:09 PM
Arif
[CLOSED] User Logon to dashboard information
Is there a place where I can capture users log in information? I have resource analyzer but it only shower users who have ran the report but I would like to see users who have logged into dashboard. I would be even more happy if I can capture library logins. Has anybody done auditing on dashboards or library reports?

This message has been edited. Last edited by: Kerry,


WebFOCUS 7.6.10
Windows
HTML
November 23, 2010, 09:18 AM
Arif
I found an old post here that explains how to track user:
However, the problem is I dont have new version and this code is not working. Any idea? I am using 7.6.10
  

-*-- Print a report of the last time a User logged in to WF Dashboard ----------
-*-- (Based on platform independent method of listing files in a directory)
-*-- By Francis Mariani - 2007/04/05

-SET &ECHO=ALL;

-SET &DATADIR = 'D:\ibi\WebFOCUS53\worp\log';

APP MAP TEMPAPP1 &DATADIR
-RUN

APP QUERY TEMPAPP1 HOLD
-RUN

?FF FOCAPPQ
-RUN

DEFINE FILE FOCAPPQ
USER_ID/A24 = GETTOK(FILENAME, 256, 1, '_', 24, 'A24');
LOGIN_DT/A8YYMD = GETTOK(FILENAME, 256, 2, '_', 8, 'A8');
LOGIN_TM1/A6 = GETTOK(FILENAME, 256, 3, '_', 6, 'A6');
LOGIN_TM/A8 = EDIT(LOGIN_TM1,'99:99:99');
END
-RUN

TABLE FILE FOCAPPQ
SUM
LOGIN_TM
BY USER_ID
BY HIGHEST 1 LOGIN_DT
WHERE RECORDLIMIT EQ 5000
END
-RUN


WebFOCUS 7.6.10
Windows
HTML
November 24, 2010, 08:04 AM
Brian Suter
If you want to see who is logged in, look at the session monitor in the 7611 WF Client console.


Brian Suter
VP WebFOCUS Product Development