Data table details
/Description: Show all data table names, IDs, and row counts.
for myTable in Application.Document.Data.Tables: print "Table Name: " + myTable.Name print "Table ID: " + myTable.Id.ToString() print "Row Count: " + str(myTable.RowCount)