dynamics ax 2009 - How can I get list of tables in a table collection? -


i need work virtual companies. i'm struggling table collections. there way list of tables in table collection?

you can names of tables in table collection using sysdicttablecollection :

    sysdicttablecollection  tablecollection;     tablename               tablename;     ;      //replace batch table collection name     tablecollection = new sysdicttablecollection("batch");      tablename       = tablecollection.nexttable();      while (tablename)     {         info(tablename);         tablename = tablecollection.nexttable();     } 

Comments

Popular posts from this blog

.htaccess - First slash is removed after domain when entering a webpage in the browser -

Automatically create pages in phpfox -

c# - Farseer ContactListener is not working -