FetchXML根据活动状态文本对活动进行排序

时间:2019-06-21 12:15:20

标签: dynamics-crm dynamics-365 fetchxml

我需要一个可以根据“活动状态”选项集“文本”对所有活动进行排序的fetchXML。

我的FetchXML

<fetch top='5000' >
  <entity name='task' >
    <attribute name='activityid' />
    <attribute name='statecode' />
    <attribute name='statuscodename' />
    <order attribute='statecode' />
  </entity>
</fetch>

它正在对值进行排序。

1 个答案:

答案 0 :(得分:3)

您可以更改顺序以使用选项设置值的名称:

<fetch top='5000' >
  <entity name='task'>
    <attribute name='activityid' />
    <attribute name='statecode' />
    <attribute name='statecodename' />
    <attribute name='statuscodename' />
    <order attribute='statecodename' />
  </entity>
</fetch>