Hi everyone
This is the first time that I've worked with Dynamics & XML, so please forgive me if this is a stupid question!
I have created some XML using the FetchXML Builder tool in XRMToolBox as shown below:
<fetch top="50">
<entity name="contact">
<attribute name="serialnumber" alias="Serial" />
<attribute name="fullname" alias="Name" />
<attribute name="ownerid" alias="OwnerID" />
<filter />
<link-entity name="employment" from="sic_contactid" to="contactid" link-type="inner">
<attribute name="employernameorganisation" alias="Employer" />
<attribute name="employername" />
<filter>
<condition attribute="employernameorganisation" operator="not-null" />
</filter>
</link-entity>
<link-entity name="principalobjectaccess" from="objectid" to="contactid">
<attribute name="principalid" alias="Shared_with" />
</link-entity>
</entity>
</fetch>
Ultimately I want to parse the XML via Excel so that I can then link the Excel spreadsheet containing the data to a Power BI report.
However, the XML shown above obviously doesn't have any connection strings in it for our incidence of Dynamics, so Excel doesn't know where to pull the data from. How would I go about achieving this?
Many thanks
Jon