Re: Exception in this method

2007-10-30 Thread BJ Freeman
my guess is that you have not connected to your DB at startup. if (con == null) throw new SQLException(CLOSED) this may be your entityengine.xml setup or the DB, may not be running or the DB is not accessible from this server. please explain you specific setup. relative to the DB and ofbiz. Jose

Re: how to disable an application from ofbiz webtools

2007-10-30 Thread Jacopo Cappellato
Carl, in rev. 590571 I've moved the files to the common component, as you were suggesting. Thanks for your insight. Jacopo Carl Johansson wrote: I looked around the mailing list and found some correspondence regarding this matter. http://www.nabble.com/What%27s-up-with-the-loginservices.*

Re: how to disable an application from ofbiz webtools

2007-10-30 Thread Carl Johansson
I looked around the mailing list and found some correspondence regarding this matter. http://www.nabble.com/What%27s-up-with-the-loginservices.*-labels--tf4263881.html#a12134657 What's up with the loginservices.* labels? -- View this message in context: http://www.nabble.com/how-to-disable-an-

Re: how to disable an application from ofbiz webtools

2007-10-30 Thread Carl Johansson
Matheus, Yes, you are able to use WebTools running only the components in the framework folder. One easy way to solve the issue of the UiLabel dependency from securityext is to simply move the SecurityextUiLabels.properties (right filename is it?) into framework/security. I think that since the f

RE: Exception in this method

2007-10-30 Thread Jose Diaz
OK i solved it problem in it version doing less findByAnd(), findBycondition, etc etc inside for or while sentences. Jose. - Original Message - From: David E Jones <[EMAIL PROTECTED]> Sent: Tue, 10/30/2007 7:51pm To: user@ofbiz.apache.org Subject: Re: Exception in this method I'm not

Backorder Question

2007-10-30 Thread [EMAIL PROTECTED]
Can anyone tell me how to create a backorder? I created an order for 1 GZ-1001 and 1 WG-. Because there are no GZ-1001s, I expected to find a Requirement created but did not in spite of the fact that the Order sez [1 Backordered]. Also, are there other entities involved besides Requirement?

Re: Exception in this method

2007-10-30 Thread Scott Gray
Oh ok i see, we're all good then :-) Scott On 31/10/2007, David E Jones <[EMAIL PROTECTED]> wrote: > > He is actually using "opentaps-0.9.4", I just mentioned 1.0 because I > know it's been a while since that, and I'm guessing 0.9.4 was from a > while before that. > > I don't remember exactly whe

Re: Exception in this method

2007-10-30 Thread David E Jones
He is actually using "opentaps-0.9.4", I just mentioned 1.0 because I know it's been a while since that, and I'm guessing 0.9.4 was from a while before that. I don't remember exactly when this was fixed, but I think it was before the release branch was done. -David On Oct 30, 2007, at

Re: Exception in this method

2007-10-30 Thread Scott Gray
opentaps 1.0 was based on our release branch, so it's possible the problem still exists there. Regards Scott On 31/10/2007, David E Jones <[EMAIL PROTECTED]> wrote: > > I'm not really sure which revision of OFBiz that is, ie which revision > from the OFBiz SVN that Open Source Strategies original

Re: how to disable an application from ofbiz webtools

2007-10-30 Thread Matheus Eduardo Machado Moreira
I'm running into the same problem here (framework not able to find SecurityextUiLabels), so I cannot log in into Webtools application. I'd like to use Webtools to manage my entities while I develop my application. I didn't delete the applications and specialpurpose folders yet but I changed the

Re: Exception in this method

2007-10-30 Thread David E Jones
I'm not really sure which revision of OFBiz that is, ie which revision from the OFBiz SVN that Open Source Strategies originally used for their branch of OFBiz. This is an older version either way, I think it was a while back that OSS did their version 1.0 of opentaps. The reason I aske

RE: Exception in this method

2007-10-30 Thread Jose Diaz
I am using opentaps-0.9.4 Jose. - Original Message - From: David E Jones <[EMAIL PROTECTED]> Sent: Tue, 10/30/2007 7:38pm To: user@ofbiz.apache.org Subject: Re: Exception in this method Which version/revision of OFBiz are you using? -David On Oct 30, 2007, at 6:11 PM, Jose Di

Re: Exception in this method

2007-10-30 Thread David E Jones
Which version/revision of OFBiz are you using? -David On Oct 30, 2007, at 6:11 PM, Jose Diaz wrote: I am executing a service (generating aging report) in the job list. I have big data (2 months of balance) When i execute my service with few data, i don't have error. It is timeout problem?

RE: Exception in this method

2007-10-30 Thread Jose Diaz
I am executing a service (generating aging report) in the job list. I have big data (2 months of balance) When i execute my service with few data, i don't have error. It is timeout problem?? Specifications: MySQL 5.0 mysql-connector-java-3.0.17-ga-bin.jar Log: Exception: org.ofbiz.

Re: Exception in this method

2007-10-30 Thread Adrian Crum
You will need to provide more information. What were you doing when this exception occurred? Also, please include the full stack trace. Jose Diaz wrote: I am getting it error and no idea about the solution. This is the method: public void commit() throws SQLException { if (con == null) throw

Exception in this method

2007-10-30 Thread Jose Diaz
I am getting it error and no idea about the solution. This is the method: public void commit() throws SQLException { if (con == null) throw new SQLException(CLOSED); if (((XAResourceImpl) xaCon.getXAResource()).isTransaction()) throw new SQLException("Cannot commit a transactional connection: See

Offline payment applied to billing account

2007-10-30 Thread Rashko Rejmer
I wanted to ask about the snippet of code in InvoiceServices.createInvoiceForOrder(lines 760-791) method that creates payment applications for payments, received before creation of invoice. Parameter billingAccountId is passed to the service createPaymentApplication. So every payment that was rec

Re: security permissions settings and ofbiz access

2007-10-30 Thread Adrian Crum
For our installation here, I created a small webapp that is nothing more than a Home page that everyone can log into. New users are assigned the Home page permission automatically. That way everyone can use the same OFBiz URL regardless of what applications they have permission to use. -Adrian

RE: security permissions settings and ofbiz access

2007-10-30 Thread Case Torres
Adrian, Thanks, I was able to get in using the order manager url as you specified. Then is it true that there's not one login screen where the system will take care of displaying the appropriate applications/screens per user login? I was thinking(so dangerous) that Webtools was such a screen as

Re: security permissions settings and ofbiz access

2007-10-30 Thread Adrian Crum
Oops, an extra e slipped in there: https://127.0.0.1:8443/ordermgr/control/main Adrian Crum wrote: You'll need to use the URL for the order manager app: https://127.0.0.1:8443/oerdermgr/control/main -Adrian Case Torres wrote: Hello All, I'm having some problems with setting up users to a

Re: security permissions settings and ofbiz access

2007-10-30 Thread Adrian Crum
You'll need to use the URL for the order manager app: https://127.0.0.1:8443/oerdermgr/control/main -Adrian Case Torres wrote: Hello All, I'm having some problems with setting up users to access various ofbiz applications and need some help with the use of the application access security syst

security permissions settings and ofbiz access

2007-10-30 Thread Case Torres
Hello All, I'm having some problems with setting up users to access various ofbiz applications and need some help with the use of the application access security system. I have an employee with user login say, mcerto. In the Security Tab I've added this login, mcerto, to the "ORDERADMIN" and "ORDE

Re: ofbiz handheld

2007-10-30 Thread Adrian Crum
Make sure the user has the OFBTOOLS permission. Also be sure to clear the entity cache whenever you change a user's permissions. 2275429 wrote: Ray Barlow wrote: Look at your security settings for that user in the party manager and make sure they have backend access i.e. they can login to t

Re: ofbiz handheld

2007-10-30 Thread 2275429
Ray Barlow wrote: > > Look at your security settings for that user in the party manager and > make sure they have backend access i.e. they can login to the standard > facility manager! > > Ray > > Thankyou for your quick reply but out of 10 username which i created , i > was able to login th

Re: Matrix kbd and OFBiz Internal POS

2007-10-30 Thread Ray Barlow
Not sure there are any OFBiz docs on this but if you dig around the buttonevents.xml, ButtonEventConfig.java and Keyboard.java in the pos module you'll see reference to an attribute of type "key-code" (for buttonevents.xml) and you'll find it's linked into the jpos results of getPOSKeyData which se

Re: Reading html template files question

2007-10-30 Thread Jacques Le Roux
Hi Skip, Just a pointer : sendOrderNotificationScreen Jacques De : "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > I am writing a service to email billing account statements. I want to read > a template and generate an email from it. This is in the context of a > scheduled service. I have to believ