无法取消任务

Unable to cancel task

问题:在统一接口上取消任务时超时

工具Dynamics 365 CRM,版本 1612 (9.0.2.192) (DB 9.0.2.192) 在线

问题:我们在预约表上有一个字段,其值为 trueFalse.保存时我们检查值是否为真,然后打开一个新任务 window 并设置一个查找(我们创建了这个查找),如下所示,

var entityFormOptions = {};
entityFormOptions["entityName"] = "task";


formParameters["cmd_associatedmeeting"] = formContext.data.entity.getId().replace('{', '').replace('}', '');

formParameters["subject"] = "Created From " + getEntityType(ExecutionContext) + ": " + formContext.getAttribute(formElements_meeting.subject).getValue();
// Open the form.
Xrm.Navigation.openForm(entityFormOptions, formParameters).then(

function (success) {
if (window.console && console.error) console.log(success);
},

function (error) {
if (window.console && console.error) console.log(error);
});

我们保存任务记录,同步工作流将创建连接记录(我们使用连接实体将此记录与约会相关联)。连接记录包含

连接到:约会

连接来自:任务

我们点击关闭任务作为取消,我们在移动设备上遇到问题(它在浏览器中运行良好)。我们正在使用基于 UCI 的应用程序在移动设备中使用 CRM。

错误:

Operation timed out. 
Key = [subject,cmd_iscloned,statuscode,description,regardingobjectid,cmd_associatedevent,cmd_associatedmeeting,statecode,ownerid,modifiedby,param_actGuid,statecode]; 
ContextString = Key: a7edbe81-875d-e811-a959-000d3a1c5096; 
ColumnSet: [subject,cmd_iscloned,statuscode,description,regardingobjectid,cmd_associatedevent,cmd_associatedmeeting,statecode,ownerid,modifiedby,param_actGuid,statecode]; RetrievalStrategy: remote

正在完成但未取消。

编辑:如果我取消约会记录,我将能够取消任务。

需要帮助!

我们使用表单参数来设置任务查找,我们删除了表单参数并以另一种方式进行。它奏效了。问题不再存在!