构建实体表单 URL
Microsoft CRM 2011 问题。给定以下参数:
- 实体架构名称(即 opportunity、new_customentity)
- 实体 GUID
- CRM 组织基本 URL(即 http://myhost.com/ ORGNAME/)
如何构建一个 url 来指向该记录的主要(或“默认”)形式?
我可以告诉表单 url 中的模式,但某些查询字符串参数非常模糊,我不知道如何将它们重用于任何其他类型的实体。此外,4.0 版本还为系统实体提供了特定的 URL(/sfa/ 等)。现在似乎不再是这样了。
任何帮助将不胜感激 - 谢谢。
(欢迎添加其他标签,我无法添加它们。)
a Microsoft CRM 2011 question. Given the following parameters:
- An entity schema name (i.e. opportunity, new_customentity)
- An entity guid
- A CRM organization base url (i.e. http://myhost.com/ORGNAME/)
How can I build an url to point to the main (or "default") form of that record?
I can tell a pattern in form urls, but some querystring params are pretty obscure and I wouldn't know how to reuse them for any other kind of entity. In addition, version 4.0 had specific URLs (/sfa/, etc) for system entities. It doesn't seem to be the case anymore.
Any help would be appreciated - thanks.
(additional tags welcome, I cannot add them.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 MSDN,格式为:
替换
{ENTITYNAME}
和{ENTITYGUID}
以及您的值。According to MSDN, the format would be:
Replace
{ENTITYNAME}
and{ENTITYGUID}
with your values.