检索广告系列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)); 

希望它对某人有用。 再见。