简体   繁体   English

如何在MS Dynamics CRM 365 v9.0中的Unified Interface App中使用特定视图打开实体记录列表页面?

[英]How to open Entity records list page with specific view in Unified Interface App in MS Dynamics CRM 365 v9.0?

I want to open Entity records list page with specific view on button click in Unified User Interface app in MS Dynamics CRM 365 v9.0. 我想打开实体记录列表页面,并在MS Dynamics CRM 365 v9.0的Unified User Interface应用程序中单击按钮后显示特定视图。 For example, Contacts list page and Active Contacts view. 例如,“ Contacts列表”页面和“ Active Contacts视图。

Following URL works find in Web 以下URL作品可在Web中找到

window.open(serverUrl + "/main.aspx?etn=contact&pagetype=entitylist&viewid={"61A3C426-36CC-43EF-8549-E6A525F2FC08"}&viewtype=1039&navbar=off&cmdbar=true");

I have tried with this URL too but it doesn't work in App 我也尝试过使用此URL,但在App中不起作用

window.open(serverUrl + "/main.aspx?appid={yourAppId}?etn=contact&pagetype=entitylist&viewid={"61A3C426-36CC-43EF-8549-E6A525F2FC08"}&viewtype=1039&navbar=off&cmdbar=true");

You can use Below Url structure: 您可以使用低于网址结构:

http://myorg.crm.dynamics.com/main.aspx?etn=contact&pagetype=entitylist&viewid={00000000-0000-0000-00AA-000010001004}&viewtype=1039&navbar=off&cmdbar=false

"viewtype" values are: 1039: For system View. “ viewtype”值是:1039:对于系统视图。 4230: For Personal View 4230:用于个人视图

For more info please see this page. 有关更多信息,请参见此页面。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在Dynamics 365 CRM v9.0 Web API中获取帐户实体的所有相关联系人 - Getting all related Contact for an Account entity in Dynamics 365 CRM v9.0 web api 如何在本地 Dynamics 365 V9.0 中启用混合体验 - How to enable Hybrid Experience in Dynamics 365 V9.0 on premise 如何在 Dynamics CRM v9.0 中配置日历规则? - How to configure Calendar Rule in Dynamics CRM v9.0? Dynamics crm 365 v9.0 中的 Xrm.Navigation.openUrl 问题 - Xrm.Navigation.openUrl issue in Dynamics crm 365 v9.0 Dynamics 365 V9.0:无法解码错误日志 - Dynamics 365 V9.0: unable to decode the error log 如何限制对MS Dynamics CRM中实体列表中特定项目的访问 - How to restrict access to specific item in entity list in MS Dynamics CRM Unified Client Interface中的Dynamics 365(9.0)-如何在“新建”按钮和可编辑表单上方启用网格? - Dynamics 365(9.0) in Unified Client Interface - How to enable Grid above New button and editable Form? 将CRM动态在线升级后的/api/data/v8.2到/api/data/v9.0? - /api/data/v8.2 to /api/data/v9.0 after dynamics CRM online upgrade? Dynamics 365 CRM 统一界面中搜索结果的不同视图 - Different Views for Search Results in Dynamics 365 CRM Unified Interface 在 Dynamics 365 CRM 统一界面中重新加载/刷新子网格时重新加载表单 - Reload Form on reload/refresh of subgrid in Dynamics 365 CRM Unified Interface
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM