Power BI to call CRM process(Power BI 调用 CRM 流程)
问题描述
我有一个 Power BI 报表,用于查看 SQL Server 中的一些数据.用户可以进行选择,数据将显示在报告的表格中.当用户在 Power BI 中进行选择并单击按钮时,我希望它在 CRM 中创建数据验证活动.
I have a Power BI report that is used to view some data from SQL Server. The user can make selections and the data is displayed on a table in the report. When the user makes a selection and clicks a button in Power BI, I want it to create data validation activities in CRM.
有什么方法可以发送数据并调用 CRM 流程来创建数据验证活动?
Is there any way I can send the data and call a CRM process to create data validation activities?
推荐答案
PowerBI 是用于数据可视化的,不是用于应用程序开发的,但可以在一定程度上进行扩展.PowerBI 可以有一个按钮,它有一些 默认操作 按钮点击这对于您的场景来说是不够的.
PowerBI is meant for data visualization, not for application development, but can be extended for some extent. PowerBI can have a button, it has some default actions for the button click which is not enough for your scenario.
可能是一些超链接来触发每一行的 MS Flow 或调用 REST Web api 端点 url 来实现你想要的.
Probably some hyperlink to trigger the MS Flow on each row or call the REST web api endpoint url to achieve what you want.
您只需创建一个 Canvas PowerApp 即可在其中执行应用程序逻辑和将其嵌入 Power BI.
Simply you can create a Canvas PowerApp where you can do application logics & embed it in Power BI.
如果你认为在 Canvas 应用中嵌入 Power BI 报表有意义,那也是可能的.
If you think embedding your Power BI report in Canvas app will make sense, that is also possible.
这篇关于Power BI 调用 CRM 流程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Power BI 调用 CRM 流程
基础教程推荐
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- 无法解决整理冲突 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- 是否可以执行按位分组功能? 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 在 SQL 中连接多个表 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
