Return-Path: X-Original-To: apmail-ofbiz-user-archive@www.apache.org Delivered-To: apmail-ofbiz-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6AF75DB61 for ; Thu, 30 May 2013 00:03:02 +0000 (UTC) Received: (qmail 41391 invoked by uid 500); 30 May 2013 00:03:01 -0000 Delivered-To: apmail-ofbiz-user-archive@ofbiz.apache.org Received: (qmail 41315 invoked by uid 500); 30 May 2013 00:03:01 -0000 Mailing-List: contact user-help@ofbiz.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@ofbiz.apache.org Delivered-To: mailing list user@ofbiz.apache.org Received: (qmail 41306 invoked by uid 99); 30 May 2013 00:03:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 May 2013 00:03:00 +0000 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests=RCVD_IN_DNSWL_NONE X-Spam-Check-By: apache.org Received-SPF: error (nike.apache.org: local policy) Received: from [173.201.193.102] (HELO p3plsmtpa08-01.prod.phx3.secureserver.net) (173.201.193.102) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 May 2013 00:02:53 +0000 Received: from skipXP ([67.51.54.90]) by p3plsmtpa08-01.prod.phx3.secureserver.net with id i0291l00J1wmx5701029jx; Wed, 29 May 2013 17:02:10 -0700 From: "Skip" To: "OfbizUser" Subject: But in CategoryTree.groovy Date: Wed, 29 May 2013 16:58:14 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Importance: Normal X-Virus-Checked: Checked by ClamAV on apache.org There is a line at 50 that sez: prodCatalogs = delegator.findByAnd("ProdCatalog"); This causes a groovy ambiguious error when you go to the catalog screen in 12.04. Changing this to: prodCatalogs = delegator.findAll("ProdCatalog"); Fixes the problem. I expect you guys already did this, there here it is for any others like me that just download the zip file. Skip