0

在此处输入图像描述有没有办法让外部系统知道某些记录的更新操作是否成功。根据标准流程,axapta 2012 R3 中的更新操作不会返回任何内容。

谢谢

4

1 回答 1

2

您可以修改update服务类中的方法以返回值。例如:

[AifDocumentUpdateAttribute, SysEntryPointAttribute(true)]
public AifEntityKeyList update(AifEntityKeyList _entityKeyList, CustCustomer _custCustomer)
{
    this.updateList(_entityKeyList, _custCustomer);

    return this.getCorrelationEntityKeys();
}
于 2017-07-05T11:54:35.770 回答