Last log on date

kimjp

Member
I hope I am posting in the correct place. If not I apologize. I am trying to find out last time patricular users have logged onto our OW application. Does anyone know of a file that would give us the last time a user logged into the system.
Our application is old:

B733.2 coexistent with World A.7.3
As/400 (central objects on as/400)
 
Kim,

Assuming you have security history turned on (History=1 in the [SECURITY] section of the JDE.INI]:

select MAX(SHUPMJ)
from SYS7334/F9312
where SHEVTYP in ('01')
and SHUSER = 'JDE'

Cheers,
 
Back
Top