Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
michael_klix
Creator II
Creator II

GetFieldSelections limitations

Hi,

I am using GetFieldSelections(MyFieldName, ',' , 25000) to export a list of selected values in a field. The list can be quite long, so I use the three parameter variant to set a very high maximum.

However, when using this in a JavaScript to export via a post,  it seems the exported string does not contain all values. In my case out of 9000 values, each an 8 digit number, the string contains only about 3000 of them.

Is there some other limitation??

 

Thanks for your replies !

Labels (1)
2 Replies
michael_klix
Creator II
Creator II
Author

PS:

When using a Substringcount on the getfieldselection, I manage to count the correct number of values. As well inserted in a variable, the getfieldselections result can be obtained and exported correctly. It seems the transfer into javascript is the problem. Internally , it looks fine without limitation.

marcus_sommer

Maybe it's something like the following:

https://stackoverflow.com/questions/5926263/javascript-object-max-size-limit 

- Marcus