Dynamics Search Engine

Thursday, May 15, 2008

How to browse tables in Dynamics Ax by using X++

This article explains:
How to browse a table runtime in Microsoft Dynamics Ax
How to rbowse a table using x++ language in Microsoft Dynamics Ax
How to browse a table programatically in Microsoft Dynamics Ax
How to open a Microsoft Dynamics Ax table by using X++ codes

Note: You should be familiar with Dynamics Ax basic programming.

Open your Ax application then AOT.
Go to Jobs node and crate a new job.
Copy and paste the code below. Here I renamed the job to BrowseTable.

I applied it on Ax 3.0

static void BrowseTable(Args _args)
{
SysTableBrowser systabB;

;
systabB = new SysTableBrowser();
systabB.run(tablenum(inventtable));
}

No comments:

Post a Comment