Got a workaround through groovy
<i><set field="attrEntity" value="Party"/>
<set field="attrName" value="partyId"/>
<set field="attrVal" value="10000"/>
<set field="entityAttributeMap{}" type="Map"/>
<set field="entityAttributeMap.${attrName}" from-field="attrVal"/>
<script location="component://location/getTheList.groovy"/></i>
Groovy File - getTheList.groovy
<i>import org.ofbiz.entity.*;
context.newValList = delegator.findByAnd(context.attrEntity,context.entityAttributeMap);</i>
And the result is stored in "newValList"
-------------------------------------------------
'There are two choices in life-Take it or leave it !'
-------------------------------------------------