Hello World
Version <= 6
此示例將引導使用者建立一個可以在 Dynamics AX 中執行 X ++程式碼的作業。
應用程式物件樹(AOT)中有一個名為 Jobs 的節點。可以在作業節點下新增此示例,然後可以執行該作業。
-
在 Dynamics Axe 中,開啟 AOT(應用程式物件樹)。
-
導航到 Jobs 並右鍵單擊該節點。
-
單擊“ 新建作業” ,這將導致 Ax 開啟程式碼編輯器視窗。
-
在程式碼編輯器中輸入以下文字。你可以按 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"
}