Fiscal date query operators in FetchXML
Views (541)
A FetchXML query in Microsoft Dynamics CRM 2015 and Microsoft Dynamics CRM Online 2015 Update can use special fiscal date values in queries. For example, a FetchXML query can find all orders fulfilled in the last fiscal month.
Note
The FetchXML query uses the organization’s fiscal year settings for all fiscal date queries.
Using FetchXML fiscal date conditional operators
The following example shows a FetchXML expression that finds all orders fulfilled in the last fiscal period, according to the organization’s fiscal year settings. For example, if the organization uses fiscal months, the query returns orders fulfilled in the last fiscal month. If the organization uses fiscal quarters, the query returns orders fulfilled in the last fiscal quarter. If the organization uses fiscal semesters, orders fulfilled in the last fiscal semester are returned.
XML
<fetch> <entity name="order"> <attribute name="name"/> <filter type="and"> <condition attribute="datefulfilled" operator="last-fiscal-period"/> </filter> </entity></fetch>
The following example shows a…
View original post 319 more words
Filed under: CRM 2011
This was originally posted here.

Like
Report
*This post is locked for comments