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
Post a Comment