我在Premisis上使用CRM 2011。我有一个门户网站,客户端在其中创建一个故障单(crm中的任务),它进入特定的队列行(CS Queue,EDI Queue,Lab Quue)。但是创造了一些任务,但没有任何问题。我是如何得到这些不在任何队列中的人。
如果有人有想法请与我分享。
提前致谢。
此致
Riaz Usmani
答案 0 :(得分:1)
我相信你可以尝试使用Left Outer Join来获取你的数据。我根据以下文章构建了提供的查询 - http://msdn.microsoft.com/en-us/library/dn531006.aspx试一试:
<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="true">
<entity name="task">
<attribute name="activityid" />
<attribute name="subject" />
<link-entity name="queueitem" from="objectid" to="activityid" alias="ab" link-type="outer">
<attribute name="objectid" />
</link-entity>
<filter type="and">
<condition entityname="ab" attribute="objectid" operator="null" />
</filter>
</entity>
<fetch/>