我嘗試使用下面的代碼來檢索記錄在SharePoint網址:CRM 2011如何使用SharePointDocumentLocation
RetrieveAbsoluteAndSiteCollectionUrlRequest retrieveRequest = new RetrieveAbsoluteAndSiteCollectionUrlRequest
{
Target = new EntityReference(SharePointDocumentLocation.EntityLogicalName, _spDocLocId)
};
RetrieveAbsoluteAndSiteCollectionUrlResponse retrieveResponse = (RetrieveAbsoluteAndSiteCollectionUrlResponse)_service.Execute(retrieveRequest);
return retrieveResponse.AbsoluteUrl.ToString();
但它說,SharePointDocumentLocation不存在,並已要求對它的引用。我找不到任何這方面的參考,我不知道如何讓它工作。誰能幫忙?
感謝
其結果的獲取上具有regardingobjectid作爲記錄ID的sharepointdocumentlocation表。我已經看到這個代碼的其他例子與我的相同的引用和幾乎相同的代碼,但我不能看到這個SharePointDocumentLocation被定義的位置 – jimminybob 2012-07-06 14:32:00