使用自动化变量 Dynamics 365 Business Central 时出错

Error to consume automation variable Dynamics 365 Business Central

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

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

代码:

EVALUATE(_PC, PCStr);

CREATE(_Export, TRUE, TRUE);

_Export.process(_PC);

发生这种情况是因为您从未清理您的自动化变量。你得用CLEAR()句。

示例:

EVALUATE(_PC, PCStr);
CLEAR(_Export);//to clean your automation
CREATE(_Export, TRUE, TRUE);
_Export.process(_PC);