如何将谷歌搜索集成到微软动态crm中?
我们正在使用 Microsoft Dynamics CRM,但缺乏类似 Google 的搜索引擎正在削弱我们的生产力。我们拥有近 10 年的数据,但如果没有好的搜索引擎,我们最终只能重新发现解决方案。
我想知道是否可以将自定义 Google 搜索集成到我们的 MS Dynamics CRM 中?如果可能的话,我该如何解决这个问题?任何指示都会有帮助。
We are using Microsoft Dynamics CRM but a lack of Google like search engine is crippling our productivity. We have nearly 10 years of data but without a good search engine we end up rediscovering solutions.
I was wondering if it is possible to integrate custom Google search to our MS dynamics CRM? If it is possible, how do I go about solving this problem? Any pointers would be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 HTML Web 资源相当轻松地实现 Google/Web 搜索。只需转到您要使用的搜索引擎,输入一些搜索文本并进行搜索即可。从搜索结果中复制 URL。如果我在 Google 中搜索“bacon”,这就是我得到的 URL -
在 HTML Web 资源中,您现在只需创建一个文本框和一个搜索按钮并将其连接起来,以便当您点击搜索时它会生成上面的 URL 替换“培根”与搜索框中输入的任何内容。您可以使用 javascript window.open(url);让它生成带有搜索结果的窗口。
You can implement a Google/Web search fairly easily by using an HTML web resource. Just go to the search engine you want to use, type in some search text and search for it. From the search results copy the URL. If I search Google for "bacon", this is the URL I get -
In the HTML web resource, you now just need to create a textbox and a search button and wire it up so that when you hit search it generates the URL above replacing "bacon" with whatever was typed in the search box. You can use a javascript window.open(url); to get it to spawn the window with the search results.
对自定义 Google 搜索不太了解,但 Leon Tribe(MVP)最近发布了几篇博客文章,介绍如何在 CRM 中创建他所谓的“通用搜索”工具 - 所有这些都使用标准配置工具完成在 CRM 内(无需自定义代码)。
它仍然使用内置的 CRM 搜索逻辑,但他的解决方案不是仅在单个实体中进行搜索,而是提供了从单个搜索查询跨多个实体(包括自定义实体)进行搜索的能力。
可能不是您问题的最终答案,但可能会给您一些关于设置相对简单的想法,并在您研究更全面的选项时进行一定程度的改进。
他的博客文章的链接如下:
http://leontribe。 blogspot.com/2011/06/slightly-more-elegant-codeless.html
http://leontribe.blogspot.com/2011/06/codeless -universal-search-for-dynamics.html
Don't know too much regarding a custom Google search, but Leon Tribe (a MVP) has posted a couple of blog posts recently on how to create what he calls a "universal search" facility in CRM - all done using the standard configuration tools within CRM (no custom code required).
It still uses the built in CRM search logic, but rather than searching only across an individual entity, his solution provides an ability to search across multiple entities (including custom ones) from a single search query.
Possibly not the ultimate answer to your problem, but might give you some ideas on something relatively simple to setup, with some degree of improvement, while you investigate more comprehensive options.
The links to his blog posts as follows:
http://leontribe.blogspot.com/2011/06/slightly-more-elegant-codeless.html
http://leontribe.blogspot.com/2011/06/codeless-universal-search-for-dynamics.html