2016-02-13 61 views
1

我試圖刪除CRM中的託管解決方案「PowerMailChimp」,但每當我嘗試刪除解決方案時,都會收到以下錯誤消息。通過編號找到關係

因爲ID e7a8ac27-fc65-4a43-9f6d-1bc6645f7749 關係存在,涉及到這個屬性不能刪除ID爲56d0dec2-0061-e511-80e0-3863bb347ba8 屬性和刪除級聯 限制

我花了好幾個小時試圖在我的PowerMailChimp解決方案中尋找這種關係,但我找不到它,我可能錯過了它。

我的問題是,有沒有辦法查詢CRM中的所有關係,以便能夠知道具有這種關係ID的相關實體?

+0

你可以要求微軟給你的數據庫備份,並設法找到它。 – jcjr

回答

2

也許更快地使用SDK來獲得與該ID的關係:

//Retrieve the One-to-many relationship using the MetadataId. 
RetrieveRelationshipRequest retrieveOneToManyRequest = 
        new RetrieveRelationshipRequest { MetadataId = "the id above" }; 
RetrieveRelationshipResponse retrieveOneToManyResponse = (RetrieveRelationshipResponse)_serviceProxy.Execute(retrieveOneToManyRequest); 

更多信息here