accounts, contacts in SFA

2010-06-11 Thread Pierre Smits
Hi all, After having build a set of account and contact data and having it uploaded in OFBiz I noticed a few things Sorting of accounts in the overview is based on de ID of the party and not on the name of the party. The same goes for the contact. I haven't checked the leads regarding this, but

Trund demo

2010-06-11 Thread Jacques Le Roux
I had to kill an reload the trunk demo this morning We got this error 010-06-11 08:44:28,177 (TP-Processor2) [ ControlServlet.java:230:ERROR] exception report -- Error in request handler: Exception:

Re: URL : Freemarker transforms slash / into a special caracterfrom CatalogUrlServlet.makeCatalogUrl

2010-06-11 Thread Jacques Le Roux
I'd suggest to assign to a var and to use ${StringUtil.wrapString(var)} Jacques From: eric eric...@free.fr It isn't a SEO mailing list : ok For security reason, Freemarker transforms caracter But makeCatalogUrl is an internal function Why our ecommerce sites have to build links with #47; as

Re: Trund demo

2010-06-11 Thread BJ Freeman
my gues is this error is caused by not having and error path in the web.xml and it is covering up the real error. scott and I had some discussion on this, I solved it by a global replace and added the error path to all components web.xml. now I get errors that are traceable.

Re: Trund demo

2010-06-11 Thread Jacques Le Roux
Looks like this would be a valuable contribution! Jacques From: BJ Freeman bjf...@free-man.net my gues is this error is caused by not having and error path in the web.xml and it is covering up the real error. scott and I had some discussion on this, I solved it by a global replace and added

Re: accounts, contacts in SFA

2010-06-11 Thread Jacques Le Roux
Thanks Pierre, I will try to have a look today... Jacques From: Pierre Smits pierre.sm...@gmail.com Hi Jacques, Unfortunately anonymizing my set of data to use as a test in demo is on short terms not viable. However creating contacts and leads through quick-add is an easy method to reproduce

Page refresh using two form

2010-06-11 Thread Ramkrishna Swamy
Hello, I have two screens A and B, both are calling same form, i set an alternate target for screen B and default target for screen A, when screen A calls the form using some parameter like param1, param2 etc. and then i submit the form a pdf has to come, pdf is coming but page is not being

How to customise a product category ?

2010-06-11 Thread kaliagaurav
Hi All I have created a catalog and added few products in a category which is perfectly working fine. Now I would like to know if I can customise that product from admin section so that user will be able to see that options and can select from displayed options. For example: I have created a

url to account in opportunity

2010-06-11 Thread Pierre Smits
Hi all, How do I get the opportunity to show the url to the initial account when viewing an opportunity? Regards, Pierre

Re: url to account in opportunity

2010-06-11 Thread Pierre Smits
I have this piece of code in viewSalesOpportunity in OpportunityForms.xml field name=accountPartyId position=1 title=${uiLabelMap.SfaInitialAccount} map-name=accountParty field-name=partyId display-entity description=${firstName} ${lastName} ${groupName} [${partyId}]

Re: How to customise a product category ?

2010-06-11 Thread Rishi Solanki
Gaurav, For this you need to prepare data for the 'ProductFeature', Associate the feature to the virtual and variant products in 'ProductFeatureAppl'. Note that the virtual product productFeatureApplTypeId is SELECTABLE_FEATURE and variants have the STANDARD_FEATURE. For reference please refer the

Re: How to customise a product category ?

2010-06-11 Thread eric
You can build variants by adding selectable features And create different prices for each variant Eric On Fri, 2010-06-11 at 02:16 -0700, kaliagaurav wrote: Hi All I have created a catalog and added few products in a category which is perfectly working fine. Now I would like to know if

Re: How to customise a product category ?

2010-06-11 Thread Atul Vani
hi Gaurav, you can do all that from catalog manager http://localhost:8080/catalog ecommerce application has demo products too with features associated with them. that would be a good reference. -- Thanks Regards Atul Vani Enterprise Software Developer HotWax Media Pvt. Ltd.

EntityEngine field types

2010-06-11 Thread Deyan Tsvetanov
Hi guys, I am trying to find some description of the field types in entity engine. Currently it supports the following: date date-time time id-ne name id long-varchar comment description very-short id-long-ne id-long id-vlong id-vlong-ne very-long short-varchar value url

Re: EntityEngine field types

2010-06-11 Thread Erwan de FERRIERES
Le 11/06/2010 11:45, Deyan Tsvetanov a écrit : but there is no such info on that page. Cheers, Deyan Hi Deyan, take a look in framework/entity/fieldtype, and the file related to the DB you want to use. Cheers, -- Erwan de FERRIERES www.nereide.biz

Re: EntityEngine field types

2010-06-11 Thread Chirag Manocha
fieldtypederby.xml, fieldtypepostgres.xml will help you. Regards -- Chirag Manocha Emforium Pvt. Ltd. Contact :- +91-98735-47457, +91-98263-19099 Please don't print this Email unless you really need to - this will preserve trees on planet earth. - Original Message - From: Deyan

Re: EntityEngine field types

2010-06-11 Thread Deyan Tsvetanov
Right, 10x :) Another quick one: field-type-def type=id-ne sql-type=VARCHAR(20) java-type=Stringvalidate method=isNotEmpty//field-type-def Is there any chance that entity engine creates a not null column in the database so that isNotEmpty validation is performed there ? Or it is not

Re: How to customise a product category ?

2010-06-11 Thread kaliagaurav
Hi All Thanks everyone for the reply. Please can I get a documentation link if possible. I am doing this for first time. As per the suggestions given by all of you I got a good view and I also tried the same with my own products and it worked perfectly. But I want to make sure that I am not

Re: EntityEngine field types

2010-06-11 Thread Jacques Le Roux
That should be the purpose of id-ne (ne for non empty) but while here for documentation and enforced by the entity data maintenance pages and webtools, are not currently enforced by the entity engine. But they are part of the convention that we use in the data model to denote ID fields that

Re: Form widget validation

2010-06-11 Thread Ravindra Mandre
Hi Jacques, I tried the same trick that you added in FAQ but , we also have to add some more elements here like : for making validation for firstName which takes only letters field name=firstName title=${uiLabelMap.PartyFirstName} tooltip=${uiLabelMap.CommonRequired} widget-style=required

ofbiz and JMS

2010-06-11 Thread Muhammad Aamir
Hi, I need to develop a standalone Java client accessing ofbiz services and same time want to utilize JMS in order to receive messages asynchronously. Since ofbiz doesn't provide asynchronous messaging out of the box, I am thinking to use any JMS server. However, I don't want my user to confuse

save a file to the images drive

2010-06-11 Thread Patrick
I am passing in a .jpg file to a service. attribute name=filename type=java.nio.HeapByteBuffer mode=IN optional=false/ Now I guess I need to save it to the drive in my images directory. How can I do this? Thanks Patrick

Re: save a file to the images drive

2010-06-11 Thread BJ Freeman
take a look at the code to upload a image and save it in the product content, in the catalog. = BJ Freeman http://bjfreeman.elance.com Strategic Power Office with Supplier Automation http://www.businessesnetwork.com/automation/viewforum.php?f=52 Specialtymarket.com

displaying USA state from QuickCheckout and Creating an account

2010-06-11 Thread HyunWoo Jo
hello, what is the best way to just display USA state only in Quickcheck out and creating an account page? when i create a new user or test Anonymous Quick checkout, state/prov shows more than US' states. shouldn't it show only US states when US was selected as country? thank you in

Re: ofbiz and JMS

2010-06-11 Thread Scott Gray
OFBiz services can be accessed via JMS, have you looked at the JmsServiceEngine class at all? Regards Scott On 12/06/2010, at 4:53 AM, Muhammad Aamir wrote: Hi, I need to develop a standalone Java client accessing ofbiz services and same time want to utilize JMS in order to receive

Re: ofbiz and JMS

2010-06-11 Thread Muhammed Aamir
I am sorry I didn't explain my point well. I want my client application to access jms but couldn't figure out how to avoid authentication twice, one with ofbiz and another with jms server. I wish jms (or at least asynchronous calling (and response)) from client was possible with ofbiz.

Re: ofbiz and JMS

2010-06-11 Thread Scott Gray
You'll have to try and be clearer still, if you want to send JMS messages direct to OFBiz from your client then yes it is possible. Regards Scott HotWax Media http://www.hotwaxmedia.com On 12/06/2010, at 4:07 PM, Muhammed Aamir wrote: I am sorry I didn't explain my point well. I want my

Re: Is there a possible memory issue causing objects to stay in old generation for long ofbiz and javolution

2010-06-11 Thread sharad bhushan
to keep this updated The Issue was cache - SoftReference. http://bugs.sun.com/bugdatabase/view_bug.do;jsessionid=cfd518f51afc7780e5188276b5f9?bug_id=6912889 The monitoring ran for month now and the application is stable. we changed the SoftRefLRUPolicyMSPerMB. Sharad