Параметры даты в FetchXML - PullRequest
2 голосов
/ 14 ноября 2011

Я использую FetchXML в SSRS 2008 для создания отчета из CRM 2011. Я хочу, чтобы в отчете были параметры, чтобы вы могли отображать записи между датами - датами.Это запрос, который у меня есть.

<fetch>
      <entity name="appointment">
        <attribute name="scheduledstart" />
        <link-entity name="systemuser" from="systemuserid" to="ownerid">
            <attribute name="firstname" alias="ownerFirstName" />
            <attribute name="lastname" alias="ownerLastName" />
        </link-entity>
        <link-entity name="contact" from="contactid" to="new_contactperson">
            <attribute name="parentcustomerid" alias="parentaccount" />
            <attribute name="new_businessunit" alias="businessunit" />
        </link-entity>
        <attribute name="new_contactperson" />
        <attribute name="subject" />
        <attribute name="new_coldernotes" />
    <link-entity name="activityparty" from="activityid" to="activityid">
    <attribute name="participationtypemask" alias="participationtypemask" />
        <filter>
        <condition attribute="participationtypemask" operator="eq" value="9" />
        </filter>
        <link-entity name="systemuser" from="systemuserid" to="partyid">
            <attribute name="fullname" />
        </link-entity>
    </link-entity>
    <order attribute="scheduledstart" descending="true" />
      </entity>
</fetch>

Как бы я мог сделать так, чтобы я мог фильтровать между датами?

Спасибо!

1 Ответ

5 голосов
/ 14 ноября 2011

Не уверен, что у вас есть доступ к собственному клиенту CRM, но представление Advanced Find быстро генерирует этот пример FetchXML:

<filter type="and">
  <condition attribute="modifiedon" operator="on-or-after" value="2011-10-04" />
  <condition attribute="modifiedon" operator="on-or-before" value="2011-11-13" />
</filter>
...