this is more a question.
notice that the EntityFindOptions call has two options hard set, like the use distinct set to false, instead of passing the parm.

wouldn't it override higher level calls.

      // Retrieve entities  - an iterator over all the values
        EntityListIterator listIt = null;
        try {
if (noConditionFind || (entityConditionList != null && entityConditionList.getConditionListSize() > 0)) { listIt = delegator.findListIteratorByCondition(entityName, entityConditionList, null, null, orderByList, new EntityFindOptions(true, EntityFindOptions.TYPE_SCROLL_INSENSITIVE, EntityFindOptions.CONCUR_READ_ONLY, false));
            }
        } catch (GenericEntityException e) {
return ServiceUtil.returnError("Error running Find on the [" + entityName + "] entity: " + e.getMessage());
        }

Reply via email to