Hi Eshwar,
Could you confirm if you are using the Java client library? If yes, you may
try using something like the code below :
Predicate idsPredicate = new Predicate();
idsPredicate.setField("Id");
idsPredicate.setOperator(PredicateOperator.IN);
idsPredicate.setValues(seIds);
Predicate idsPred
Hi,
I want to know hoe can i add Two predicate fields in selector. Below is
the code how i tried but only one is getting set to selector.
Predicate idsPredicate = new Predicate("Id",
PredicateOperator.IN, seIds);
Predicate idsPredicate1 = new Predicate("Status",
Predi