Hi All,
I'm working on Dynamics 365 for sales and trying to get the FollowUp field value through FetchXML into C# console application. But while debugging i was unable to get the followup field value(data) which is stopping my development further. Can anyone please suggest on how to get the value either through Fetchxml or through query expression?
My FetchXML code :
<fetch mapping="logical" version="1.0" output-format="xml-platform" distinct="false">
<entity name="incident">
<attribute name="title" />
<attribute name="ticketnumber" />
<attribute name="createdon" />
<attribute name="incidentid" />
<attribute name="caseorigincode" />
<attribute name="statuscode" />
<attribute name="statecode" />
<attribute name="prioritycode" />
<attribute name="ownerid" />
<attribute name="followupby" />
<attribute name="customerid" />
<order descending="false" attribute="title" />
<filter type="and">
<condition attribute="statuscode" operator="in">
<value>1</value>
<value>4</value>
</condition>
<condition attribute="prioritycode" operator="in">
<value>1</value>
<value>2</value>
<value>3</value>
</condition>
<filter type="or">
<condition value="30" attribute="followupby" operator="last-x-days" />
<condition attribute="followupby" operator="null" />
</filter>
</filter>
</entity>
</fetch>
*This post is locked for comments