I have two variables in my pre block, and I need a third (logical) one that identifies whether certain properties of these two are stored:
str = "some string from a datasource"; qty = 15;
The third valid variable must be true if str not empty and qty greater than 0. How to do this?
source share