how to add constraints to limit and define valid input for the string data type in your DMN

46 views Asked by At

enter image description here

I wrote it like this, hoping it can't be null or "", but it doesn't work properly.

If I write !=NULL then it is right. If I write !=NULL and !="", it is incorrect and very strange.

1

There are 1 answers

2
tarilabs On

You have to use Unary Test syntax.

not(null) and not("")