axapta 2012更新操作响应中的AIF文档服务

时间:2017-07-05 11:29:17

标签: axapta aif

enter image description here是否可以让外部系统知道某些记录的更新操作是否成功。根据标准流程,axapta 2012 R3中的更新操作不会返回任何内容。

由于

1 个答案:

答案 0 :(得分:2)

您可以修改服务类中的update方法以返回值。 E.g:

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

    return this.getCorrelationEntityKeys();
}