Here is the X++ code to find the complete list of tables in Ax 2012 and D365FO
public void getTableList()
{
SysDictTable sysDictTable;
Dictionary dict = new Dictionary();
DictTable dictTable;
for (int i=1; i<=dict.tableCnt(); i++)
{
sysDictTable=new SysDictTable(dict.tableCnt2Id(i));
}
}
No comments:
Post a Comment