06-28-2023 11:35 AM
Is there a max character length or mac values in a list for internal session variables? We have a large list we are trying to put into a variable and some values are not getting captured despite satisfying all conditions. I am thinking it may be a character limit issue or a max value issue. The result returns exactly 1000 values @ ~13k characters.
07-05-2023 11:51 AM
Session variables has a limitation of 1000 values.
To overcome this limit, you can add values in multiple session variables.
For example 1st 1000 values in session_var_1 and rest of the values in session_var_2 (assuming you have less than 2000 values).