Is there native ToUpper capability in Kinetic Application Studio?

I have an open text field on a custom Kinetic layer that I need to do a comparison with. I routinely use ToUpper() whenever I do string comparisons within code, but I cannot find a way to do that in either a row-mod or condition widget. Performing Google searches, AI seems to think it’s possible, but I’ve not found the correct syntax if it is actually possible. In the expression field of a condition widget, I’ve tried several combinations with this as an example:

“{TransView.Bin}.toUpperCase()” !== “{TransView.OriginalBin}”

This is what I see in the developer console:

image

something like:

'{TransView.Bin}'.toUpperCase()

should work, don’t enclose in quotes or itll treat it as a literal string.

2 Likes

Thanks Gabriel. I haven’t been able to get it to work for the condition expression, but it did work on the row-update.

2 Likes