Re: Preventing from auto generate ID

2008-10-21 Thread awdesh parihar
Hi vinayak you can get id value from parameters ,I think id value will be available in parameters . -- -- Awdesh Parihar

Re: Preventing from auto generate ID

2008-10-21 Thread BJ Freeman
if you follow the createperson screen thru the contoller to the service you will have a good idea about how to do this. the only thing you need todo in your createstudent service is add the input for partyID. Vinayak Yadav sent the following on 10/21/2008 10:56 PM: > I am a developing a portal web

Re: Complex queries

2008-10-21 Thread Angelo Matarazzo
Thank you David E Jones wrote: > > > This has been supported in OFBiz for quite a while. Check out the > EntityConditionSubSelect class in the Entity Engine. > > -David > > > On Oct 21, 2008, at 1:04 PM, Angelo Matarazzo wrote: > >> >> Hi, >> I try writing complex queries and I was wonder

Re: Preventing from auto generate ID

2008-10-21 Thread BJ Freeman
it would be best if you went thru http://docs.ofbiz.org/display/OFBIZ/OFBiz+Beginner%27s+Development+Guide+Using+Practice+Application it will not answer directly what you want to know but would make it easier to communicate. you can create a simple service or a java service that create student. it

Re: Preventing from auto generate ID

2008-10-21 Thread Vinayak Yadav
I am a developing a portal web site but before that i want to prepare for ofbiz framework so that i have created a student screen instead of generating ID i want enter it on screen and how to access ID entered in text box on screen in coding Thanks On Wed, Oct 22, 2008 at 11:22 AM, awdesh parihar

Re: Preventing from auto generate ID

2008-10-21 Thread awdesh parihar
Hi Vinayak Please give some detail of your application you want to develop ,it will help us to understand your problem. -- -- Awdesh Parihar

Re: Preventing from auto generate ID

2008-10-21 Thread Vinayak Yadav
How to check the value of the ID field before storing the information. Thanks On Wed, Oct 22, 2008 at 2:33 AM, BJ Freeman <[EMAIL PROTECTED]> wrote: > you would use > delegator.getNextSeqId("yourIDname"); > to auto create. > other wise you need to check the value of the ID field before you

Re: Preventing from auto generate ID

2008-10-21 Thread Vinayak Yadav
Dear user, how to access the id which is entered in the text box on screen? i want to store that id (not hard coded in code). thanks for reply. vinayak On Wed, Oct 22, 2008 at 10:55 AM, Sumit Pandit <[EMAIL PROTECTED]> wrote: > Try it : > > Instead > > String helloPersonId = delegator.getNextS

Re: Preventing from auto generate ID

2008-10-21 Thread Sumit Pandit
Try it : Instead String helloPersonId = delegator.getNextSeqId("HelloPerson"); use String helloPersonId = "student01". // or whatever you want as Id -- Thanks and Regards Sumit Pandit. HotWaxMedia, Inc http://www.hotwaxmedia.com On Oct 22, 2008, at 10:50 AM, Vinayak Yadav wrote: Thanks,

Re: Preventing from auto generate ID

2008-10-21 Thread Vinayak Yadav
Thanks, I don't want use the function delegator.getNextSeqId("yourIDname"); to generate ID I want to enter the ID Please Help me >> >> Thanks >> Vinayak >

Re: Preventing from auto generate ID

2008-10-21 Thread BJ Freeman
you would use delegator.getNextSeqId("yourIDname"); to auto create. other wise you need to check the value of the ID field before you store the information. Vinayak Yadav sent the following on 10/21/2008 4:17 AM: > Hi, > i an new in ofbiz > I have created one page for student information >

Re: setup issues without demo data - only seed data

2008-10-21 Thread Ray
As BJ said you will need to approach the opentaps forum for more specific help. In general OFBiz terms seed data is just the basics for types and such, it will not provide a fully functional catalog/ecommerce/facility management system etc. The best approach is to take all the "demo" xml files and

Re: setup issues without demo data - only seed data

2008-10-21 Thread BJ Freeman
where your using opentaps, with ofbiz it is in the hot-deploy. I suggest you ask you question here http://sourceforge.net/forum/?group_id=145855 if you take out opentaps then we can help here. Jeremy Taylor sent the following on 10/21/2008 12:22 PM: > Hi, > > I have been struggling to get a worki

setup issues without demo data - only seed data

2008-10-21 Thread Jeremy Taylor
Hi, I have been struggling to get a working configuration of opentaps/ofbiz using the 1.0.2 download when not loading demo data. If I run the "ant run-install-seed" command to populate the database, features do not work out of the box. The OFBiz Basic Production Setup guide discusses loading only

Re: Preventing from auto generate ID

2008-10-21 Thread Angelo Matarazzo
Hi, why dou you use java? I recommend you to use entity-auto engine and xml-form. Look at example component in framework/example. I hope to have helped you. Vinayak Yadav wrote: > > Hi, > i an new in ofbiz > I have created one page for student information > It has two fields ID and Description >

Re: Complex queries

2008-10-21 Thread David E Jones
This has been supported in OFBiz for quite a while. Check out the EntityConditionSubSelect class in the Entity Engine. -David On Oct 21, 2008, at 1:04 PM, Angelo Matarazzo wrote: Hi, I try writing complex queries and I was wondering if there was a way to send these query to the DBMS:

Complex queries

2008-10-21 Thread Angelo Matarazzo
Hi, I try writing complex queries and I was wondering if there was a way to send these query to the DBMS: "Select...where FIELD <> (select...)" . I think these sub-select are supportated by common DBMS. Or not? I have found a solution but it's external to framework: http://www.opentaps.org/doc

Re: Advice needed: Integrating an External Webapp with OfBiz Order Application service layer via RMI...

2008-10-21 Thread David Legg
Peter Sparkes wrote: I too - have my own preferred web framework (Cocoon) into which I would like to bolt on an estore. Hi Peter, I have a plan... ;-) After all the pleas from the OfBiz community, I have seen the error of my ways and decided to install OfBiz complete with the ecommerce app.

Re: which version of Tomcat 5 ?

2008-10-21 Thread BJ Freeman
mark: look at the logs. once ofbiz is running, it displays the ports it is using and the version of tomcat. Mark Hansen sent the following on 10/21/2008 8:08 AM: > Does anybody know which version of Tomcat 5 comes embedded in OFBiz > Release 4.0? (FYI, I'm working with SVN revision 666113). > >

which version of Tomcat 5 ?

2008-10-21 Thread Mark Hansen
Does anybody know which version of Tomcat 5 comes embedded in OFBiz Release 4.0? (FYI, I'm working with SVN revision 666113).

Re: Preventing from auto generate ID

2008-10-21 Thread awdesh parihar
Hello Vinayak please put error message you are getting. -- -- Awdesh Parihar

Re: Screen format for Order Menu missing or changed..?

2008-10-21 Thread BJ Freeman
Yup Jacques Le Roux sent the following on 10/21/2008 2:20 AM: > Can't see any problem this morning both on my local instance and on HWM > demo server > > Jacques > > From: "BJ Freeman" <[EMAIL PROTECTED]> >> would say the commonscreens.xml did not get transfered. >> the CSS is not in the file. >

Re: Screen format for Order Menu missing or changed..?

2008-10-21 Thread Jacques Le Roux
Can't see any problem this morning both on my local instance and on HWM demo server Jacques From: "BJ Freeman" <[EMAIL PROTECTED]> would say the commonscreens.xml did not get transfered. the CSS is not in the file. I see there are errors in the log. https://demo.hotwaxmedia.com/webtools/contro

Re: Product Stores & Purchase Orders

2008-10-21 Thread BJ Freeman
There has been some work on this lately, that may cause this. suggest you open a Jira, so the parties can check what they did. Nathan Hampton - Circuit Rider Books sent the following on 10/20/2008 10:21 PM: > Now that I've (finally!) managed to track down the problem, I can ask > what to do about