Re: Cancel shipment

2007-08-07 Thread Jacopo Cappellato
Iain, in my opinion, adding the ability to cancel an item issuance (for a non packed shipment) would be useful and not too difficult to implement; the only thing to consider (maybe) is that if, when the item issuance is created, an accounting transaction is sent to the general ledger (e.g. by

Re: Display a resultset in an .ftl file

2007-08-07 Thread Richard Fleming
Thanks David- I'll try the EntityWhereString first... I hope it works. I'd like to begin to fill the CMS system with textual data from service calls, blogs etc. Full text searches are going to be must for me. Rick David E Jones <[EMAIL PROTECTED]> wrote: Have you tried the performance of the

Re: Conditions in table joiners

2007-08-07 Thread Rodrigo Souza
One sample: List conditions = new ArrayList(); try { // List home destque promo conditions.add(new EntityExpr("viceId", EntityOperator.EQUALS, "LEADER")); // Others... EntityConditionList ecl = new EntityConditionList(conditions, EntityOperator.AND); List results = delegator.fi

Re: Display a resultset in an .ftl file

2007-08-07 Thread Richard Fleming
Jonathon, I'd be willing to try it. Thanks, if it can be added to the core, it'll be worth the effort. Rick Jonathon -- Improov <[EMAIL PROTECTED]> wrote: Rick, Doesn't sound too hard to put @@ into EntityOperator. Would you like to try it? I can at most help by pointing out all the lines of

Re: Conditions in table joiners

2007-08-07 Thread Rodrigo Souza
Or... conditions.add(new EntityExpr("memberId", EntityOperator.IN, UtilMisc.toList ("LEADER","MEMBER","VICE"))); For all. 2007/8/7, Rodrigo Souza <[EMAIL PROTECTED]>: > > One sample: > > > List conditions = new ArrayList(); > try { > // List home destque promo > conditions.add(new Entity

Re: ms sql server 2005 shoppinglist problem

2007-08-07 Thread Amine AZZI
it's because of the field runtimeInfo in the table RUNTIME_DATA that hasn't the suitable size, it should be changed to type text or ntext. Amine. 2007/8/7, William Perng <[EMAIL PROTECTED]>: > > My ofbiz instance uses ms sql server 2005. The schedule service doesn't > generate orders from my aut

Re: Google Webtoolkit and OFBiz?

2007-08-07 Thread Nicolas Mayeur
Hi all, I am new to ofbiz, and also very much interested in an implementation of GWT in Ofbiz. I know some of you have worked on the subject. Is some work going on ? Is it possible to contribute, and see what is done? Thanks, Nicolas Mayeur Brett Palmer wrote: > > John, > > I haven't done

RE: ms sql server 2005 shoppinglist problem

2007-08-07 Thread William Perng
The type of that column is text now. Thanks -Original Message- From: Amine AZZI [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 07, 2007 11:10 AM To: user@ofbiz.apache.org; [EMAIL PROTECTED] Subject: Re: ms sql server 2005 shoppinglist problem it's because of the field runtimeInfo in th

RE: ms sql server 2005 shoppinglist problem

2007-08-07 Thread William Perng
I double check my RUNTIME_DATA column in runtimeInfo table. It has been set to type "text", and it still doesn't work. Please help, thanks. -Original Message- From: William Perng [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 07, 2007 11:39 AM To: user@ofbiz.apache.org Subject: RE: ms

Re: Conditions in table joiners

2007-08-07 Thread Jonathon -- Improov
Rodrigo, Thanks, but I think I'm completely confused by your sample. Sorry. The column alias (not field) "viceId" contains a value in Member.memberId (eg "1234", "5534", etc), and NOT "LEADER" or "VICE" or "MEMBER". "LEADER" or "VICE" or "MEMBER" appears in field Member.roleId. Jonathon Rod

Re: Conditions in table joiners

2007-08-07 Thread Jonathon -- Improov
Rodrigo, Let me repeat the query I want to do: "find a Group where a/the leader's name is like Blah, a/the vice's name is like Bleh, and a/the member's name is like Bluh". Your sample doesn't work. Even if you had used the correct field "roleId", it still wouldn't have worked. David (Jones)

Re: Conditions in table joiners

2007-08-07 Thread Rodrigo Souza
Sorry, Again... List conditions = new ArrayList(); try { // viceId as alias conditions.add(new EntityExpr("viceId", EntityOperator.EQUALS, yourMemberId )); // Others... EntityConditionList ecl = new EntityConditionList(conditions, EntityOperator.AND); List results = delegator

Forum (or Content Management) Entities

2007-08-07 Thread Adrian Crum
I'm trying to extract the forum feature from the eCommerce component so that I can use it as a component in our back-office collaboration suite. Everything is moving along well so far. I would like to make some enhancements to it, but the entity schema for content management is a bit overwhelmi

Re: Forum (or Content Management) Entities

2007-08-07 Thread Al Byers
Adrian, Building the forum/blog functionality out would be a great thing for OFBiz. Up until now, I think it was lacking someone who had a definite need. I am really busy, but I have a strong desire to see this move forward, so I will do what I can when I can. Andrew Zeneski has done a bunch wit

Re: ms sql server 2005 shoppinglist problem

2007-08-07 Thread Amine AZZI
Try put it ntext, this is the type I used (I didn't try text) Did you reset ofbiz? if it doesn't still work, try to see the log, or run the service directly from the webtools module through the service reference menu (you select the service, and then click on schedule) 2007/8/7, William Perng <[

Re: Forum (or Content Management) Entities

2007-08-07 Thread David E Jones
The best and most brief source of information on this is probably the Content demo data, most of which is in the applications/ecommerce/data directory. You can also review key services you see used in different places and see which entities they use and how. -David Adrian Crum wrote: I'm tr

Re: Forum (or Content Management) Entities

2007-08-07 Thread Adrian Crum
Al, That would be great! I just need a few hints as to how the entities are laid out and how they relate to each other. I know I can find some of that in the xml files, but those don't tell me the intended use. In other words, I want to be sure I'm using things the right way. -Adrian Al Byer

Re: Forum (or Content Management) Entities

2007-08-07 Thread Adrian Crum
David, Thank you for the info! I've been looking at the services, entities, demo data and such, but much of it is intermingled with other content management features - forums being one of many. That's why I feel overwhelmed. I guess I'll keep reverse engineering the forum stuff and try to pic

Re: Forum (or Content Management) Entities

2007-08-07 Thread Adrian Crum
Hey David - if the forum feature was extracted in the project, where would it go? -Adrian David E Jones wrote: The best and most brief source of information on this is probably the Content demo data, most of which is in the applications/ecommerce/data directory. You can also review key s

Re: Forum (or Content Management) Entities

2007-08-07 Thread Adrian Crum
Okay, now I see there are two copies of Forums - one in the content component and one in the eCommerce component. Does anyone know why there are two copies and which one is the most current? -Adrian Adrian Crum wrote: Hey David - if the forum feature was extracted in the project, where would

Re: Conditions in table joiners

2007-08-07 Thread Jonathon -- Improov
Hmm. Alright, answering my own questions again, in case anybody/I looks at the mailing list archives in future. Without conditionals (like "fieldA = 'SOME LITERAL') in table joiners, I have to fall back on a huge cross-product. While a huge and indiscriminately-built cross-product does work

Re: Forum (or Content Management) Entities

2007-08-07 Thread G.Venkata Phanindra
Hi, Of my knowledge the first one in the ecommerce component was an old one and there are quite a few issues to be fixed in it . The component in the content part is the most latest one and it will work fine. As far as the list of entities i remember are . Content,ContentAssoc,Party,ElectronicText

Opening ofbiz in eclipse

2007-08-07 Thread [EMAIL PROTECTED]
hi, I have downloaded ofbiz using svn plugin for Eclipse. Now i want to know how i can open the project in Eclipse to browse, edit, build and deploy. Regards, Aman Tur

ClassNotFoundException

2007-08-07 Thread kurtis shipp
while trying to deploy an application and running it,I got the following from console.log; 2007-08-08 05:57:38,875 (main) [StandardContext.java:3714:ERROR] Error configuring application listener of class org.ofbiz.securityext.login.LoginEventListener java.lang.ClassNotFoundExceptio

Re: Opening ofbiz in eclipse

2007-08-07 Thread Torsten Schlabach
Hi Aman, maybe this is of some help: http://docs.ofbiz.org/display/OFBIZ/Running+and+Debugging+OFBiz+in+Eclipse Regards, Torsten [EMAIL PROTECTED] schrieb: hi, I have downloaded ofbiz using svn plugin for Eclipse. Now i want to know how i can open the project in Eclipse to browse, edit, bui