locked
Report for tracking usage RRS feed

  • Question

  • 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

    Friday, September 26, 2014 9:06 PM

All replies

  • 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

    Saturday, September 27, 2014 12:45 AM
  • 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.

    • Proposed as answer by Ravitheja J Saturday, September 27, 2014 7:16 AM
    Saturday, September 27, 2014 7:15 AM