Skip to main content
Question

acumatica limit on characters in description field

  • August 6, 2026
  • 3 replies
  • 39 views

What is the limit on characters in the description field?  30? 100? 200?

 

3 replies

jinin
Pro I
Forum|alt.badge.img+12
  • Pro I
  • August 6, 2026

Hi ​@EricTaylor 

I checked the database schema. The Description (Descr) field is defined as nvarchar(256), so the maximum supported length is 256 characters.
 

 


Manikanta Dhulipudi
Captain II
Forum|alt.badge.img+16

Naveen Boga
Captain II
Forum|alt.badge.img+20
  • Captain II
  • August 6, 2026

Hi ​@EricTaylor    If you want to identify a field's type, size, and other technical details, you can follow the steps below. This will be very helpful for future customizations and development.

  1. Navigate to Customization and click the Inspect Element icon located in the top-right corner of the screen.
  2. Click on the field for which you want to view the details.
  3. The Inspect Element window will display useful information, including:
    • Control Type
    • Data Class (DAC)
    • Data Field
    • View Name
    • Business Logic
  4. Click on the Data Class hyperlink. This will open the DAC Schema Browser in a new tab.
  5. In the DAC Schema Browser, you can view all the fields in that DAC, along with their:
    • Field Name
    • Display Name
    • Data Type
    • Field Size
    • Other field properties

This is one of the easiest ways to identify field definitions and understand the underlying data structure in Acumatica, and it's a technique you'll find useful in future development and troubleshooting tasks.