在 MS Dynamics CRM 4.0 的文章视图中添加列

发布于 2024-07-26 23:29:43 字数 117 浏览 3 评论 0原文

MS Dynamics CRM 4.0 中的文章实体似乎不可自定义。 有什么方法可以将一些列添加到显示文章列表的视图中(不进行高级查找)? 我想在其中看到“创建者”和“创建于”属性。

The Article entity in MS Dynamics CRM 4.0 doesn't appear to be customizable. Is there any way to add some columns to the view that shows the list of article (without doing an Advanced Find)? I'd like to see the Created By and Created On attributes in there.

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

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

发布评论

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

评论(2

傲性难收 2024-08-02 23:29:43

据我对 SDK 页面上“不支持的自定义”的理解,这是一个受支持的更改......尽管我不能肯定地说。

转到以下 URL(进行必要的替换):

http://YOURCRMSERVER/YOURORGNAME/tools/viewEditor/viewManager.aspx?id=00000000-0000-0000-00AA-000010001204

并修改视图以满足您的需求。 节省。 从“自定义实体”网格中,单击“全部发布”。 或者,您还应该能够更改“视图”下拉列表以显示“所有实体”,选择“文章”实体,然后单击“发布”。

要更改其他一些系统视图,请将上面 url 中的 ID 替换为以下 ID 之一:

00000000-0000-0000-00AA-000010001899 我的活动
00000000-0000-0000-00AA-000010001900 公开活动
00000000-0000-0000-00AA-000010001901 已结束活动
00000000-0000-0000-00AA-000010001902 所有活动
00000000-0000-0000-00AA-000010001903 活动相关视图
00000000-0000-0000-00AA-000010001911 主页
00000000-0000-0000-00AA-000010001951 销售流程活动子网格
00000000-0000-0000-00AA-000000666100 活动高级查找视图
00000000-0000-0000-00AA-000010002000 相关视图:注释
00000000-0000-0000-00AA-000010001203 相关查看机会
00000000-0000-0000-00AA-000010001204 文章
00000000-0000-0000-00AA-000010001205 相关视图:团队
00000000-0000-0000-00AA-000010001206 相关视图:竞争对手
00000000-0000-0000-00AA-000010001207 相关视图:业务部门
00000000-0000-0000-00AA-000010001208 关联视图:角色
00000000-0000-0000-00AA-000010001209 文章 - 管理知识库搜索
00000000-0000-0000-00AA-000010001210 关联视图:联系人

我在 icu-mscrm.blogspot.com/2005/07/customizing-activity-views.html 上发现了其中大部分内容。

As far as my understanding of the SDK's page on "Unsupported Customizations" goes, this is a supported change....although I can't say for certain.

Go to the following URL (making the necessary replacements):

http://YOURCRMSERVER/YOURORGNAME/tools/viewEditor/viewManager.aspx?id=00000000-0000-0000-00AA-000010001204

and modify the view to suit your needs. Save. From the Customize Entities grid, click Publish All. Alternatively, you should also be able to change the View dropdown to show All Entities, select the Article entity, and click Publish.

To change some other system views, replace the id from the url above with one of the ids below:

00000000-0000-0000-00AA-000010001899 My Activities
00000000-0000-0000-00AA-000010001900 Open Activities
00000000-0000-0000-00AA-000010001901 Closed Activities
00000000-0000-0000-00AA-000010001902 All Activities
00000000-0000-0000-00AA-000010001903 Activities Associated View
00000000-0000-0000-00AA-000010001911 Homepage
00000000-0000-0000-00AA-000010001951 Sales Process Activities Subgrid
00000000-0000-0000-00AA-000000666100 Activities Advanced Find View
00000000-0000-0000-00AA-000010002000 Associated View: Notes
00000000-0000-0000-00AA-000010001203 Associated View Opportunities
00000000-0000-0000-00AA-000010001204 Articles
00000000-0000-0000-00AA-000010001205 Associated View: Teams
00000000-0000-0000-00AA-000010001206 Associated View: Competitors
00000000-0000-0000-00AA-000010001207 Associated View: Business Units
00000000-0000-0000-00AA-000010001208 Associated View: Roles
00000000-0000-0000-00AA-000010001209 Articles - Manage KB Search
00000000-0000-0000-00AA-000010001210 Associated View: Contacts

I came across most of this helpful at icu-mscrm.blogspot.com/2005/07/customizing-activity-views.html.

南风起 2024-08-02 23:29:43

Polshgiant 的回答让我完成了 90% 的任务,但是改变那个特定的视图似乎没有任何效果。 它实际上是我需要更改的索引文章视图(7ad58fad-40af-4e72-ac4e-db8c82e1e62d),即。 URL 为:

http://YOURCRMSERVER/ YOURORGNAME/tools/viewEditor/viewManager.aspx?id=7ad58fad-40af-4e72-ac4e-db8c82e1e62d

以下 SQL 查询帮助我找到它:

SELECT *
FROM dbo.SavedQueryBase
WHERE IsCustomizable = 0 AND Name LIKE '%Article%'

Polshgiant's answer got me 90% of the way there, but changing that particular view didn't seem to have any effect. It's actually the Indexed Articles view (7ad58fad-40af-4e72-ac4e-db8c82e1e62d) that I needed to change, ie. the URL was:

http://YOURCRMSERVER/YOURORGNAME/tools/viewEditor/viewManager.aspx?id=7ad58fad-40af-4e72-ac4e-db8c82e1e62d

The following SQL query helped me find it:

SELECT *
FROM dbo.SavedQueryBase
WHERE IsCustomizable = 0 AND Name LIKE '%Article%'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文