Discussion:
findList method in Groovy..
swathi
2009-10-30 14:56:25 UTC
Permalink
Hi

Can someone please explain me what are the parameters that
delegator.findList() takes.
Refering to the Practice application,
context.persons = delegator.findList("Person", null, null, null, null,
false);
I tried to search for it but could not find it.

Thankyou.
--
View this message in context: http://n4.nabble.com/findList-method-in-Groovy-tp278232p278232.html
Sent from the OFBiz - User mailing list archive at Nabble.com.
Adrian Crum
2009-10-30 15:06:14 UTC
Permalink
http://api.ofbiz.org/org/ofbiz/entity/Delegator.html

-Adrian
Post by swathi
Hi
Can someone please explain me what are the parameters that
delegator.findList() takes.
Refering to the Practice application,
context.persons = delegator.findList("Person", null, null, null, null,
false);
I tried to search for it but could not find it.
Thankyou.
swathi
2009-10-30 17:39:42 UTC
Permalink
Thankyou.
Post by Adrian Crum
http://api.ofbiz.org/org/ofbiz/entity/Delegator.html
-Adrian
Post by swathi
Hi
Can someone please explain me what are the parameters that
delegator.findList() takes.
Refering to the Practice application,
context.persons = delegator.findList("Person", null, null, null, null,
false);
I tried to search for it but could not find it.
Thankyou.
--
View this message in context: http://n4.nabble.com/findList-method-in-Groovy-tp278232p278260.html
Sent from the OFBiz - User mailing list archive at Nabble.com.
J***@styleline.com
2014-09-05 19:16:51 UTC
Permalink
FYI that is a dead link now?

I did find
http://ci.apache.org/projects/ofbiz/site/javadocs/org/ofbiz/entity/Delegator.html#findByAnd(java.lang.String,
java.util.Map, java.util.List, boolean)

and do a find findlist for field defs.

findList(java.lang.String entityName, EntityCondition entityCondition,
java.util.Set<java.lang.String> fieldsToSelect,
java.util.List<java.lang.String> orderBy, EntityFindOptions findOptions,
boolean useCache)



-----
Joel Fradkin
--
View this message in context: http://ofbiz.135035.n4.nabble.com/findList-method-in-Groovy-tp278232p4654892.html
Sent from the OFBiz - User mailing list archive at Nabble.com.
Jacques Le Roux
2014-09-07 20:25:50 UTC
Permalink
Do you know that you are sometimes cryptic :D ?

I can find the string findList(java.lang.String entityName, EntityCondition entityCondition, java.util.Set<java.lang.String> fieldsToSelect,
java.util.List<java.lang.String> orderBy, EntityFindOptions findOptions, boolean useCache)
at
http://ci.apache.org/projects/ofbiz/site/javadocs/org/ofbiz/entity/Delegator.html#findByAnd%28java.lang.String,java.util.Map,%20java.util.List,%20boolean%29

And found 359 occurences of "findList" in *.gro* files in OFBiz trunk HEAD

What is your question?

Jacques
Post by J***@styleline.com
FYI that is a dead link now?
I did find
http://ci.apache.org/projects/ofbiz/site/javadocs/org/ofbiz/entity/Delegator.html#findByAnd(java.lang.String,
java.util.Map, java.util.List, boolean)
and do a find findlist for field defs.
findList(java.lang.String entityName, EntityCondition entityCondition,
java.util.Set<java.lang.String> fieldsToSelect,
java.util.List<java.lang.String> orderBy, EntityFindOptions findOptions,
boolean useCache)
-----
Joel Fradkin
--
View this message in context: http://ofbiz.135035.n4.nabble.com/findList-method-in-Groovy-tp278232p4654892.html
Sent from the OFBiz - User mailing list archive at Nabble.com.
J***@styleline.com
2014-09-08 12:55:11 UTC
Permalink
Sorry if I was.
I had been searching for the params for findlist myself and found this on
list.
The link that helped the original guy who asked was no longer active.
I did find the apache reference that helped me, so I thought I would post it
in case anyone else searched the list and found the dead link.
Was just trying to help sorry.



-----
Joel Fradkin
--
View this message in context: http://ofbiz.135035.n4.nabble.com/findList-method-in-Groovy-tp278232p4654966.html
Sent from the OFBiz - User mailing list archive at Nabble.com.
Jacques Le Roux
2014-09-08 13:52:50 UTC
Permalink
Great, I just did not understand you :)

Jacques
Post by J***@styleline.com
Sorry if I was.
I had been searching for the params for findlist myself and found this on
list.
The link that helped the original guy who asked was no longer active.
I did find the apache reference that helped me, so I thought I would post it
in case anyone else searched the list and found the dead link.
Was just trying to help sorry.
-----
Joel Fradkin
--
View this message in context: http://ofbiz.135035.n4.nabble.com/findList-method-in-Groovy-tp278232p4654966.html
Sent from the OFBiz - User mailing list archive at Nabble.com.
Loading...