Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重新启动 DAX 后,我需要关闭某些批处理作业。我怎样才能做到这一点?
作者注:这很可能是 X++ 编程问题,不可配置。
将您的说明添加到Application.startupPost():
Application.startupPost()
if (new Session().clientKind() == ClientType::Server) { this.fuzzyTheBatchJobs(); }