Can anyone think of a way to get a summary count o...
# general
d
Can anyone think of a way to get a summary count of records by custom record? NS told us we have 2.2M custom records (less than 400 unique custom record types), so I was curious to see (quickly) how many of each.
e
I would create a Suitelet that queried for all Custom Record types:
select scriptid from CustomRecordType;
And then loop through and do a "select count(*)" on each and then display results in a table.