<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style id="owaParaStyle" type="text/css">P {margin-top:0;margin-bottom:0;}</style>
</head>
<body ocsi="0" fpstyle="1" style="">
<div style="direction: ltr; font-family: Tahoma; color: rgb(0, 0, 0); font-size: 13px;">
Hi all,<br>
<br>
actually you can query the ccm for this info.<br>
The following query gives you the last login time for a specific device, you could modify the query to query on the basis of users:<br>
run sql select n.dnorpattern,d.name,p.name,em.datetimestamp,em.cdrtime from device d,device p,devicenumplanmap dnmp,numplan n,extensionmobilitydynamic em where em.fkdevice=d.pkid and em.fkdevice_currentloginprofile=p.pkid and p.pkid=dnmp.fkdevice and dnmp.fknumplan=n.pkid
 and d.name='SEP001122334455'<br>
<br>
would give you something like this:<br>
dnorpattern name            name             datetimestamp cdrtime    <br>
=========== =============== ================ ============= ========== <br>
42052       SEP006440B57D82 UDP_jdoe_8961 1288356300    1288356300 <br>
<br>
Both the datetimestamp and the cdrtime (hidden field which shows last update of the row) are unix timestamps, so you probably want to convert this to something more user friendly or use stephens product.<br>
<br>
kind regards<br>
bernhard<br>
<div style="font-family: Times New Roman; color: rgb(0, 0, 0); font-size: 16px;">
<div>
<div></div>
</div>
</div>
</div>
</body>
</html>