Interested in a ServiceNow event built for developers? Registration for now[dev]26 is officially open!

Data Source filter is truncated as [...] in Platform Analytics

sieusaopolo15
Giga Sage

When a data source of mine is using "is one of" filter and I put a lot of string text data inside, the text got truncated as [...]. Is there any way to get all the data inside [...] ? Please refer to the image below here

sieusaopolo15_0-1782729330022.png

 

FYI, my instance is Australia version (glide-australia-02-11-2026__patch2-hotfix2-06-18-2026)

 

2 REPLIES 2

hacktd
Mega Guru

The problem happens to me too, can't find any document related to this matter

sharonrojas
ServiceNow Employee
Hello,
 
I was able to reproduce this behavior in an Australia instance.
 
The issue appears to be related to the display limits used by the Condition Builder rather than the Data Source itself. The full filter query is still stored correctly and the visualization returns the expected results, but the UI truncates the displayed values and shows "[...]".
 
In my testing, increasing the following system properties allowed the complete list of values to be displayed:
 
- glide.ui.breadcrumb_max_entries
- glide.ui.export.choice_list_max_characters
 
For example:
 
glide.ui.breadcrumb_max_entries = 200
glide.ui.export.choice_list_max_characters = 200
 
After updating these values, the full list was displayed without the "[...]" truncation.
 
If the properties do not exist in the instance, they can be created as system properties.
 
Additional documentation:
 
Hope this helps.