cancel
Showing results for 
Search instead for 
Did you mean: 

String filled out?

whasabi
Champ in-the-making
Champ in-the-making
Hello,

I need a condition because of an exclusive gateway
I have the string "name" and if the string is filled out - I want that the next manual task is a different one than if the string is not filled out.

what do i have to write in the "Flow Condition" field?

Thanks!
3 REPLIES 3

hari
Star Contributor
Star Contributor
Hello,
I think this should work. Please give it a try.
${myString > 0} - Your process instance variable having a value
${myString == 0} - Your process instance variable empty.

whasabi
Champ in-the-making
Champ in-the-making
If I don't fill out the string it works, but if I fill it out I get an "Error while evaluating expression: ${myString >0}"

jbarrez
Star Contributor
Star Contributor
${myString == ''} would work.