Is it possible to track individual user access of CRM Dynamics 2013? I just need to know who is logging in and how often.
Thank you
hello,
under system settings, audit, there is an option to audit user access. It will help you to an extent.
if you have outlook client installed, the statistics will be little bit off track.
regards
Jithesh
Hi,
This query will give you the user details who logged in in last 30 days.
<fetch distinct="false" no-lock="false" mapping="logical"> <entity name="audit" enableprefiltering="1"> <attribute name="createdon" /> <attribute name="action" /> <order attribute="createdon" descending="true" /> <filter type='and'> <condition attribute='action' operator='eq' value='64'/> <condition attribute="createdon" operator="last-x-days" value="30" /> </filter> <link-entity name='systemuser' from='systemuserid' to='objectid' link-type='outer' alias='SystemUser'> <attribute name="fullname" /> <attribute name="windowsliveid" /> </link-entity> </entity> </fetch>
Thanks and Regards.