4

我想在 X++ 中为 Microsoft Axapta 3.0 (Dynamics AX) 创建一个批处理作业。

如何创建一个执行像这样的 X++ 函数的作业?

static void ExternalDataRead(Args _args)
{
...
}
4

1 回答 1

8

这是在 AX 中创建批处理作业所需的最低要求:

通过创建一个扩展RunBaseBatch类的新类来创建批处理作业:

class MyBatchJob extends RunBaseBatch
{
}

实现抽象方法pack()

public container pack()
{
    return connull();
}

实现抽象方法unpack()

public boolean unpack(container packedClass)
{
    return true;
}

run()用您要执行的代码覆盖该方法:

public void run()
{
    ;
    ...
    info("MyBatchJob completed");
}

向您的类添加一个静态main方法以创建您的类的实例并调用标准RunBaseBatch对话框:

static void main(Args _args)
{
    MyBatchJob myBatchJob = new MyBatchJob();
    ;
    if(myBatchJob.prompt())
    {
        myBatchJob.run();
    }
}

如果您希望批处理作业在批处理列表中有描述,请在description您的类中添加一个静态方法:

server client static public ClassDescription description()
{
    return "My batch job";
}
于 2008-10-05T03:10:36.007 回答