BusinessObjects Board

Track Usage without Auditor?

Hi,

I understand that Auditing is required to capture the statistics/metrics of system, users, and documents. But is there anyway where I can get an answer for the “When was the last time user login to Infoview?”?


selvaips (BOB member since 2005-05-03)

Here is a simple way that you can see the last logon time (and last failed logon time) of a user by querying the Business Objects Repository
note: You will need an Administrator type account

Log into Query Builder
the address for query builder is
http://[SERVERNAME]:[PORT]/AdminTools

enter the following query

SELECT
SI_NAME
,SI_LASTLOGONTIME
,SI_LAST_FAILED_LOGON_TIME
FROM CI_SYSTEMOBJECTS
WHERE
SI_NAME = ‘[USERNAME]’

replace [USERNAME] with the Business Objects account name you are interested in
click Submit Query


buzz :australia: (BOB member since 2005-08-12)

Hi,

Great…!! This is what I needed. Many thanks…!!


selvaips (BOB member since 2005-05-03)