Hello, just a simple question :
What is the difference between Pick by Evaluate and conditions, in terms of picking, system handling picking and performance ?
Between something like this (in one event block) :
- Object.var1=?
- Object.var2=?
- Object.var3=?
- Object.var4=?
And this :
- Pick Object by evaluating (Object.var=?, Object.var2=?, Object.var3=?, Object.var4=?)
Does the first iterates through all objects, check them for first condition, narrow the SOL to selected ones, start again and do the same for every conditions ? So it's multiple SOL and one condition check by object ?
Does the second loop through all objects and check for every conditions and the return a final SOL ? So it's one SOL and multiple checks on every objects ?
Second would be better in terms of performance ?