Flow variable value is null

Not applicable

Hy volks,

I have some problem with these code:

// this works fine
context.setVariable("a.b.c", "x");
print(context.getVariable("a.b.c")); // >> X


// this is not working. the con
context.setVariable("a.b.c.d", "y");
print(context.getVariable("a.b.c.d")); // >> null

Do have anybody any ide why is worng the code above?

Thanks! 🙂

0 1 264
1 REPLY 1

I dunno.

Try separating your substrings with underscore.

a_b_c

a_b_c_d