I'm running a FetchXML query using SSRS and the FetchXML connector for CRM Online. This is what I'm running:
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="systemuser">
<attribute name="fullname" />
<attribute name="positionid" />
<attribute name="systemuserid" />
<order attribute="fullname" descending="false" />
<filter type="and">
<condition attribute="isdisabled" operator="eq" value="0" />
</filter>
</entity>
</fetch>
When I run this as an advanced find in CRM, it shows the Name and the Position of the active users. When I run this using the query designer in SSRS it yields the name, but the position column is blank down the line.
Has anybody run into something like this before? Am I doing something wrong?
Thanks!
*This post is locked for comments
I have the same question (0)