0

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

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

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

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);
});

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

连接到:约会

连接自:任务

我们单击 Close Task as Canceled 并在移动设备上遇到问题(它在浏览器中运行良好)。我们正在使用基于 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

它正在完成但没有取消。

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

需要帮助!

4

1 回答 1

0

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

于 2018-05-25T09:21:02.357 回答