Announcements
Hi,
How can I get a list of all the Users within a system with the Security Roles assigned to them in CRM 2011 On-Prem.
I can go through each User one by one, but was just seeing if there was a way to export an excel spreadsheet or something like that with the information.
*This post is locked for comments
Interesting info on the out of the box report.
harihar
Thanks for the responses. Rajkumar that was what I was after, cheers.
Please try the fetchXml below to get this.
<fetch mapping="logical" count="50" version="1.0">
<entity name="systemuser">
<attribute name="fullname" />
<link-entity name="systemuserroles" from="systemuserid" to="systemuserid">
<link-entity name="role" from="roleid" to="roleid">
<attribute name="name" />
</link-entity>
</link-entity>
</entity>
</fetch>
You can do it using advanced find. please see the screenshot below.
or please refer to the following link to do it with fetchXml
thanks
Anil
JD,
Refer the following blog:
www.powerobjects.com/.../dynamics-crm-user-summary-report
community.dynamics.com/.../out-of-the-box-report-dynamics-crm-user-summary
Hope this helps.
Regards,
R.Rajkumar
"Please mark my answer as verified if you found it helpful"
Personally I'd just query the sql db using filteredsystemuser and filteredsystemuserroles
André Arnaud de Cal...
294,095
Super User 2025 Season 1
Martin Dráb
232,866
Most Valuable Professional
nmaenpaa
101,158
Moderator