Hello.
When trying to design a custom fetchxml report, I'm running into an interesting problem that I'm wondering if somebody can assist with.
Suppose I have a simple Fetchxml query
<fetch distinct="false" mapping="logical" output-format="xml-platform" version="1.0" >
<entity name="incident" >
<attribute name="title" />
<attribute name="ownerid" />
<attribute name="statuscode" />
</entity>
</fetch>
The dataset should be returning:
- title
- ownerid
- owneridValue
- owneridEntityName
- statuscode
- statuscodeValue
But all I'm getting is:
- title
- ownerid
- statuscode
Anyone know what might be causing this?
FYI:
- I've tried against SSDT 2012, 2013
- I have Report Authoring Extensions installed (it's up to date from what I know)
- This query/report works fine on another machine with a seperate SSDT 2012 installed!!
- The .rdl xml is identical, except for the [logicalname]value code missing
- If I try to manually add these fields into the broken environment, and then add the fields to a table in the report, the report just lists the fields as blank.
Any thoughts would be greatly appreciated!
Steve
*This post is locked for comments