CRM 2011: 报价(Quote Detail)到订单(Order Detail)的Mapping

CRM 2011: 报价(Quote Detail)到订单(Order Detail)的Mapping

(MSCRM 2011 Mapping QuoteProduct to OrderProduct)

由于QuoteProduct 到 OrderProduct 的mapping是隐藏的,我们在solution管理里面是看不到它们之间的Mapping信息的,但是它们的关系是存在的。

我们怎么找到它们的关系呢?

在SQL里面查询如下语句:

SELECT  EntityMapId 
FROM    EntityMapBase 
WHERE   TargetEntityName='salesorderdetail' AND SourceEntityName='quotedetail'

你会看到它们之间的EntityMapId,然后在浏览器输入以下地址:

{CRM Server URL}/tools/systemcustomization/relationships/mappings/mappingList.aspx?mappingId={通过SQL查询得来的EntityMapId}

我们熟悉的Mapping管理界面出现了,你就可以Map你自定义的字段了!

原文地址:https://www.cnblogs.com/gb2312/p/3700913.html