0
是否有人知道如何獲得(以編程方式 - C#)在Microsoft CRM 3.0(使用Web服務CRM服務)上的廣告系列列表(和詳細信息)?檢索廣告系列Microsoft Dynamics CRM 3.0
任何幫助或文檔鏈接將不勝感激。
在此先感謝。
是否有人知道如何獲得(以編程方式 - C#)在Microsoft CRM 3.0(使用Web服務CRM服務)上的廣告系列列表(和詳細信息)?檢索廣告系列Microsoft Dynamics CRM 3.0
任何幫助或文檔鏈接將不勝感激。
在此先感謝。
如果有人感興趣,我發現如何使用web服務從Microsoft CRM 3.0獲取廣告系列。這是代碼。
fetchFilter += @"<fetch mapping='logical'>";
fetchFilter += @"<entity name='campaign'><all-attributes/>";
fetchFilter += @"<link-entity name='systemuser' to='owninguser'>";
fetchFilter += @"<filter type='and'>";
fetchFilter += @"<condition attribute='firstname' operator='eq' value='" + firstName + "' />";
fetchFilter += @"<condition attribute='lastname' operator='eq' value='" + lastName + "' />";
fetchFilter += @"</filter>";
fetchFilter += @"</link-entity>";
fetchFilter += @"</entity>";
fetchFilter += @"</fetch>";
XmlDocument xmldoc = new XmlDocument();
xmldoc.LoadXml(CrmWebService.Fetch(fetchFilter));
希望它對某人有用。 再見。