Overall how many standard fields are there in Acumatica ? Is there a way in the system I could see the number of standard fields for a specific module ?
Solved
I understand ther are currently 200 plus screens in Acumatica . How many standard fields are there in Acumatica ?
Best answer by Naveen Boga
Unfortunately, we don’t have a place to see the count of fields but you can Inspect Element and click on the DAC, so that you can see the fields in that particular DAC.
SELECT
TABLE_NAME,
COUNT(*) AS FieldCount
FROM
INFORMATION_SCHEMA.COLUMNS
GROUP BY
TABLE_NAME
ORDER BY
FieldCount DESC;

Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.