惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
腾讯CDC
Y
Y Combinator Blog
L
LangChain Blog
B
Blog
U
Unit 42
P
Proofpoint News Feed
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 【当耐特】
WordPress大学
WordPress大学
月光博客
月光博客
Vercel News
Vercel News
雷峰网
雷峰网
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗

博客园 - 子佩

MSCRM2011 AX2009集成SQLSERVER2008Reporting Service 承接微软企业库4.0培训 承接SQLSERVER2008开发培训 Azure学习记录(1) 在MSCRM4.0中发送电子邮件 在内网中体验IFD(2) 在内网中体验IFD 隐藏MSCRM原有页面上的元素 MOSS与MSCRM集成(3) MSCRM让人奇怪的地方 MOSS与MSCRM集成(2) MSCRM项目管理 MOSS和MSCRM的集成(1) MSCRM3.0和Outlook集成 承接SQL SERVER性能优化培训 承接设计模式的培训 承接MOSS应用的培训 承接MOSS应用的培训
ApplicationFiles中文件使用(一)
子佩 · 2008-10-15 · via 博客园 - 子佩

环境:MSCRM3.0

activityrecipient.xml

我们在选择参与约会的客户或者联系人时,如果遇到重名的,我们只能通过点击属性,来查看哪一个记录是我们真正需要选择的。如下图:

这样的用户体验并不好,我们可以通过修改activityrecipient.xml这个文件,来解决这个问题。

这个文件有对联系人的定义,如下:

  <object type="2">
   <columns>
    <column data="fullname" type="normal"/>
    <column data="telephone1" type="hidden"/>
    <column data="fax" type="hidden"/>
    <column data="address1_fax" type="hidden"/>
    <column data="address1_name" type="hidden"/>
   </columns>
   <datasource>
    <filter type="and">
     <condition attribute="statecode" operator="ne" value="1"/>
     <filter type="or">
      <condition attribute="fullname" operator="like" value="!searchvalue" />
      <condition attribute="firstname" operator="like" value="!searchvalue" />
      <condition attribute="lastname" operator="like" value="!searchvalue" />
      <condition attribute="middlename" operator="like" value="!searchvalue" />
      <condition attribute="emailaddress1" operator="like" value="!searchvalue" />
     </filter>
    </filter>
   </datasource>
  </object>
这里定义的显示字段只有fullcode,我们可以把第二个字段Telephone1的type修改为“normal”,那么我们就可以在多选框中看到这个字段,如下图:

除了修改显示字段,也可以修改查找字段

这个做法在MSCRM3.0下验证过,一定可行。