Hi Ravi,
Sure, here is it:
<fetch distinct="false" no-lock="false" mapping="logical" >
<entity name="audit" >
<attribute name="createdon" />
<attribute name="action" />
<attribute name="userid" />
<attribute name="objectid" />
<attribute name="objecttypecode" />
<order attribute="createdon" descending="true" />
<filter type="and" >
<condition attribute="action" operator="eq" value="64" />
</filter>
<link-entity name="systemuser" from="systemuserid" to="objectid" link-type="outer" alias="SystemUser" >
<attribute name="fullname" />
<attribute name="windowsliveid" />
<attribute name="businessunitid" />
<attribute name="isdisabled" />
</link-entity>
</entity>
</fetch>
I had this idea from here:
www.concurrency.com/.../creating-an-audit-report-for-user-logins-in-dynami
Basically the end goal would be to be able to export to excel the users with their log dates and times.
Many thanks,