From 5e9c025a531a8b64edc94272f9c2c022b07920ac Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 28 Feb 2007 07:52:03 +0000 Subject: [PATCH] fix error on Compiere integration: java.sql.SQLException: ORA-00904: "ISCENTRALLYMAINTAINED": invalid identifier in AD_InfoColumn --- dbPort/src/org/compiere/model/M_Element.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/dbPort/src/org/compiere/model/M_Element.java b/dbPort/src/org/compiere/model/M_Element.java index c4562cb225..7b3300d256 100644 --- a/dbPort/src/org/compiere/model/M_Element.java +++ b/dbPort/src/org/compiere/model/M_Element.java @@ -281,13 +281,6 @@ public class M_Element extends X_AD_Element no = DB.executeUpdate(sql.toString(), get_TrxName()); log.fine("PrintFormatItem updated #" + no); - // Info Column - sql = new StringBuffer ("UPDATE AD_InfoColumn SET Name=") - .append(DB.TO_STRING(getName())) - .append(", Description=").append(DB.TO_STRING(getDescription())) - .append(", Help=").append(DB.TO_STRING(getHelp())) - .append(" WHERE AD_Element_ID=").append(get_ID()) - .append(" AND IsCentrallyMaintained='Y'"); no = DB.executeUpdate(sql.toString(), get_TrxName()); log.fine("InfoWindow updated #" + no); }