Sharepoint BDC - 检查名称不起作用

发布于 2024-10-09 16:00:30 字数 318 浏览 8 评论 0原文

长话短说:

我的 sharepoint 2007 服务器中有一个 BDC 应用程序定义,它从 SQL 服务器提取数据。

其中一些数据是员工姓名。

我想做的是,当用户在 BDC 列(自定义列表中)中写入员工姓名的一部分,然后单击“检查姓名”时,它将向他显示可用姓名的列表成立。 (就像这个用户列类型:)

alt text

现在,在现实生活中使用 BDC 时会发生什么,我没有看到可用用户列表。

任何解决此问题的帮助将不胜感激!

Long story short:

I have a BDC application definition in my sharepoint 2007 server, which is pulling data from a SQL server.

Some of this data is the Employee Name.

What i'm trying to do, is that when a user is writing a portion of the employee name in the BDC column (in the custom list) and then clicks 'Check Names', it will show him a list of the available names it found. (Like this user column type:)

alt text

now, what happens in real life when using BDC, is that i dont see the list of available users.

Any help solving this issue would be greatly appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

合久必婚 2024-10-16 16:00:30

您可以解决此问题,在 Finder 方法中为姓名字段添加过滤器,并将属性“UsedForDisambiguation”设置为“true”

例如:此过滤器适用于员工姓名字段:

<FilterDescriptors>
            <FilterDescriptor Type="Wildcard" Name="Name">
  <Properties>
        <Property Name="UsedForDisambiguation" Type="System.Boolean">true</Property>
  </Properties>
          </FilterDescriptor>
 </FilterDescriptors>

然后,升级 BDC,当用户编写名称并单击“检查名称”按钮 sharepoint 将尝试使用 SpecificFinder(按 ID)查找员工,如果未找到任何内容,则将尝试使用此过滤器查找员工。

问候!

you could resolve this problem addin a Filter for the Name Field inside the Finder method, and setting the property "UsedForDisambiguation" with "true"

Ex: This filter applys to the employee name field:

<FilterDescriptors>
            <FilterDescriptor Type="Wildcard" Name="Name">
  <Properties>
        <Property Name="UsedForDisambiguation" Type="System.Boolean">true</Property>
  </Properties>
          </FilterDescriptor>
 </FilterDescriptors>

Then, upgrade the BDC and when the user write the name and click the "Check names" button sharepoint will try to find the employee using the SpecificFinder (by ID), and if nothing is found then will try to find employees with this filter.

Regads!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文