假设我们有一个与实体 B 具有 1:N 关系的实体 A。我想创建一个视图,仅显示没有实体 B 的 A 的记录。一个很好的例子是,我想查看没有顺序的报价。
任何具有任何复杂性的解决方案都将受到赞赏,例如插件、脚本、silverlight ......!
假设我们有一个与实体 B 具有 1:N 关系的实体 A。我想创建一个视图,仅显示没有实体 B 的 A 的记录。一个很好的例子是,我想查看没有顺序的报价。
任何具有任何复杂性的解决方案都将受到赞赏,例如插件、脚本、silverlight ......!
您将不得不以一种或另一种方式间接解决它:
编辑:请注意,在 CRM 2013(“orion”)中,FetchXML 实现确实支持这种视图构造,但高级查找工具(例如)不为其提供 UI。有关更多信息,请参阅此问题的答案: 查看显示没有联系的客户
Use the Advanced Find and Select Quotes, then for the criteria select the Order lookup field and choose the operator to be Does Not Contain Data. By this way, you'll get all records for entity B which have no parents of entity A.
Download the FetchXML and use it in your Plugin or Silverlight.
Edit:
I think the best way is to create an N:N relation with manually created intersect table. And your query has to select target the intersect table. As you might know, the intersect table links to both Entities A and B.
The criteria will be: selecting Intersect table where there is no reference to Entity B.