DataType of type Text in SQL showing error in interface load

Certified Senior Developer

Hi Appian Devs,
I have long length dropdowns in the interface below


The datatype in the backend for these dropdowns is of type text.
But, as there are long length string values, in the evaluation of these cascaded dropdowns, 
I am getting the error below:



Please let me know what is the probable reason of this error on the interface.


Thanks in advance

  Discussion posts and replies are publicly visible

Parents Reply
  • Ha I think it's probably failing because the text is too large. It looks to me like you're doing a single query up front that's getting all the data and then splitting / filtering it in your expression. Could you refactor it instead to do the queries for each cascading level separately? Then you wouldn't need to query all of the data up front and it likely wouldn't trigger the circuit breaker.

Children