使用 URL 打开视图 Microsoft Dynamics CRM 移动客户端(适用于手机)
Open views Microsoft Dynamics CRM mobile client (for Phones) with a URL
我正在尝试从 Dynamics CRM 中的应用程序打开一个视图。这是我的代码:
Intent launchIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("ms-dynamicsxrm://?pagetype=create&etn=account"));
launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(launchIntent);
它打开了 CRM 移动应用程序,但未打开正确的表单或视图。它打开主屏幕。有人知道怎么做吗?
这是微软的文档:Extend Microsoft Dynamics CRM on the client
感谢您的帮助
除 2016 以外的任何其他版本都不可能。根据 MS 的此发行说明,根据这篇 Microsoft 文章(选项卡: 2015 年秋季)
深入搜索应用到应用 linking:
App-to-app deep linking: Other mobile apps (such as email or your
custom web-based app) can now link directly to a record, view, or
dashboard in CRM mobile apps.
您 link 自己的文章也在顶部声明:
Applies To: CRM 2016 on-prem, CRM Online
在这个2016预览中也提到了:
http://cargas.com/wp-content/uploads/2015/09/Microsoft_Dynamics_CRM_2016_Release_Preview_Guide.pdf
App-to-app deep linking Enables other mobile apps (such as email or your custom mashup apps) to link and directly navigate to a record,
view or dashboard within the CRM mobile app. In simple terms, this
provides a URL addressable form/view/dashboard for mobile scenarios.
介绍部分指定列出的功能仅适用于 CRM 2016。
我正在尝试从 Dynamics CRM 中的应用程序打开一个视图。这是我的代码:
Intent launchIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("ms-dynamicsxrm://?pagetype=create&etn=account"));
launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(launchIntent);
它打开了 CRM 移动应用程序,但未打开正确的表单或视图。它打开主屏幕。有人知道怎么做吗?
这是微软的文档:Extend Microsoft Dynamics CRM on the client
感谢您的帮助
除 2016 以外的任何其他版本都不可能。根据 MS 的此发行说明,根据这篇 Microsoft 文章(选项卡: 2015 年秋季)
深入搜索应用到应用 linking:
App-to-app deep linking: Other mobile apps (such as email or your custom web-based app) can now link directly to a record, view, or dashboard in CRM mobile apps.
您 link 自己的文章也在顶部声明:
Applies To: CRM 2016 on-prem, CRM Online
在这个2016预览中也提到了:
http://cargas.com/wp-content/uploads/2015/09/Microsoft_Dynamics_CRM_2016_Release_Preview_Guide.pdf
App-to-app deep linking Enables other mobile apps (such as email or your custom mashup apps) to link and directly navigate to a record, view or dashboard within the CRM mobile app. In simple terms, this provides a URL addressable form/view/dashboard for mobile scenarios.
介绍部分指定列出的功能仅适用于 CRM 2016。