How DMN evaluate process variables?

Hi,

I’m totally rookie with the DMN.

I want to make on DMN something like this:

int a; //process variable
int b; //process variable
boolean c; //output

if (a=b){
c=true;
else{
c=false;
}

But i don’t know the values of a o b

It’s possible?

Hi @Ignacio_Requena_Elvi,

Yes, it is possible. You could use a literal expression, like a = b.

But why do you need DMN for this?

Best regards,
Philipp

1 Like

I’m making some POCs about the capabilities of the DMN.

I’m interesting in the simpliest way to make a decision in a exclusive gateway and one of my ideas has been to create a few variables that change according to a input variables reducing from for example 10 variables to evaluate to 2 or 3.