Just to be sure: You want to Iterate over the list or you are having a
problem with the clauses?
For the former: You can either get the iterator from the List Object:
Iterator it= listIt.iterator();
while(it.hasNext()) {
GenericValue obj = it.next();
// Your code here
}
or you can iterate like this:
for(GenericValue obj : listIt){
// Your code here...
}
--
View this message in context:
http://ofbiz.135035.n4.nabble.com/List-GenericValue-to-EntityListIterator-tp4648975p4649710.html
Sent from the OFBiz - User mailing list archive at Nabble.com.