jeudi 19 janvier 2012

Open table from axapta x++

today, I want to share you a simple way to open a table from x++.
static void DASTableBrowser(Args _args)
 {
    SysTableBrowser sysTableBrowser = new SysTableBrowser();
   ;
    //Browse the CustTable table
    sysTableBrowser.run(tablenum(CustTable));
 }

Aucun commentaire:

Enregistrer un commentaire