1

我在 Dynamics 365 Business Central On Premise 中创建了一个自动化变量。

此代码第一次工作正常,但随后出现错误。

代码:

EVALUATE(_PC, PCStr);

CREATE(_Export, TRUE, TRUE);

_Export.process(_PC);
4

1 回答 1

1

发生这种情况是因为您从不清理您的自动化变量。你必须使用CLEAR()句子。

例子:

EVALUATE(_PC, PCStr);
CLEAR(_Export);//to clean your automation
CREATE(_Export, TRUE, TRUE);
_Export.process(_PC);
于 2020-02-20T22:20:30.170 回答