哪些设置(如果有)控制逻辑应用 CRM 记录创建或更新触发器的触发?
What settings (if any) control the firing of the logic app CRM record created or updated trigger?
我有两个逻辑应用程序,在 CRM 实体上有一个 "When a record is created or update" 触发器;一个关于任务,一个关于人。
任务触发器触发正常,但人员触发器没有新记录或更新记录。
检查了每个触发器的 JSON,它们看起来不错...
"path": "/v2/datasets/@{encodeURIComponent(encodeURIComponent('xxx.crm4'))}/tables/
@{encodeURIComponent(encodeURIComponent('tasks'))}/onupdateditems"
"path": "/v2/datasets/@{encodeURIComponent(encodeURIComponent('xxx.crm4'))}/tables/
@{encodeURIComponent(encodeURIComponent('common_persons'))}/onupdateditems"
那么 Dynamics 中是否有必须启用逻辑应用程序触发器才能工作的东西?
更新: 内置实体,例如帐户和任务有效。
但是我们的任何自定义实体,例如Person 和 Supplier,似乎没有触发
我怀疑设置 Change Tracking 没有为您的自定义实体启用。验证一下。
您应该会收到类似 explained in this blog 的错误。不确定为什么没有看到该错误。
Entity: xxxx isn’t enabled for change tracking
我有两个逻辑应用程序,在 CRM 实体上有一个 "When a record is created or update" 触发器;一个关于任务,一个关于人。
任务触发器触发正常,但人员触发器没有新记录或更新记录。
检查了每个触发器的 JSON,它们看起来不错...
"path": "/v2/datasets/@{encodeURIComponent(encodeURIComponent('xxx.crm4'))}/tables/
@{encodeURIComponent(encodeURIComponent('tasks'))}/onupdateditems"
"path": "/v2/datasets/@{encodeURIComponent(encodeURIComponent('xxx.crm4'))}/tables/
@{encodeURIComponent(encodeURIComponent('common_persons'))}/onupdateditems"
那么 Dynamics 中是否有必须启用逻辑应用程序触发器才能工作的东西?
更新: 内置实体,例如帐户和任务有效。
但是我们的任何自定义实体,例如Person 和 Supplier,似乎没有触发
我怀疑设置 Change Tracking 没有为您的自定义实体启用。验证一下。
您应该会收到类似 explained in this blog 的错误。不确定为什么没有看到该错误。
Entity: xxxx isn’t enabled for change tracking