Jan 5, 2012

Opening the table from x++ code

This code helps you to open the SalesTable from X++ code.just copy and paste this into a job you will get the table.

static void TableBrowser(Args _args)
{
SysTableBrowser sysTableBrowser = new SysTableBrowser();
;

//Browse the SalesTable table
sysTableBrowser.run(tablenum(SalesTable ));
}

No comments: