我正在使用 BIDS 为 Dynamics CRM 2011 创建自定义报告。对于报价,我有customerEntityName
返回联系人或帐户的潜在客户类型。如何将此链接到正确的客户实体以将地址详细信息等提取到报告中?
问问题
843 次
1 回答
1
你可以尝试这样的事情;因为它只会绑定到帐户或联系人,所以只有一组数据会返回值。
<?xml version="1.0"?>
<fetch distinct="false" mapping="logical" output-format="xml-platform" version="1.0">
<entity name="quote">
<attribute name="name"/> <attribute name="statecode"/> <attribute name="totalamount"/> <attribute name="customerid"/> <attribute name="quoteid"/> <order descending="false" attribute="name"/> -<link-entity name="account" alias="a_ce7d47f5258c4f20a6778ef6c718fa3b" link-type="outer" visible="false" to="customerid" from="accountid">
<attribute name="address1_line1"/>
</link-entity> -<link-entity name="contact" alias="quotecustomeridcontactcontactid" link-type="outer" visible="false" to="customerid" from="contactid">
<attribute name="address1_line1"/>
</link-entity>
</entity>
</fetch>
于 2012-03-01T18:08:17.657 回答