我们在本地网络上安装了CRM on-premise。我想更改salesorder
( Order
实体)的state
和statusreason
。我看到了这个link。
我以这种方式调用函数(将status改为Canceled
,将statusreason改为No Money
:
var recordGuid = Xrm.Page.data.entity.getId();
setRecordStatus ("salesorder", recordGuid ,"3", "100001");
但是它给了我400错误的请求错误!有人能在这方面帮我吗?
https://stackoverflow.com/questions/51337448
复制相似问题