使用 REST API 的 Dynamics CRM 2011 搜索

发布于 2025-01-02 23:42:12 字数 208 浏览 0 评论 0原文

我需要使用 MS Dynamics CRM 中的 REST API 调用在 Java 脚本中进行关键字搜索。

是否可以这样做,因为我只看到创建、更新、检索和删除 REST 端点。

请倾诉你的想法,它如何在 Javascript 中实现,如果不是 Javascript 那么如何实现?

是否有 LIKE 查询选项或类似的功能关键字,可以用作查询中的过滤器。

I need to do a keyword search in Java Script using REST API calls in MS Dynamics CRM.

IS it possible to do cause i see only create, update, retrieve and delete REST endpoints.

Please pour your thoughts, how it can be implemented in Javascript and if not in Javascript then how?

And is there a LIKE query option or a similar functionality keyword, which can be used as a filter in the query.

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

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

发布评论

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

评论(3

空袭的梦i 2025-01-09 23:42:12

我已经尝试过 ODATA 查询设计器。我没有 LIKE 查询选项。所以我所做的是,我使用子字符串查询选项来进行搜索,这是我可以从 ODATA 中获得的最大搜索结果。

https://xxx.crm.dynamics.com/XRMServices/2011/OrganizationData.svc/ArticleSet
/$filter=substringof('<searchString>','<entity property>')"

I already tried ODATA Query Designer. I dont have a LIKE query option. So what i did was, I used the substring query option to make the search which is the maximum i can get from ODATA for search.

https://xxx.crm.dynamics.com/XRMServices/2011/OrganizationData.svc/ArticleSet
/$filter=substringof('<searchString>','<entity property>')"
冷情妓 2025-01-09 23:42:12

您是否尝试过使用 ODATA 查询设计器构建查询:http://crm2011odatatool.codeplex.com/

Have you tried to build your query using the ODATA Query Designer: http://crm2011odatatool.codeplex.com/ ?

待"谢繁草 2025-01-09 23:42:12

MS Dynamics CRM 支持开放数据协议
这里介绍了如何在 CRM 中使用它使用 REST 端点的 OData 系统查询选项
您还可以在此示例中查看函数

 retrieveMultipleRecords: function (type, options, successCallback, errorCallback, OnComplete) {

示例:创建、检索、更新并通过 JavaScript 使用 REST 端点进行删除

MS Dynamics CRM supports Open Data Protocol
Here described how to use it inside CRM OData System Query Options Using the REST Endpoint
Also you can see at function

 retrieveMultipleRecords: function (type, options, successCallback, errorCallback, OnComplete) {

in this sample Sample: Create, Retrieve, Update and Delete Using the REST Endpoint with JavaScript

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