Hello World

Version <= 6

此示例将引导用户创建一个可以在 Dynamics AX 中运行 X ++代码的作业。

应用程序对象树(AOT)中有一个名为 Jobs 的节点。可以在作业节点下添加此示例,然后可以运行该作业。

  1. 在 Dynamics Axe 中,打开 AOT(应用程序对象树)。

  2. 导航到 Jobs 并右键单击该节点。

  3. 单击“ 新建作业” ,这将导致 Ax 打开代码编辑器窗口。

  4. 在代码编辑器中输入以下文本。你可以按 F5 运行代码。

static void Job1(Args _args)  // Job1 will be the name of the job in the AOT
{
        
    ;  // This semicolon is necessary to mark the end of variable declarations in versions AX 2009 and lower.  If you are interested in the details see https://stackoverflow.com/questions/1976080/is-semicolon-really-needed-after-declarations-in-x
    
    info('Hello world.');   // Shows the text "Hello world" in a dialog called "infolog"

}