Hi,
If you ever want to know where all table Id of AX tables are stored? here is the answer its SQLDICTIONARY
here is a query to know the table ID for VendTable
If you ever want to know where all table Id of AX tables are stored? here is the answer its SQLDICTIONARY
here is a query to know the table ID for VendTable
select tabId from sql where sql.sqlName=='VendTable'
&& sql.array==0;
Hope this Helps!
Prasan